{
  "openapi": "3.0.0",
  "info": {
    "title": "Mosaic CP API Guide",
    "description": "## Introduction\n\nThis guide describes the process of Operations Support System (OSS) provisioning of the ADTRAN® Mosaic Cloud Platform (Mosaic CP). An OSS consists of application(s) software that operates within a carrier’s management network and allows their systems to perform network management functions for a variety of operational support systems. This guide provides a dictionary of supported Application Programming Interface (API) commands used to complete Mosaic CP provisioning.\n\nThe Mosaic CP RESTCONF Northbound Interface (NBI) provides a programmable interface between the OSS and the associated network elements. Integration with the Mosaic CP API provides operators with a consistent and repeatable command structure across a multitude of deployment architectures.\n\nThe figure below illustrates the interactions between the OSS and Mosaic CP. The network elements will vary according to the deployment.\n\n![](https://i.ibb.co/VC9F1tD/Screen-Shot-2020-12-17-at-5-47-55-PM.png)\n\nThe main sections that make up this guide are as follows:\n\n*   **Administration**: covers tasks expected to be performed by an administrator, such as how to get an API token, add/remove users, reset passwords, add device credentials, setup policies and more.\n*   **Events**: covers APIs to retrieve events from the system and forward events to external systems such as a Kafka listener.\n*   **Jobs**: using Mosaic CP to create, run, and check the status of jobs.\n*   **Platform Details**: get the status of Mosaic CP as well as information about software versions and enabled features.\n*   **Orchestration Objects**: this section covers using Mosaic CP as an SDN orchestrator.\n*   **Search and Filter**: how to search for objects on the system and filter those searches based on various attributes of those objects.\n    \n\n## Updates\n\n### 22.2\n\n*   Added \"Job Run - Reboot Device\"\n*   Deleted \"Query Interface Inspect Inventory-status\" and \"Query Device Insepct Inventory-status\" in favor of modeled inspect\n*   Updated the response body for \"Run Job - Reflow Interface\"\n*   Added an example request \"Run Job with Parameters - Backup Device Configuration\"\n*   Added an example request \"Job Run with Parameters - Restore Device Configuration\"\n*   Added an example request \"Job Run - Resynchronize NETCONF Alarms Job\"\n*   Added an example request \"Run Job - Ethernet Loopback\"\n    \n\n### 21.1\n\n*   Added Orchestration API support for the Content Provider and Bundle Objects. This allows for these objects to be activated in a single API call without having to perform configure, deploy, activate actions.\n    \n\n### 21.2\n\n*   Added secure credential flag (set to false by default). To enable it, create/edit user.conf and set com.adtran.firefly.firefly-aaa.secure-credentials=true. This flag will be enabled by default in 21.3.\n*   Added an additional permission called read-hidden-adtn-cld-pfrm-crdls (given to admins by default). When the secure credential flag is enabled and the user has this permission the user is able to see the password/key of an existing credential in plain text from the API. If the user does not have this permission a fixed number of asterisks will be returned for the password/key of the credential.\n    \n\n### 21.4\n\n*   Added support to Configure Device with IPv6 or IPv4\n*   Added Modeled-Inspect support for Provisioning and Deleting Objects, and Inspecting an Interface or Device\n*   Added support to Get all Compatible Model Names based on a requested model name\n    \n\n### 21.5\n\n*   Updated Get Users and Get All Users with user-type\n*   Added Modeled-Inspect Query Depth support for Interfaces and Devices",
    "contact": {},
    "version": "1.0"
  },
  "servers": [
    {
      "url": "http://example.com/api/restconf",
      "variables": {}
    }
  ],
  "paths": {
    "/operations/adtran-auth-token:request-token": {
      "post": {
        "tags": [
          "Token Management"
        ],
        "summary": "Request a Session Token",
        "description": "For accessing APIs in the system, there are these methods:\n\n1. Using Basic Authentication\n2. Using a Session Token\n\nThe following API command creates a session token. Subsequent requests to the system can use the obtained session token for authentication. A new token is necessary if the token expires (see below).\n\n<br>\nRequest Payload Details\n</br>\n\n| Attribute | Description |\n| --- | --- |\n| username | **Required:** The unique username of the user. |\n| password | **Required:** The password of the user account for which the token is to be created. |\n\n<br>\nResponse Data Details\n</br>\n\n| Attribute | Description |\n| --- | --- |\n| token | Obtained API token. |\n\n\n### Notes\n* Tokens are subject to an inactivity timeout which is, by default, 30 minutes. If the token is not used within the inactivity timeout period, a new token must be obtained from Mosaic CP.\n* If you do not opt for basic authentication, you will need a session token for API authentication.\n* API response times will be faster when using a session token vs basic authentication.",
        "operationId": "RequestaSessionToken",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/RequestaSessionTokenRequest"
              },
              "example": {
                "username": "{{basic-auth-username}}",
                "password": "{{basic-auth-password}}"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "access-control-allow-origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "content-length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "76"
                    },
                    "example": "76"
                  }
                }
              },
              "content-type": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "application/json; charset=UTF-8"
                    },
                    "example": "application/json; charset=UTF-8"
                  }
                }
              },
              "date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 May 2020 09:17:31 GMT"
                    },
                    "example": "Tue, 05 May 2020 09:17:31 GMT"
                  }
                }
              },
              "x-frame-options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RequestaSessionToken-Success"
                },
                "example": {
                  "token": "832e64d6097515d558464ec0f776149645812ac8ffeaf63a04d130fadb117f91"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 May 2020 10:52:44 GMT"
                    },
                    "example": "Tue, 05 May 2020 10:52:44 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "159"
                    },
                    "example": "159"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/RequestaSessionToken-InvalidPassword1"
                },
                "example": {
                  "message": "Supplied username or password is incorrect. Please try again. Multiple failed login attempts may result in your account being temporarily locked."
                }
              }
            }
          }
        },
        "deprecated": false,
        "security": []
      }
    },
    "/operations/adtran-auth-token:release-token": {
      "post": {
        "tags": [
          "Token Management"
        ],
        "summary": "Release a Session Token",
        "description": "Release a token so that it may no longer be used to authenticate requests.\n\n| Attribute | Description |\n| --- | --- |\n| token | **Required:** The API token to be released. |",
        "operationId": "ReleaseaSessionToken",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ReleaseaSessionTokenRequest"
              },
              "example": {
                "token": "f3302885cff780987cebfaa6be0ad283619b7a3be42df4f4546fbd47b9ae2a6b"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "access-control-allow-origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "content-length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "2"
                    },
                    "example": "2"
                  }
                }
              },
              "content-type": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "application/json; charset=UTF-8"
                    },
                    "example": "application/json; charset=UTF-8"
                  }
                }
              },
              "date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 May 2020 10:05:24 GMT"
                    },
                    "example": "Tue, 05 May 2020 10:05:24 GMT"
                  }
                }
              },
              "x-frame-options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "example": {}
                },
                "example": {}
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-auth-config:aaa-config": {
      "patch": {
        "tags": [
          "AAA Config"
        ],
        "summary": "Modifying Password Security Setting",
        "description": "Password Security Setting API is used by administators to modify password attributes like format, validity, etc. This function is performed by the ADMIN user.\n\n| Attribute | Description |\n| --- | --- |\n| expiration-mode | Describes how to handle the expiration date on the newly created account. <br/> <b> Possible values </b>:<br><b>expire-now:</b> <i> Create the account as already expired</i><br><b>expire-policy:</b> <i>Set the expiration date according to configured system policy</i> <br><b>expire-never:</b> <i>Create an account which will never expire</i> <br/> <b> Default value : </b><i>expire-now</i>|\n| password-expiry-days | Number of days after which user's password will expire. <br/> <b> Possible values: </b> <br/>  <b>-1</b> <i>Indicates that password never expires</i> <br/> <b>1..180</b> <i>Indicate the number of days for which the password would be valid</i> <br/> <b> Default value : </b><i>90 days </i> |\n| password-min-len | Minimum length of password. <br/> <b> Possible values:</b><i> 6..128</i> <br/> <b> Default value: </b><i> 8 </i> |\n| password-max-len | Maximum length of password. <br/> <b> Possible values: </b><i>  6..128</i> <br/> <b> Default value:</b> <i> 128 </i> |\n| password-uppercase-min-len | Minimum number of upper case characters required in password.  <br/> <b> Possible values </b> : <i> 0..128</i> <br/> <b> Default value </b> : <i> 1 </i> |\n| password-min-digits | Minimum number of digits required in password. <br/> <b> Possible values: </b><i>  0..128</i>  <br/> <b> Default value :</b><i> 1 </i> |\n| password-min-special-char | Minimum number of special characters required in password. <br/> <b> Possible values : </b> <i>  0..128</i> <br/> <b> Default value: </b> <i> 1 </i> |\n| password-valid-char-set | Valid character set in password.   <br/> <b> Possible values : </b><i>  Regular expression character set, see default as example </i>  <br/> <b> Default value : </b><i>[0-9a-zA-Z!@#$%^&*] </i>|\n| password-history-length | \"Number of previous passwords which can not be used as a new password (0-10) .<br/> <b> Possible values : </b><i> 0..10</i> <br> <b>0</b> <i> means there are no restrictions on password reuse </i> <br/> <b>1</b> <i> means the current password may not be reused </i> <br/> <b>2</b> <i> means the current password and the previous password may not be reused, and so on </i> <br/> <b> Default value : </b><i> 5 </i> |\n| password-history-days | Number of days a previous password can not be used as a new password. <br/> <b> Possible values : </b> <i> -1 , 1…365</i> <br/> <b>-1 </b> <i> indicates that there is no expiry for previous passwords </i>  <br/> <b>1 </b> <i> indicates that previous passwords are considered for only one day</i>  <br/> <b>2 </b> <i> indicates that previous passwords are considered for only two day and so on</i> <br/> <b> Default value: </b> <i> 180 days </i> |\n| password-notice-days | Number of days prior to password expiration when user will be notified that his password is going to expire. <br/> <b> Possible values : </b><i> 1..30 </i> </br> <b> Default value : </b><i> 5 days</i> |\n| max-failed-logins | Maximum number of consecutive times an incorrect password is allowed to be entered before the user's account will be locked. A value of 0 means that an unlimited number of failed attempts are allowed. <br/> <b> Possible values :</b>  <i> 1...255 attempts</i><br/> <b> Default value : </b><i> 5 attempts</i> |\n| account-lock-period | Amount of time (in minutes) for which user's account gets locked. <br/> <b> Possible values :</b> <i> 1...65535 minutes</i><br/> <b> Default value: </b> <i> 5 minutes</i> |\n| authentication-mode | The mode for user authentication in priority order.  <br/> <b> Possible values :</b> <i> internal, radius, tacacsplus</i> <br/> <b> Default value: </b> <i>internal</i>|\n| authorization-mode | The mode for user authorization in priority order.  <br/> <b> Possible values :</b> <i> internal, radius, tacacsplus</i> <br/> <b> Default value: </b> <i>internal</i>|\n| accounting-mode | The mode for user accounting in priority order.  <br/> <b> Possible values :</b> <i> internal, radius, tacacsplus</i> <br/> <b> Default value: </b> <i>internal</i>|",
        "operationId": "ModifyingPasswordSecuritySetting",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ModifyingPasswordSecuritySettingRequest"
              },
              "example": {
                "password-expiry-days": 90,
                "expiration-mode": "expire-now"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "access-control-allow-origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "content-length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "0"
                    },
                    "example": "0"
                  }
                }
              },
              "date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 May 2020 09:52:34 GMT"
                    },
                    "example": "Tue, 05 May 2020 09:52:34 GMT"
                  }
                }
              },
              "x-frame-options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 Jan 2021 15:13:50 GMT"
                    },
                    "example": "Tue, 05 Jan 2021 15:13:50 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {}
          },
          "401": {
            "description": "Unauthorized",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 08 May 2020 10:34:49 GMT"
                    },
                    "example": "Fri, 08 May 2020 10:34:49 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "45"
                    },
                    "example": "45"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/ModifyingPasswordSecuritySetting-UnauthorisedUser1"
                },
                "example": {
                  "message": "Anonymous access not authorized"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 08 May 2020 10:36:24 GMT"
                    },
                    "example": "Fri, 08 May 2020 10:36:24 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "47"
                    },
                    "example": "47"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "type": "string",
                  "example": "password-expiry-days must be between 1 and 180."
                },
                "example": "password-expiry-days must be between 1 and 180."
              }
            }
          }
        },
        "deprecated": false
      },
      "get": {
        "tags": [
          "AAA Config"
        ],
        "summary": "Retrieve Password Security Setting",
        "description": "This API is used to retrieve password security settings. This function is performed by ADMIN user.\n\nFollowing table describes the attributes returned in the response.\n\n| Attribute | Description |\n| --- | --- |\n| expiration-mode | Describes how to handle the expiration date on the newly created account. <br/> <b> Possible values </b>:<br><b>expire-now:</b> <i> Create the account as already expired</i><br><b>expire-policy:</b> <i>Set the expiration date according to configured system policy</i> <br><b>expire-never:</b> <i>Create an account which will never expire</i> <br/> <b> Default value : </b><i>expire-now</i>|\n| password-uppercase-min-len | Minimum number of upper case characters in password.<br/> <b> Default value: </b> <i> 1</i><br/> <b> Possible values: </b> <i> 0..128</i> |\n| password-history-days | Number of days a previous password can not be used as a new password. Here, -1 indicates that there is no expiry for previous passwords. 1 indicates that previous passwords are considered for only one day. 2 indicates that previous passwords are considered for only two day and so on.  <br/> <b> Default value: </b> <i> 180</i><br/> <b> Possible values: </b> <i> -1,  1..365</i> |\n| password-min-len | Minimum length of password. <br/> <b> Default value: </b> <i> 8</i><br/> <b> Possible values:</b> <i>6..128</i> |\n| password-expiry-days | Number of days after which user's password will expire. <br/> <b> Possible values </b> <br/>  <b>-1</b> <i>Indicates that password never expires</i> <br/> <b>1..180</b> <i>Indicate the number of days for which the password would be valid.</i> <br/> <b> Default value </b>:<i> 90 days </i> |\n| password-max-len | Maximum length of password. <br/> <b> Default value: </b> <i> 128</i><br/> <b> Possible values: </b> <i> 6..128</i> |\n| max-failed-logins | Maximum number of consecutive times an incorrect password is allowed to be entered before the user's account will be locked. A value of 0 means that an unlimited number of failed attempts are allowed. <br/> <b> Default value: </b> <i> 5</i><br/> <b> Possible values: </b> <i>0..128</i> |\n| password-min-digits | Minimum number of digits in password. <br/> <b> Default value: </b> <i> 1</i><br/> <b> Possible values: </b> <i> 0..128</i> |\n| password-history-length | Number of previous passwords which can not be used as a new password (0-10). Here, 0 means there are no restrictions on password reuse. 1 means the current password may not be reused. 2 means the current password and the previous password may not be reused, and so on.<br/> <b> Default value: </b> <i> 5</i><br/> <b> Possible values: </b> <i> 0..10</i> |\n| password-notice-days | Number of days prior to password expiration when user will be notified that his password is going to expire. <br/> <b> Default value: </b> <i> 5</i><br/> <b> Possible values: </b> <i> 1..30 </i> |\n| account-lock-period | Amount of time (in minutes) for which user's account gets locked.   <br/> <b> Default value: </b> <i> 5</i><br/> <b> Possible values: </b> <i>uint16 </i> |\n| password-min-special-char | Minimum number of special characters in password. <br/> <b> Default value: </b> <i> 1</i><br/> <b> Possible values: </b> <i>0..128 </i> |\n| password-valid-char-set | Valid character set in password. <br/> <b> Possible values : </b><i>  Regular expression character set, see default as example </i>  <br/> <b> Default value : </b><i>[0-9a-zA-Z!@#$%^&*] </i> |\n| authentication-mode | The mode for user authentication in priority order.  <br/> <b> Possible values :</b> <i> internal, radius, tacacsplus</i> <br/> <b> Default value: </b> <i>internal</i>|\n| authorization-mode | The mode for user authorization in priority order.  <br/> <b> Possible values :</b> <i> internal, radius, tacacsplus</i> <br/> <b> Default value: </b> <i>internal</i>|\n| accounting-mode | The mode for user accounting in priority order.  <br/> <b> Possible values :</b> <i> internal, radius, tacacsplus</i> <br/> <b> Default value: </b> <i>internal</i>|",
        "operationId": "RetrievePasswordSecuritySetting",
        "parameters": [
          {
            "name": "Content-Type",
            "in": "header",
            "description": "",
            "required": true,
            "style": "simple",
            "schema": {
              "enum": [
                "application/json"
              ],
              "type": "string",
              "example": "application/json"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "access-control-allow-origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "content-length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "465"
                    },
                    "example": "465"
                  }
                }
              },
              "content-type": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "application/json; charset=UTF-8"
                    },
                    "example": "application/json; charset=UTF-8"
                  }
                }
              },
              "date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 May 2020 09:51:59 GMT"
                    },
                    "example": "Tue, 05 May 2020 09:51:59 GMT"
                  }
                }
              },
              "x-frame-options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RetrievePasswordSecuritySetting-Success"
                },
                "example": {
                  "expiration-mode": "expire-now",
                  "password-uppercase-min-len": 1,
                  "password-history-days": 180,
                  "password-min-len": 8,
                  "password-expiry-days": 90,
                  "password-max-len": 128,
                  "max-failed-logins": 5,
                  "password-min-digits": 1,
                  "password-notice-days": 5,
                  "password-history-length": 5,
                  "account-lock-period": 5,
                  "authorization-mode": [
                    "internal"
                  ],
                  "password-username-allowed": false,
                  "password-min-special-char": 1,
                  "password-valid-char-set": "[0-9a-zA-Z!@#$%^&*]",
                  "authentication-mode": [
                    "internal"
                  ]
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-auth-group:groups/group=read-only": {
      "post": {
        "tags": [
          "AAA Permission Groups"
        ],
        "summary": "Create Group",
        "description": "Create a new group by providing a unique group name and selecting permissions for the users. The name of the group is passed in via the URL and the body.\n\n| Attribute | Description |\n| --- | --- |\n| name | **Required:** A unique name of this group. |\n| permissions | A list of APIs which are permissible to this group. To see a complete list of API permissions, use the `Get Group` API call below to get the permissions for the `super-user` group. |\n| domains | A list of domains this group may access. **Deprecated**, set to empty list. |",
        "operationId": "CreateGroup",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateGroupRequest"
              },
              "example": {
                "name": "read-only",
                "permissions": [
                  "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions"
                ],
                "domains": []
              }
            }
          },
          "required": true
        },
        "responses": {
          "409": {
            "description": "Conflict",
            "headers": {
              "access-control-allow-origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "content-length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "0"
                    },
                    "example": "0"
                  }
                }
              },
              "date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 May 2020 09:42:10 GMT"
                    },
                    "example": "Tue, 05 May 2020 09:42:10 GMT"
                  }
                }
              },
              "x-frame-options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {}
          },
          "201": {
            "description": "Created",
            "headers": {
              "access-control-allow-origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "content-length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "0"
                    },
                    "example": "0"
                  }
                }
              },
              "date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 May 2020 09:42:59 GMT"
                    },
                    "example": "Tue, 05 May 2020 09:42:59 GMT"
                  }
                }
              },
              "x-frame-options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {}
          }
        },
        "deprecated": false
      },
      "delete": {
        "tags": [
          "AAA Permission Groups"
        ],
        "summary": "Delete Group",
        "description": "Delete an existing group by providing the group name by providing the group name in the URL parameter.",
        "operationId": "DeleteGroup",
        "parameters": [],
        "responses": {
          "404": {
            "description": "Not Found",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Mon, 11 May 2020 11:36:52 GMT"
                    },
                    "example": "Mon, 11 May 2020 11:36:52 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "0"
                    },
                    "example": "0"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {}
          },
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Mon, 11 May 2020 10:01:10 GMT"
                    },
                    "example": "Mon, 11 May 2020 10:01:10 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "0"
                    },
                    "example": "0"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {}
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-auth-group:groups/group=none": {
      "get": {
        "tags": [
          "AAA Permission Groups"
        ],
        "summary": "Get Group",
        "description": "This API is used to retrieve a given user group and their associated permissions.\n\n| Attribute | Description |\n| --- | --- |\n| domains | A list of domains this group may access. |\n| name | The unique name of this group. |\n| permissions | A list of APIs which are permissible to this group. |",
        "operationId": "GetGroup",
        "parameters": [
          {
            "name": "Content-Type",
            "in": "header",
            "description": "",
            "required": true,
            "style": "simple",
            "schema": {
              "enum": [
                "application/json"
              ],
              "type": "string",
              "example": "application/json"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "access-control-allow-origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "content-length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "117"
                    },
                    "example": "117"
                  }
                }
              },
              "content-type": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "application/json; charset=UTF-8"
                    },
                    "example": "application/json; charset=UTF-8"
                  }
                }
              },
              "date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 May 2020 10:08:38 GMT"
                    },
                    "example": "Tue, 05 May 2020 10:08:38 GMT"
                  }
                }
              },
              "x-frame-options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetGroup-Success"
                },
                "example": {
                  "domains": [],
                  "name": "read-only-user",
                  "permissions": [
                    "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions"
                  ]
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 Jan 2021 16:26:20 GMT"
                    },
                    "example": "Tue, 05 Jan 2021 16:26:20 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {}
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-auth-group:groups": {
      "get": {
        "tags": [
          "AAA Permission Groups"
        ],
        "summary": "Get All Groups",
        "description": "This API is used to retrieve a list of user groups and their associated permissions.\n\n| Attribute | Description |\n| --- | --- |\n| domains | A list of domains this group may access. |\n| name | The unique name of this group. |\n| permissions | A list of APIs which are permissible to this group. |",
        "operationId": "GetAllGroups",
        "parameters": [
          {
            "name": "Content-Type",
            "in": "header",
            "description": "",
            "required": true,
            "style": "simple",
            "schema": {
              "enum": [
                "application/json"
              ],
              "type": "string",
              "example": "application/json"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 Jan 2021 16:28:21 GMT"
                    },
                    "example": "Tue, 05 Jan 2021 16:28:21 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/GetAllGroups-Success"
                  },
                  "description": "",
                  "example": [
                    {
                      "domains": [],
                      "name": "activate-device-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                        "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                        "adtran-cloud-platform-labels:read-labels",
                        "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                        "adtran-auth-permission:all",
                        "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                        "adtran-cloud-platform-management-domains:read-adtn-cld-pfrm-md",
                        "adtran-cloud-platform-profiles:read-profile",
                        "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interfaces",
                        "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domain-types",
                        "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domains",
                        "adtran-cloud-platform-uiworkflow-part-numbers:read-uiworkflow-part-number",
                        "adtran-cloud-platform-uiworkflow-profiles:read-profile"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "activate-interface-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interfaces",
                        "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                        "adtran-auth-permission:all",
                        "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                        "adtran-cloud-platform-labels:read-labels",
                        "adtran-cloud-platform-profiles:read-profile",
                        "adtran-cloud-platform-uiworkflow-bundles:read-uiworkflow-bundles",
                        "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                        "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                        "adtran-cloud-platform-uiworkflow-interfaces:filter-uiworkflow-interface-resources",
                        "adtran-cloud-platform-uiworkflow-interfaces:filter-uiworkflow-physical-resources",
                        "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interface-type",
                        "adtran-cloud-platform-uiworkflow-profiles:read-profile"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "activate-job-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-uiworkflow-jobs:read-job",
                        "adtran-cloud-platform-jobs:read-adtn-cld-pfrm-job",
                        "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                        "adtran-cloud-platform-profiles:read-profile",
                        "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                        "adtran-cloud-platform-uiworkflow-jobs:get-job-context",
                        "adtran-cloud-platform-uiworkflow-jobs:read-action",
                        "adtran-cloud-platform-uiworkflow-jobs:read-trigger",
                        "adtran-cloud-platform-uiworkflow-profiles:read-profile"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "activate-management-domain-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domains",
                        "adtran-cloud-platform-management-domains:read-adtn-cld-pfrm-md",
                        "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                        "adtran-auth-permission:all",
                        "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                        "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domain-types"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "activate-profile-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-labels:read-labels",
                        "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                        "adtran-auth-permission:all",
                        "adtran-cloud-platform-profiles:config-profile",
                        "adtran-cloud-platform-hardware:read-profile",
                        "adtran-yang-datastore:read-yang-model",
                        "adtran-yang-datastore:write-yang-model"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "activate-profile-vector-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow-profiles:read-profile",
                        "adtran-cloud-platform-profiles:read-profile",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-labels:read-labels",
                        "adtran-yang-datastore:read-yang-model",
                        "adtran-yang-datastore:write-yang-model",
                        "adtran-cloud-platform-profiles:config-profile",
                        "adtran-auth-permission:all",
                        "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                        "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                        "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                        "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-content-providers",
                        "adtran-cloud-platform-uiworkflow-bundles:read-uiworkflow-bundles",
                        "adtran-cloud-platform-servers:read-adtn-cld-pfrm-srvr",
                        "adtran-cloud-platform-profiles:config-profile"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "activate-provider-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-content-providers",
                        "adtran-captive-portal-content-providers:read-content-provider",
                        "adtran-auth-permission:all"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "activate-server-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-uiworkflow-servers:read-uiworkflow-servers",
                        "adtran-cloud-platform-servers:read-adtn-cld-pfrm-srvr",
                        "adtran-cloud-platform-labels:read-labels",
                        "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                        "adtran-auth-permission:all"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "activate-service-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-captive-portal-services:activate-service",
                        "adtran-captive-portal-services:deactivate-service",
                        "adtran-captive-portal-service-transition:read-service-transitions",
                        "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-services",
                        "adtran-cloud-platform-services:read-service",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-catalog",
                        "adtran-auth-permission:all",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-yang-datastore:read-yang-model",
                        "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-content-providers",
                        "adtran-cloud-platform-labels:read-labels"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "activate-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                        "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                        "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interfaces",
                        "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                        "adtran-cloud-platform-uiworkflow-jobs:read-job",
                        "adtran-cloud-platform-jobs:read-adtn-cld-pfrm-job",
                        "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domains",
                        "adtran-cloud-platform-management-domains:read-adtn-cld-pfrm-md",
                        "adtran-cloud-platform-uiworkflow-servers:read-uiworkflow-servers",
                        "adtran-cloud-platform-servers:read-adtn-cld-pfrm-srvr",
                        "adtran-captive-portal-services:activate-service",
                        "adtran-captive-portal-services:deactivate-service",
                        "adtran-captive-portal-service-transition:read-service-transitions",
                        "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-services",
                        "adtran-cloud-platform-services:read-service",
                        "adtran-cloud-platform-uiworkflow-profiles:read-profile",
                        "adtran-cloud-platform-profiles:read-profile",
                        "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-content-providers",
                        "adtran-captive-portal-content-providers:read-content-provider",
                        "adtran-cloud-platform-labels:read-labels"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "audit-log-admin",
                      "permissions": [
                        "adtran-auth-accounting:read-accounting-logs"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "configure-device-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                        "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                        "adtran-cloud-platform-uiworkflow-part-numbers:read-uiworkflow-part-number",
                        "adtran-cloud-platform-uiworkflow-profiles:read-profile",
                        "adtran-cloud-platform-profiles:read-profile",
                        "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domain-types",
                        "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domains",
                        "adtran-cloud-platform-management-domains:read-adtn-cld-pfrm-md",
                        "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                        "adtran-auth-permission:all",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                        "adtran-cloud-platform-labels:read-labels",
                        "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interfaces",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "configure-interface-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interface-type",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                        "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interfaces",
                        "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                        "adtran-cloud-platform-uiworkflow-profiles:read-profile",
                        "adtran-cloud-platform-profiles:read-profile",
                        "adtran-auth-permission:all",
                        "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                        "adtran-cloud-platform-labels:read-labels",
                        "adtran-cloud-platform-uiworkflow-bundles:read-uiworkflow-bundles",
                        "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                        "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                        "adtran-cloud-platform-uiworkflow-interfaces:filter-uiworkflow-interface-resources",
                        "adtran-cloud-platform-uiworkflow-interfaces:filter-uiworkflow-physical-resources",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "configure-job-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                        "adtran-cloud-platform-uiworkflow-jobs:read-job",
                        "adtran-cloud-platform-jobs:read-adtn-cld-pfrm-job",
                        "adtran-cloud-platform-uiworkflow-jobs:read-action",
                        "adtran-cloud-platform-uiworkflow-jobs:read-trigger",
                        "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                        "adtran-cloud-platform-profiles:read-profile",
                        "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                        "adtran-cloud-platform-uiworkflow-jobs:get-job-context",
                        "adtran-cloud-platform-uiworkflow-profiles:read-profile",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "configure-management-domain-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                        "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domain-types",
                        "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domains",
                        "adtran-cloud-platform-management-domains:read-adtn-cld-pfrm-md",
                        "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                        "adtran-auth-permission:all",
                        "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "configure-profile-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-labels:read-labels",
                        "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                        "adtran-auth-permission:all",
                        "adtran-cloud-platform-profiles:config-profile",
                        "adtran-cloud-platform-hardware:read-profile",
                        "adtran-yang-datastore:read-yang-model",
                        "adtran-yang-datastore:write-yang-model"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "configure-profile-vector-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-content-providers",
                        "adtran-captive-portal-content-providers:read-content-provider",
                        "adtran-cloud-platform-labels:read-labels",
                        "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                        "adtran-auth-permission:all",
                        "adtran-cloud-platform-profiles:config-profile",
                        "adtran-cloud-platform-hardware:read-profile",
                        "adtran-yang-datastore:read-yang-model",
                        "adtran-yang-datastore:write-yang-model"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "configure-provider-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                        "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-content-providers",
                        "adtran-captive-portal-content-providers:read-content-provider",
                        "adtran-auth-permission:all",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "configure-server-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                        "adtran-cloud-platform-uiworkflow-servers:read-uiworkflow-servers",
                        "adtran-cloud-platform-servers:read-adtn-cld-pfrm-srvr",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-labels:read-labels",
                        "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                        "adtran-auth-permission:all"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "configure-service-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-service-profiles",
                        "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-services",
                        "adtran-cloud-platform-services:modify-service",
                        "adtran-cloud-platform-services:read-service",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-catalog",
                        "adtran-auth-permission:all",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-yang-datastore:read-yang-model",
                        "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-content-providers",
                        "adtran-cloud-platform-labels:read-labels"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "deploy-device-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                        "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                        "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interfaces",
                        "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                        "adtran-auth-permission:all",
                        "adtran-cloud-platform-profiles:read-profile",
                        "adtran-cloud-platform-labels:read-labels",
                        "adtran-cloud-platform-management-domains:read-adtn-cld-pfrm-md",
                        "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domain-types",
                        "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domains",
                        "adtran-cloud-platform-uiworkflow-part-numbers:read-uiworkflow-part-number",
                        "adtran-cloud-platform-uiworkflow-profiles:read-profile"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "deploy-interface-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interfaces",
                        "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                        "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                        "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                        "adtran-cloud-platform-uiworkflow-interfaces:filter-uiworkflow-interface-resources",
                        "adtran-cloud-platform-uiworkflow-interfaces:filter-uiworkflow-physical-resources",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-uiworkflow-bundles:read-uiworkflow-bundles",
                        "adtran-auth-permission:all",
                        "adtran-cloud-platform-labels:read-labels",
                        "adtran-cloud-platform-profiles:read-profile",
                        "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                        "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interface-type",
                        "adtran-cloud-platform-uiworkflow-profiles:read-profile"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "deploy-job-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow-jobs:read-job",
                        "adtran-cloud-platform-jobs:read-adtn-cld-pfrm-job",
                        "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                        "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                        "adtran-cloud-platform-uiworkflow-profiles:read-profile",
                        "adtran-cloud-platform-profiles:read-profile",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-uiworkflow-jobs:get-job-context",
                        "adtran-cloud-platform-uiworkflow-jobs:read-action",
                        "adtran-cloud-platform-uiworkflow-jobs:read-trigger"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "deploy-management-domain-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domains",
                        "adtran-cloud-platform-management-domains:read-adtn-cld-pfrm-md",
                        "adtran-cloud-platform-uiworkflow-servers:read-uiworkflow-servers",
                        "adtran-cloud-platform-servers:read-adtn-cld-pfrm-srvr",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                        "adtran-auth-permission:all",
                        "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                        "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domain-types"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "deploy-profile-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-labels:read-labels",
                        "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                        "adtran-auth-permission:all",
                        "adtran-cloud-platform-profiles:config-profile",
                        "adtran-cloud-platform-hardware:read-profile",
                        "adtran-yang-datastore:read-yang-model",
                        "adtran-yang-datastore:write-yang-model"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "deploy-profile-vector-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow-profiles:read-profile",
                        "adtran-cloud-platform-profiles:read-profile",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-labels:read-labels",
                        "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                        "adtran-auth-permission:all",
                        "adtran-yang-datastore:read-yang-model",
                        "adtran-yang-datastore:write-yang-model"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "deploy-provider-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-content-providers",
                        "adtran-captive-portal-content-providers:read-content-provider",
                        "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                        "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                        "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-auth-permission:all"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "deploy-server-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow-servers:read-uiworkflow-servers",
                        "adtran-cloud-platform-servers:read-adtn-cld-pfrm-srvr",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-labels:read-labels",
                        "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                        "adtran-auth-permission:all"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "deploy-service-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-services",
                        "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interfaces",
                        "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-content-providers",
                        "adtran-captive-portal-content-providers:read-content-provider",
                        "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-services:read-service",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-catalog",
                        "adtran-auth-permission:all",
                        "adtran-yang-datastore:read-yang-model",
                        "adtran-cloud-platform-labels:read-labels"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "edit-device-user",
                      "permissions": [
                        "adtran-auth-permission:all",
                        "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                        "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                        "adtran-cloud-platform-labels:read-labels",
                        "adtran-cloud-platform-management-domains:read-adtn-cld-pfrm-md",
                        "adtran-cloud-platform-profiles:read-profile",
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                        "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                        "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interfaces",
                        "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domain-types",
                        "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domains",
                        "adtran-cloud-platform-uiworkflow-part-numbers:read-uiworkflow-part-number",
                        "adtran-cloud-platform-uiworkflow-profiles:read-profile",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "edit-interface-user",
                      "permissions": [
                        "adtran-auth-permission:all",
                        "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                        "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                        "adtran-cloud-platform-labels:read-labels",
                        "adtran-cloud-platform-profiles:read-profile",
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow-bundles:read-uiworkflow-bundles",
                        "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                        "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                        "adtran-cloud-platform-uiworkflow-interfaces:filter-uiworkflow-interface-resources",
                        "adtran-cloud-platform-uiworkflow-interfaces:filter-uiworkflow-physical-resources",
                        "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interface-type",
                        "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interfaces",
                        "adtran-cloud-platform-uiworkflow-profiles:read-profile",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "edit-job-user",
                      "permissions": [
                        "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                        "adtran-cloud-platform-jobs:read-adtn-cld-pfrm-job",
                        "adtran-cloud-platform-jobs:modify-adtn-cld-pfrm-job",
                        "adtran-cloud-platform-profiles:read-profile",
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                        "adtran-cloud-platform-uiworkflow-jobs:get-job-context",
                        "adtran-cloud-platform-uiworkflow-jobs:read-action",
                        "adtran-cloud-platform-uiworkflow-jobs:read-job",
                        "adtran-cloud-platform-uiworkflow-jobs:read-trigger",
                        "adtran-cloud-platform-uiworkflow-profiles:read-profile",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "edit-management-domain-user",
                      "permissions": [
                        "adtran-auth-permission:all",
                        "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                        "adtran-cloud-platform-management-domains:read-adtn-cld-pfrm-md",
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-servers:read-adtn-cld-pfrm-srvr",
                        "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                        "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domain-types",
                        "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domains",
                        "adtran-cloud-platform-uiworkflow-servers:read-uiworkflow-servers",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "edit-profile-user",
                      "permissions": [
                        "adtran-auth-permission:all",
                        "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                        "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                        "adtran-cloud-platform-labels:read-labels",
                        "adtran-cloud-platform-management-domains:read-adtn-cld-pfrm-md",
                        "adtran-cloud-platform-profiles:read-profile",
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                        "adtran-cloud-platform-uiworkflow-profiles:read-profile",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy",
                        "adtran-cloud-platform-profiles:config-profile",
                        "adtran-yang-datastore:read-yang-model",
                        "adtran-yang-datastore:write-yang-model"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "edit-profile-vector-user",
                      "permissions": [
                        "adtran-auth-permission:all",
                        "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                        "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                        "adtran-cloud-platform-labels:read-labels",
                        "adtran-cloud-platform-management-domains:read-adtn-cld-pfrm-md",
                        "adtran-cloud-platform-profiles:read-profile",
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                        "adtran-cloud-platform-uiworkflow-profiles:read-profile",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy",
                        "adtran-cloud-platform-servers:read-adtn-cld-pfrm-srvr",
                        "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                        "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                        "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                        "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-content-providers",
                        "adtran-cloud-platform-uiworkflow-bundles:read-uiworkflow-bundles",
                        "adtran-cloud-platform-profiles:config-profile",
                        "adtran-yang-datastore:read-yang-model",
                        "adtran-yang-datastore:write-yang-model"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "edit-provider-user",
                      "permissions": [
                        "adtran-auth-permission:all",
                        "adtran-captive-portal-content-providers:read-content-provider",
                        "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                        "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                        "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-content-providers",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "edit-server-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                        "adtran-cloud-platform-uiworkflow-servers:read-uiworkflow-servers",
                        "adtran-cloud-platform-servers:read-adtn-cld-pfrm-srvr",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-labels:read-labels",
                        "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                        "adtran-auth-permission:all",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "edit-service-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-captive-portal-services:activate-service",
                        "adtran-captive-portal-services:deactivate-service",
                        "adtran-captive-portal-service-transition:read-service-transitions",
                        "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-services",
                        "adtran-cloud-platform-services:read-service",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-catalog",
                        "adtran-auth-permission:all",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-yang-datastore:read-yang-model",
                        "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-service-profiles",
                        "adtran-cloud-platform-services:modify-service",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                        "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interfaces",
                        "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-content-providers",
                        "adtran-captive-portal-content-providers:read-content-provider",
                        "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy",
                        "adtran-cloud-platform-labels:read-labels"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "edit-ui-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                        "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-content-providers",
                        "adtran-captive-portal-content-providers:read-content-provider",
                        "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                        "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                        "adtran-cloud-platform-uiworkflow-servers:read-uiworkflow-servers",
                        "adtran-cloud-platform-servers:read-adtn-cld-pfrm-srvr",
                        "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-service-profiles",
                        "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interfaces",
                        "adtran-cloud-platform-uiworkflow-interfaces:filter-uiworkflow-physical-resources",
                        "adtran-cloud-platform-uiworkflow-bundles:read-uiworkflow-bundles",
                        "adtran-auth-permission:all",
                        "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interface-type",
                        "adtran-cloud-platform-uiworkflow-profiles:read-profile",
                        "adtran-cloud-platform-profiles:read-profile",
                        "adtran-cloud-platform-bundles:read-adtn-cld-pfrm-bndl",
                        "adtran-cloud-platform-data-centers:read-adtn-cld-pfrm-data-ctr",
                        "adtran-captive-portal-service-transition:read-service-transitions",
                        "adtran-captive-portal-services:activate-service",
                        "adtran-captive-portal-services:deactivate-service",
                        "adtran-cloud-platform-hardware:read-profile",
                        "adtran-cloud-platform-labels:read-labels",
                        "adtran-cloud-platform-labels:modify-labels",
                        "adtran-cloud-platform-management-domains:read-adtn-cld-pfrm-md",
                        "adtran-cloud-platform-profiles:config-profile",
                        "adtran-cloud-platform-services:modify-service",
                        "adtran-cloud-platform-services:read-service",
                        "adtran-cloud-platform-uiworkflow-bundles:read-uiworkflow-bundle-type",
                        "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                        "adtran-cloud-platform-uiworkflow-interfaces:filter-uiworkflow-interface-resources",
                        "adtran-cloud-platform-uiworkflow-jobs:get-job-context",
                        "adtran-cloud-platform-uiworkflow-jobs:read-action",
                        "adtran-cloud-platform-uiworkflow-jobs:read-job",
                        "adtran-cloud-platform-uiworkflow-jobs:read-trigger",
                        "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domain-types",
                        "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domains",
                        "adtran-cloud-platform-uiworkflow-part-numbers:read-uiworkflow-part-number",
                        "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-services",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-catalog",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                        "adtran-yang-datastore:read-yang-model",
                        "adtran-yang-datastore:write-yang-model",
                        "adtran-cloud-platform-ui-inspect:run-request",
                        "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev-inspect",
                        "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int-inspect",
                        "adtran-cloud-platform-jobs:read-adtn-cld-pfrm-job"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "events-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-event-workflow:event-read"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "group-permissions-admin",
                      "permissions": [
                        "adtran-auth-group:modify-groups",
                        "adtran-auth-permission:all"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "groups-admin",
                      "permissions": [
                        "adtran-auth-group:modify-groups",
                        "adtran-auth-permission:all"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "inspect-ui-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-ui-inspect:run-request",
                        "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                        "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                        "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev-inspect",
                        "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interfaces",
                        "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                        "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int-inspect",
                        "adtran-cloud-platform-uiworkflow-servers:read-uiworkflow-servers",
                        "adtran-cloud-platform-servers:read-adtn-cld-pfrm-srvr",
                        "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-services",
                        "adtran-cloud-platform-services:read-service",
                        "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-content-providers",
                        "adtran-captive-portal-content-providers:read-content-provider",
                        "adtran-cloud-platform-uiworkflow-jobs:read-job",
                        "adtran-cloud-platform-jobs:read-adtn-cld-pfrm-job",
                        "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domains",
                        "adtran-cloud-platform-management-domains:read-adtn-cld-pfrm-md",
                        "adtran-cloud-platform-uiworkflow-profiles:read-profile",
                        "adtran-cloud-platform-profiles:read-profile",
                        "adtran-cloud-platform-labels:read-labels"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "login-banner-admin",
                      "permissions": [
                        "adtran-launchpad-login:modify-login-page",
                        "adtran-launchpad-login:modify-browser-page",
                        "adtran-cloud-platform-settings:read-adtn-cld-pfrm-set",
                        "adtran-cloud-platform-settings:modify-adtn-cld-pfrm-set",
                        "adtran-auth-permission:anonymous"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "mosaic-user",
                      "permissions": [
                        "adtran-auth-permission:all",
                        "adtran-ffui-workboards:modify-workboards",
                        "adtran-ffui-workboards:read-workboards",
                        "adtran-ffui-applications:read-apps-info",
                        "adtran-ffui-applications:write-apps-info",
                        "adtran-cloud-platform-information:read-information",
                        "adtran-cloud-platform-plugin:get-plugins"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "super-user",
                      "permissions": [
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-suspend-resume",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-catalog",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-onboard-device",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                        "adtran-cloud-platform-uiworkflow:force-delete",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-notify",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                        "adtran-auth-permission:all",
                        "adtran-auth-permission:anonymous",
                        "adtran-export-data-service:export-data-service",
                        "adtran-cloud-platform-topics:configure-topics",
                        "adtran-cloud-platform-topics:read-topics",
                        "adtran-cloud-platform-jobs:read-adtn-cld-pfrm-job",
                        "adtran-cloud-platform-jobs:modify-adtn-cld-pfrm-job",
                        "adtran-cloud-platform-software-upgrade-service:download-software",
                        "adtran-cloud-platform-software-upgrade-service:commit-software",
                        "adtran-cloud-platform-software-upgrade-service:reboot-device",
                        "adtran-cloud-platform-software-upgrade-service:commit-and-activate-software",
                        "adtran-cloud-platform-software-upgrade-service:activate-software",
                        "adtran-ffui-settings:modify-settings",
                        "adtran-ffui-settings:read-settings",
                        "adtran-cloud-platform-server-coordination:communicate-servers",
                        "adtran-cloud-platform-server-coordination:activate-servers",
                        "adtran-cloud-platform-server-coordination:delete-servers",
                        "adtran-cloud-platform-server-coordination:config-servers",
                        "adtran-cloud-platform-server-coordination:undeploy-servers",
                        "adtran-cloud-platform-server-coordination:deploy-servers",
                        "adtran-cloud-platform-server-coordination:deactivate-servers",
                        "adtran-auth-tech-support:generate-tech-support-challenges",
                        "adtran-auth-domain:modify-domains",
                        "adtran-cloud-platform-uiworkflow-topology:run-uiworkflow-topology",
                        "adtran-cloud-platform-uiworkflow-topology:read-uiworkflow-topology",
                        "adtran-cloud-platform-management-domains:modify-adtn-cld-pfrm-md",
                        "adtran-cloud-platform-management-domains:read-adtn-cld-pfrm-md",
                        "adtran-cloud-platform-elasticsearch-rollover-indices:rollover-cron-update",
                        "adtran-cloud-platform-elasticsearch-rollover-indices:read-adtn-cld-pfrm-es-rlvr-indcs",
                        "adtran-cloud-platform-elasticsearch-rollover-indices:modify-adtn-cld-pfrm-es-rlvr-indcs",
                        "adtran-nms-inventory:read-inventory",
                        "adtran-captive-portal-policers:modify-policer",
                        "adtran-captive-portal-policers:read-policer",
                        "adtran-ffui-workboards-yds:modify-workboards",
                        "adtran-ffui-workboards-yds:read-workboards",
                        "adtran-cloud-platform-event-workflow:event-clear",
                        "adtran-cloud-platform-event-workflow:event-read",
                        "adtran-cloud-platform-event-workflow:event-write",
                        "adtran-cloud-platform-event-workflow:read-event-workflow-transitions",
                        "adtran-cloud-platform-hardware:read-profile",
                        "adtran-yang-datastore:write-yang-model",
                        "adtran-yang-datastore:read-yang-model",
                        "adtran-vssm-gx-subscriber-data:read-subscriber-data",
                        "adtran-cloud-platform-dhcp-config:dhcp-config",
                        "adtran-cloud-platform-uiworkflow-jobs:read-action",
                        "adtran-cloud-platform-uiworkflow-jobs:read-run-job-transitions",
                        "adtran-cloud-platform-uiworkflow-jobs:run-job-with-parameters",
                        "adtran-cloud-platform-uiworkflow-jobs:get-job-context",
                        "adtran-cloud-platform-uiworkflow-jobs:run-job",
                        "adtran-cloud-platform-uiworkflow-jobs:read-job",
                        "adtran-cloud-platform-uiworkflow-jobs:read-trigger",
                        "adtran-cloud-platform-services:read-service",
                        "adtran-cloud-platform-services:modify-service",
                        "adtran-cloud-platform-software-upgrade-maintenance-service:get-upgrade-summary-status",
                        "adtran-cloud-platform-software-upgrade-maintenance-service:initiate-upgrade",
                        "adtran-cloud-platform-software-upgrade-maintenance-service:get-upgrade-status",
                        "adtran-cloud-platform-dhcp-subscriber-profile-mapping:modify-subscriber-profile-mapping",
                        "adtran-cloud-platform-dhcp-subscriber-profile-mapping:read-subscriber-profile-mapping",
                        "adtran-cloud-platform-profiles-pools:read-profile-pool",
                        "adtran-cloud-platform-profiles-pools:modify-profile-pools",
                        "adtran-cloud-platform-y1731-session-measurement-report:read-report",
                        "adtran-auth-user:modify-users",
                        "adtran-auth-user:administer-users",
                        "adtran-cloud-platform-bundles:read-adtn-cld-pfrm-bndl",
                        "adtran-cloud-platform-bundles:modify-adtn-cld-pfrm-bndl",
                        "adtran-cloud-platform-service-test-rfc2544:run-test-rfc2544",
                        "adtran-cloud-platform-service-test-rfc2544:read-rfc2544-tests",
                        "adtran-vssm-gx-handler:gx-handler",
                        "adtran-cloud-platform-deferred-intents:read-deferred-intents",
                        "adtran-cloud-platform-servers:modify-adtn-cld-pfrm-srvr",
                        "adtran-cloud-platform-servers:read-adtn-cld-pfrm-srvr",
                        "adtran-cloud-platform-data-centers:modify-adtn-cld-pfrm-data-ctr",
                        "adtran-cloud-platform-data-centers:read-adtn-cld-pfrm-data-ctr",
                        "adtran-dhcp-autoprov-info:read-adtn-dhcp-ap-info",
                        "adtran-cloud-platform-business-service-management:service-write",
                        "adtran-cloud-platform-business-service-management:service-read",
                        "adtran-cloud-platform-orchestration:read-orchestration-transitions",
                        "adtran-cloud-platform-orchestration:run-orchestration-create",
                        "adtran-cloud-platform-orchestration:run-orchestration-modify",
                        "adtran-cloud-platform-orchestration:run-orchestration-delete",
                        "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                        "adtran-auth-config:modify-config",
                        "adtran-cloud-platform-uiworkflow-servers:read-uiworkflow-servers",
                        "adtran-cloud-platform-search:administer-search",
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-job-manager:modify-adtn-cld-pfrm-job-mngr",
                        "adtran-cloud-platform-job-manager:read-adtn-cld-pfrm-job-mngr",
                        "adtran-manifests:read-adtn-manif",
                        "adtran-cloud-platform-vssm-diameter-statistics:diameter-stats-perm",
                        "adtran-captive-portal-sla-profiles:modify-sla-profile",
                        "adtran-captive-portal-sla-profiles:read-sla-profile",
                        "adtran-cloud-platform-uiworkflow-data-center-types:read-uiworkflow-data-center-type",
                        "adtran-cloud-platform-diagnostic-data-maintenance-service:get-diagnostic-job-info",
                        "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domain-types",
                        "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domains",
                        "adtran-auth-config-external:modify-config-ext",
                        "adtran-cloud-platform-uiworkflow-subscribers:read-uiworkflow-subscribers",
                        "adtran-cloud-platform-uiworkflow-subscribers:filter-uiworkflow-subscriber-resources",
                        "adtran-auth-accounting:read-accounting-logs",
                        "adtran-cloud-platform-subscriber-policy:read-subs-policy",
                        "adtran-cloud-platform-subscriber-policy:modify-subs-policy",
                        "adtran-captive-portal-content-providers:read-content-provider",
                        "adtran-captive-portal-content-providers:modify-content-provider",
                        "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                        "adtran-cloud-platform-devices:modify-adtn-cld-pfrm-dev",
                        "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev-inspect",
                        "adtran-nbi-pm:pm-config",
                        "adtran-nbi-pm:pm-read",
                        "adtran-cloud-platform-subscribers:read-adtn-cld-pfrm-subs",
                        "adtran-cloud-platform-subscribers:modify-adtn-cld-pfrm-subs",
                        "adtran-cloud-platform-profiles:config-profile",
                        "adtran-cloud-platform-profiles:read-profile",
                        "adtran-cloud-platform-ui-inspect:run-request",
                        "adtran-cloud-platform-ui-inspect:run-action",
                        "adtran-cloud-platform-alarm-logger:read-alarm-logs",
                        "adtran-server-proxy-by-name:server-read",
                        "adtran-cloud-platform-labels:read-labels",
                        "adtran-cloud-platform-labels:modify-labels",
                        "adtran-cloud-platform-event-description:configure-event-description",
                        "adtran-cloud-platform-event-description:read-event-description",
                        "adtran-cloud-platform-proxy-service:server-read",
                        "adtran-cloud-platform-proxy-service:server-write",
                        "adtran-cloud-platform-proxy-service:mount-point-read",
                        "adtran-cloud-platform-proxy-service:device-read",
                        "adtran-cloud-platform-proxy-service:device-write",
                        "adtran-cloud-platform-plugin:get-plugins",
                        "adtran-cloud-platform-plugin:reload-plugins",
                        "adtran-cloud-platform-information:read-information",
                        "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int-inspect",
                        "adtran-cloud-platform-interfaces:modify-adtn-cld-pfrm-int",
                        "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                        "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interface-type",
                        "adtran-cloud-platform-uiworkflow-interfaces:filter-uiworkflow-interface-resources",
                        "adtran-cloud-platform-uiworkflow-interfaces:filter-uiworkflow-physical-resources",
                        "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interfaces",
                        "adtran-cloud-platform-connection-monitor:aggregate-sessions-count",
                        "adtran-cloud-platform-system-monitor:read-system-monitor-node-status",
                        "adtran-cloud-platform-dfn-route-configuration:read-dfn-rt-configuration",
                        "adtran-cloud-platform-dfn-route-configuration:modify-dfn-rt-configuration",
                        "adtran-cloud-platform-uiworkflow-inspect:inspect-uiworkflow-profiles",
                        "adtran-cloud-platform-uiworkflow-inspect:inspect-uiworkflow-server",
                        "adtran-cloud-platform-uiworkflow-inspect:manage-uiworkflow-dpu",
                        "adtran-cloud-platform-uiworkflow-inspect:inspect-uiworkflow-devices",
                        "adtran-cloud-platform-uiworkflow-inspect:inspect-uiworkflow-interfaces",
                        "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                        "adtran-cloud-platform-uiworkflow-behaviors:read-uiworkflow-behavior",
                        "adtran-cloud-platform-uiworkflow-behaviors:run-uiworkflow-behavior",
                        "adtran-cloud-platform-base-configurations:modify-adtn-cld-pfrm-bc",
                        "adtran-cloud-platform-base-configurations:read-adtn-cld-pfrm-bc",
                        "adtran-captive-portal-wholesale-helpers:remove-ont",
                        "adtran-captive-portal-wholesale-helpers:delete-ses-service",
                        "adtran-captive-portal-wholesale-helpers:decommission-l2s-device",
                        "adtran-captive-portal-wholesale-helpers:delete-dpu-mgmt-svcs-for-l2s",
                        "adtran-captive-portal-wholesale-helpers:decommission-dpu",
                        "adtran-captive-portal-wholesale-helpers:create-content-provider",
                        "adtran-captive-portal-wholesale-helpers:configure-interface",
                        "adtran-captive-portal-wholesale-helpers:delete-pon-system",
                        "adtran-captive-portal-wholesale-helpers:deactivate-service",
                        "adtran-captive-portal-wholesale-helpers:replace-ont",
                        "adtran-captive-portal-wholesale-helpers:activate-service",
                        "adtran-captive-portal-wholesale-helpers:add-ont",
                        "adtran-captive-portal-wholesale-helpers:commission-l2s-device",
                        "adtran-captive-portal-wholesale-helpers:create-pon-system",
                        "adtran-captive-portal-wholesale-helpers:delete-dpu-service",
                        "adtran-captive-portal-wholesale-helpers:create-l2s-device-mgmt-svcs",
                        "adtran-captive-portal-wholesale-helpers:delete-content-provider",
                        "adtran-captive-portal-wholesale-helpers:create-dpu-mgmt-svcs-for-l2s",
                        "adtran-captive-portal-wholesale-helpers:delete-l2s-service",
                        "adtran-captive-portal-wholesale-helpers:modify-ont",
                        "adtran-captive-portal-wholesale-helpers:update-pon",
                        "adtran-captive-portal-wholesale-helpers:update-pon-system",
                        "adtran-captive-portal-wholesale-helpers:get-pons-of-channel-partition",
                        "adtran-captive-portal-wholesale-helpers:delete-channel-partition",
                        "adtran-captive-portal-wholesale-helpers:create-l2s-service",
                        "adtran-captive-portal-wholesale-helpers:delete-l2s-device-mgmt-svcs",
                        "adtran-captive-portal-wholesale-helpers:create-dpu-service",
                        "adtran-captive-portal-wholesale-helpers:create-ses-service",
                        "adtran-captive-portal-wholesale-helpers:commission-dpu",
                        "adtran-auth-radius-attributes-mapping:modify-radius-attributes-mapping",
                        "adtran-cloud-platform-subscriber-accounting:write-config",
                        "adtran-cloud-platform-subscriber-accounting:read-config",
                        "adtran-nbi-ipaa-ssh:ipaa-config-ssh",
                        "adtran-system-config:modify-config",
                        "adtran-vssm-gx-session:gx-session",
                        "adtran-cloud-platform-restconf-streams:stream-read",
                        "adtran-cloud-platform-dhcp-lease:read-dhcp-lease",
                        "adtran-cloud-platform-device-credentials:modify-adtn-cld-pfrm-dev-crdls",
                        "adtran-cloud-platform-device-credentials:read-adtn-cld-pfrm-dev-crdls",
                        "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-service-profiles",
                        "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-content-providers",
                        "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-services",
                        "adtran-trap-forwarder:trap-config-read",
                        "adtran-trap-forwarder:trap-config-write",
                        "adtran-device-proxy:device-read",
                        "adtran-device-proxy:device-write",
                        "adtran-device-proxy:server-write",
                        "adtran-device-proxy:device-execute",
                        "adtran-cloud-platform-device-backup:modify-adtn-cld-pfrm-dev-bkup",
                        "adtran-cloud-platform-device-backup:read-adtn-cld-pfrm-dev-bkup",
                        "adtran-ffui-applications:read-apps-info",
                        "adtran-ffui-applications:write-apps-info",
                        "adtran-captive-portal-service-transition:read-service-transitions",
                        "adtran-cloud-platform-enablement-adapter:run-ebmt-adpt-trap-receiver",
                        "adtran-cloud-platform-dhcp-profiles:modify-dhcp-profile",
                        "adtran-cloud-platform-dhcp-profiles:read-dhcp-profile",
                        "adtran-dhcp-ont-activations:read-adtn-dhcp-ont-act",
                        "adtran-cloud-platform-service-test-y1731:run-test-y1731",
                        "adtran-cloud-platform-service-test-y1731:run-graph-y1731",
                        "adtran-cloud-platform-service-test-y1731:read-y1731-tests",
                        "adtran-cxui-types:read-adtn-cxui-sip-stats",
                        "adtran-cxui-types:read-adtn-cxui-dev",
                        "adtran-cxui-types:read-adtn-cxui-vqm",
                        "adtran-cxui-types:modify-adtn-cxui-dev",
                        "adtran-cxui-types:read-adtn-cxui-dev-stats",
                        "adtran-launchpad-login:modify-browser-page",
                        "adtran-launchpad-login:modify-login-page",
                        "adtran-cloud-platform-restconf-service:read-permission",
                        "adtran-cloud-platform-restconf-service:subscribe-notifications",
                        "adtran-cloud-platform-restconf-service:get-all-device-notifications",
                        "adtran-cloud-platform-restconf-service:read-schema",
                        "adtran-cloud-platform-restconf-service:write-config",
                        "adtran-cloud-platform-restconf-service:delete-config",
                        "adtran-cloud-platform-restconf-service:get-all-device-sessions",
                        "adtran-cloud-platform-restconf-service:unsubscribe-notifications",
                        "adtran-cloud-platform-restconf-service:read-session",
                        "adtran-cloud-platform-restconf-service:reboot-device",
                        "adtran-cloud-platform-restconf-service:execute-rpc",
                        "adtran-cloud-platform-restconf-service:close-session",
                        "adtran-cloud-platform-restconf-service:read-config",
                        "adtran-cloud-platform-restconf-service:reestablish-session",
                        "adtran-cloud-platform-restconf-service:open-session",
                        "adtran-cloud-platform-dfn-peer-configuration:modify-dfn-pr-configuration",
                        "adtran-cloud-platform-dfn-peer-configuration:read-dfn-pr-configuration",
                        "adtran-cloud-platform-uiworkflow-part-numbers:read-uiworkflow-part-number",
                        "adtran-cloud-platform-uiworkflow-data-centers:read-uiworkflow-data-centers",
                        "adtran-feature-flags:config-flag",
                        "adtran-cloud-platform-subscriber-session-status:read-subscriber-session",
                        "adtran-auth-group:modify-groups",
                        "adtran-cloud-platform-dfn-configuration:modify-dfn-configuration",
                        "adtran-cloud-platform-dfn-configuration:read-dfn-configuration",
                        "adtran-file-transfer:read-adtn-file-xfer-sftp-cfg",
                        "adtran-file-transfer:modify-adtn-file-xfer-sftp-cfg",
                        "adtran-cloud-platform-event-enrichment-helper:event-enrichment-helper",
                        "adtran-cloud-platform-uiworkflow-bundles:read-uiworkflow-bundle-type",
                        "adtran-cloud-platform-uiworkflow-bundles:read-uiworkflow-bundles",
                        "adtran-cloud-platform-uiworkflow-bundles:filter-uiworkflow-bundle-resources",
                        "adtran-cloud-platform-credentials:modify-adtn-cld-pfrm-crdls",
                        "adtran-cloud-platform-credentials:read-adtn-cld-pfrm-crdls",
                        "adtran-cloud-platform-deferred-intent-service:execute-intent-operation",
                        "adtran-vssm-gx-config:read-gx-apn-config",
                        "adtran-cloud-platform-settings:modify-adtn-cld-pfrm-set",
                        "adtran-cloud-platform-settings:read-adtn-cld-pfrm-set",
                        "adtran-cloud-platform-uiworkflow-device-credentials:read-adtn-cld-pfrm-uiw-dev-crdls",
                        "adtran-cloud-platform-subscriber-session-manager:config-sessions",
                        "adtran-cloud-platform-subscriber-session-manager:read-subscribers",
                        "adtran-ffui-workboards:read-workboards",
                        "adtran-ffui-workboards:modify-workboards",
                        "adtran-cloud-platform-vssm-gx-statistics:gx-stats-perm",
                        "adtran-nbi-sysmon:sysmon-config",
                        "adtran-nbi-sysmon:sysmon-read",
                        "adtran-nbi-ipaa:ipaa-config",
                        "adtran-cloud-platform-uiworkflow-profiles:read-profile",
                        "adtran-cloud-platform-management-domain-coordination:deploy-mgmt-domains",
                        "adtran-cloud-platform-management-domain-coordination:delete-mgmt-domains",
                        "adtran-cloud-platform-management-domain-coordination:activate-mgmt-domains",
                        "adtran-cloud-platform-management-domain-coordination:deactivate-mgmt-domains",
                        "adtran-cloud-platform-management-domain-coordination:undeploy-mgmt-domains",
                        "adtran-cloud-platform-management-domain-coordination:config-mgmt-domains",
                        "adtran-cloud-platform-maintenance-services:read-action-status",
                        "adtran-cloud-platform-maintenance-services:execute-action",
                        "adtran-captive-portal-services:deploy-service",
                        "adtran-captive-portal-services:activate-service",
                        "adtran-captive-portal-services:find-service",
                        "adtran-captive-portal-services:delete-service",
                        "adtran-captive-portal-services:read-service-status",
                        "adtran-captive-portal-services:undeploy-service",
                        "adtran-captive-portal-services:read-service",
                        "adtran-captive-portal-services:configure-service",
                        "adtran-captive-portal-services:modify-service",
                        "adtran-captive-portal-services:deactivate-service",
                        "adtran-cloud-platform-netconf-client-service:write-config",
                        "adtran-cloud-platform-netconf-client-service:execute-rpc",
                        "adtran-cloud-platform-netconf-client-service:subscribe-notifications",
                        "adtran-cloud-platform-netconf-client-service:unsubscribe-notifications",
                        "adtran-cloud-platform-netconf-client-service:read-session",
                        "adtran-cloud-platform-netconf-client-service:read-config",
                        "adtran-cloud-platform-netconf-client-service:delete-config",
                        "adtran-cloud-platform-netconf-client-service:get-all-device-sessions",
                        "adtran-cloud-platform-netconf-client-service:open-session",
                        "adtran-cloud-platform-netconf-client-service:close-session",
                        "adtran-cloud-platform-netconf-client-service:reboot-device",
                        "adtran-cloud-platform-netconf-client-service:reestablish-session",
                        "adtran-cloud-platform-netconf-client-service:read-schema",
                        "adtran-captive-portal-types:modify-server-credentials",
                        "adtran-captive-portal-types:activate-service",
                        "adtran-captive-portal-types:read-user-logs",
                        "adtran-captive-portal-types:read-activation-logs",
                        "adtran-captive-portal-types:read-server-credentials",
                        "adtran-dhcp-leases:read-adtn-dhcp-lease",
                        "adtran-cloud-platform-diameter-config:diameter-config"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "topology-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-services",
                        "adtran-cloud-platform-services:read-service",
                        "adtran-cloud-platform-uiworkflow-topology:run-uiworkflow-topology",
                        "adtran-cloud-platform-uiworkflow-topology:read-uiworkflow-topology"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "user-groups-admin",
                      "permissions": [
                        "adtran-auth-group:modify-groups",
                        "adtran-auth-user:modify-users",
                        "adtran-auth-permission:all"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "users-admin",
                      "permissions": [
                        "adtran-auth-user:modify-users",
                        "adtran-auth-permission:all",
                        "adtran-auth-user:administer-users"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "view-modify-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                        "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                        "adtran-cloud-platform-labels:read-labels",
                        "adtran-cloud-platform-jobs:read-adtn-cld-pfrm-job",
                        "adtran-captive-portal-content-providers:read-content-provider",
                        "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                        "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                        "adtran-cloud-platform-bundles:read-adtn-cld-pfrm-bndl",
                        "adtran-cloud-platform-services:read-service",
                        "adtran-cloud-platform-profiles:read-profile",
                        "adtran-cloud-platform-servers:read-adtn-cld-pfrm-srvr",
                        "adtran-cloud-platform-management-domains:read-adtn-cld-pfrm-md",
                        "adtran-cloud-platform-data-centers:read-adtn-cld-pfrm-data-ctr",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions"
                      ]
                    },
                    {
                      "domains": [],
                      "name": "view-read-user",
                      "permissions": [
                        "adtran-cloud-platform-search:execute-search"
                      ]
                    }
                  ]
                },
                "example": [
                  {
                    "domains": [],
                    "name": "activate-device-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                      "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                      "adtran-cloud-platform-labels:read-labels",
                      "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                      "adtran-auth-permission:all",
                      "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                      "adtran-cloud-platform-management-domains:read-adtn-cld-pfrm-md",
                      "adtran-cloud-platform-profiles:read-profile",
                      "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interfaces",
                      "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domain-types",
                      "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domains",
                      "adtran-cloud-platform-uiworkflow-part-numbers:read-uiworkflow-part-number",
                      "adtran-cloud-platform-uiworkflow-profiles:read-profile"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "activate-interface-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interfaces",
                      "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                      "adtran-auth-permission:all",
                      "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                      "adtran-cloud-platform-labels:read-labels",
                      "adtran-cloud-platform-profiles:read-profile",
                      "adtran-cloud-platform-uiworkflow-bundles:read-uiworkflow-bundles",
                      "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                      "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                      "adtran-cloud-platform-uiworkflow-interfaces:filter-uiworkflow-interface-resources",
                      "adtran-cloud-platform-uiworkflow-interfaces:filter-uiworkflow-physical-resources",
                      "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interface-type",
                      "adtran-cloud-platform-uiworkflow-profiles:read-profile"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "activate-job-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-cloud-platform-uiworkflow-jobs:read-job",
                      "adtran-cloud-platform-jobs:read-adtn-cld-pfrm-job",
                      "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                      "adtran-cloud-platform-profiles:read-profile",
                      "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                      "adtran-cloud-platform-uiworkflow-jobs:get-job-context",
                      "adtran-cloud-platform-uiworkflow-jobs:read-action",
                      "adtran-cloud-platform-uiworkflow-jobs:read-trigger",
                      "adtran-cloud-platform-uiworkflow-profiles:read-profile"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "activate-management-domain-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domains",
                      "adtran-cloud-platform-management-domains:read-adtn-cld-pfrm-md",
                      "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                      "adtran-auth-permission:all",
                      "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                      "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domain-types"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "activate-profile-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-cloud-platform-labels:read-labels",
                      "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                      "adtran-auth-permission:all",
                      "adtran-cloud-platform-profiles:config-profile",
                      "adtran-cloud-platform-hardware:read-profile",
                      "adtran-yang-datastore:read-yang-model",
                      "adtran-yang-datastore:write-yang-model"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "activate-profile-vector-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow-profiles:read-profile",
                      "adtran-cloud-platform-profiles:read-profile",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-cloud-platform-labels:read-labels",
                      "adtran-yang-datastore:read-yang-model",
                      "adtran-yang-datastore:write-yang-model",
                      "adtran-cloud-platform-profiles:config-profile",
                      "adtran-auth-permission:all",
                      "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                      "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                      "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                      "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-content-providers",
                      "adtran-cloud-platform-uiworkflow-bundles:read-uiworkflow-bundles",
                      "adtran-cloud-platform-servers:read-adtn-cld-pfrm-srvr",
                      "adtran-cloud-platform-profiles:config-profile"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "activate-provider-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-content-providers",
                      "adtran-captive-portal-content-providers:read-content-provider",
                      "adtran-auth-permission:all"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "activate-server-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-cloud-platform-uiworkflow-servers:read-uiworkflow-servers",
                      "adtran-cloud-platform-servers:read-adtn-cld-pfrm-srvr",
                      "adtran-cloud-platform-labels:read-labels",
                      "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                      "adtran-auth-permission:all"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "activate-service-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-captive-portal-services:activate-service",
                      "adtran-captive-portal-services:deactivate-service",
                      "adtran-captive-portal-service-transition:read-service-transitions",
                      "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-services",
                      "adtran-cloud-platform-services:read-service",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-catalog",
                      "adtran-auth-permission:all",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-yang-datastore:read-yang-model",
                      "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-content-providers",
                      "adtran-cloud-platform-labels:read-labels"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "activate-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                      "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                      "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interfaces",
                      "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                      "adtran-cloud-platform-uiworkflow-jobs:read-job",
                      "adtran-cloud-platform-jobs:read-adtn-cld-pfrm-job",
                      "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domains",
                      "adtran-cloud-platform-management-domains:read-adtn-cld-pfrm-md",
                      "adtran-cloud-platform-uiworkflow-servers:read-uiworkflow-servers",
                      "adtran-cloud-platform-servers:read-adtn-cld-pfrm-srvr",
                      "adtran-captive-portal-services:activate-service",
                      "adtran-captive-portal-services:deactivate-service",
                      "adtran-captive-portal-service-transition:read-service-transitions",
                      "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-services",
                      "adtran-cloud-platform-services:read-service",
                      "adtran-cloud-platform-uiworkflow-profiles:read-profile",
                      "adtran-cloud-platform-profiles:read-profile",
                      "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-content-providers",
                      "adtran-captive-portal-content-providers:read-content-provider",
                      "adtran-cloud-platform-labels:read-labels"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "audit-log-admin",
                    "permissions": [
                      "adtran-auth-accounting:read-accounting-logs"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "configure-device-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                      "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                      "adtran-cloud-platform-uiworkflow-part-numbers:read-uiworkflow-part-number",
                      "adtran-cloud-platform-uiworkflow-profiles:read-profile",
                      "adtran-cloud-platform-profiles:read-profile",
                      "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domain-types",
                      "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domains",
                      "adtran-cloud-platform-management-domains:read-adtn-cld-pfrm-md",
                      "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                      "adtran-auth-permission:all",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                      "adtran-cloud-platform-labels:read-labels",
                      "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interfaces",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "configure-interface-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interface-type",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                      "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interfaces",
                      "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                      "adtran-cloud-platform-uiworkflow-profiles:read-profile",
                      "adtran-cloud-platform-profiles:read-profile",
                      "adtran-auth-permission:all",
                      "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                      "adtran-cloud-platform-labels:read-labels",
                      "adtran-cloud-platform-uiworkflow-bundles:read-uiworkflow-bundles",
                      "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                      "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                      "adtran-cloud-platform-uiworkflow-interfaces:filter-uiworkflow-interface-resources",
                      "adtran-cloud-platform-uiworkflow-interfaces:filter-uiworkflow-physical-resources",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "configure-job-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                      "adtran-cloud-platform-uiworkflow-jobs:read-job",
                      "adtran-cloud-platform-jobs:read-adtn-cld-pfrm-job",
                      "adtran-cloud-platform-uiworkflow-jobs:read-action",
                      "adtran-cloud-platform-uiworkflow-jobs:read-trigger",
                      "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                      "adtran-cloud-platform-profiles:read-profile",
                      "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                      "adtran-cloud-platform-uiworkflow-jobs:get-job-context",
                      "adtran-cloud-platform-uiworkflow-profiles:read-profile",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "configure-management-domain-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                      "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domain-types",
                      "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domains",
                      "adtran-cloud-platform-management-domains:read-adtn-cld-pfrm-md",
                      "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                      "adtran-auth-permission:all",
                      "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "configure-profile-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-cloud-platform-labels:read-labels",
                      "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                      "adtran-auth-permission:all",
                      "adtran-cloud-platform-profiles:config-profile",
                      "adtran-cloud-platform-hardware:read-profile",
                      "adtran-yang-datastore:read-yang-model",
                      "adtran-yang-datastore:write-yang-model"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "configure-profile-vector-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-content-providers",
                      "adtran-captive-portal-content-providers:read-content-provider",
                      "adtran-cloud-platform-labels:read-labels",
                      "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                      "adtran-auth-permission:all",
                      "adtran-cloud-platform-profiles:config-profile",
                      "adtran-cloud-platform-hardware:read-profile",
                      "adtran-yang-datastore:read-yang-model",
                      "adtran-yang-datastore:write-yang-model"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "configure-provider-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                      "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-content-providers",
                      "adtran-captive-portal-content-providers:read-content-provider",
                      "adtran-auth-permission:all",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "configure-server-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                      "adtran-cloud-platform-uiworkflow-servers:read-uiworkflow-servers",
                      "adtran-cloud-platform-servers:read-adtn-cld-pfrm-srvr",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-cloud-platform-labels:read-labels",
                      "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                      "adtran-auth-permission:all"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "configure-service-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-service-profiles",
                      "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-services",
                      "adtran-cloud-platform-services:modify-service",
                      "adtran-cloud-platform-services:read-service",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-catalog",
                      "adtran-auth-permission:all",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-yang-datastore:read-yang-model",
                      "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-content-providers",
                      "adtran-cloud-platform-labels:read-labels"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "deploy-device-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                      "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                      "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interfaces",
                      "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                      "adtran-auth-permission:all",
                      "adtran-cloud-platform-profiles:read-profile",
                      "adtran-cloud-platform-labels:read-labels",
                      "adtran-cloud-platform-management-domains:read-adtn-cld-pfrm-md",
                      "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domain-types",
                      "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domains",
                      "adtran-cloud-platform-uiworkflow-part-numbers:read-uiworkflow-part-number",
                      "adtran-cloud-platform-uiworkflow-profiles:read-profile"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "deploy-interface-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interfaces",
                      "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                      "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                      "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                      "adtran-cloud-platform-uiworkflow-interfaces:filter-uiworkflow-interface-resources",
                      "adtran-cloud-platform-uiworkflow-interfaces:filter-uiworkflow-physical-resources",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-cloud-platform-uiworkflow-bundles:read-uiworkflow-bundles",
                      "adtran-auth-permission:all",
                      "adtran-cloud-platform-labels:read-labels",
                      "adtran-cloud-platform-profiles:read-profile",
                      "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                      "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interface-type",
                      "adtran-cloud-platform-uiworkflow-profiles:read-profile"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "deploy-job-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow-jobs:read-job",
                      "adtran-cloud-platform-jobs:read-adtn-cld-pfrm-job",
                      "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                      "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                      "adtran-cloud-platform-uiworkflow-profiles:read-profile",
                      "adtran-cloud-platform-profiles:read-profile",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-cloud-platform-uiworkflow-jobs:get-job-context",
                      "adtran-cloud-platform-uiworkflow-jobs:read-action",
                      "adtran-cloud-platform-uiworkflow-jobs:read-trigger"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "deploy-management-domain-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domains",
                      "adtran-cloud-platform-management-domains:read-adtn-cld-pfrm-md",
                      "adtran-cloud-platform-uiworkflow-servers:read-uiworkflow-servers",
                      "adtran-cloud-platform-servers:read-adtn-cld-pfrm-srvr",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                      "adtran-auth-permission:all",
                      "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                      "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domain-types"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "deploy-profile-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-cloud-platform-labels:read-labels",
                      "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                      "adtran-auth-permission:all",
                      "adtran-cloud-platform-profiles:config-profile",
                      "adtran-cloud-platform-hardware:read-profile",
                      "adtran-yang-datastore:read-yang-model",
                      "adtran-yang-datastore:write-yang-model"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "deploy-profile-vector-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow-profiles:read-profile",
                      "adtran-cloud-platform-profiles:read-profile",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-cloud-platform-labels:read-labels",
                      "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                      "adtran-auth-permission:all",
                      "adtran-yang-datastore:read-yang-model",
                      "adtran-yang-datastore:write-yang-model"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "deploy-provider-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-content-providers",
                      "adtran-captive-portal-content-providers:read-content-provider",
                      "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                      "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                      "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-auth-permission:all"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "deploy-server-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow-servers:read-uiworkflow-servers",
                      "adtran-cloud-platform-servers:read-adtn-cld-pfrm-srvr",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-cloud-platform-labels:read-labels",
                      "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                      "adtran-auth-permission:all"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "deploy-service-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-services",
                      "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interfaces",
                      "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-content-providers",
                      "adtran-captive-portal-content-providers:read-content-provider",
                      "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-cloud-platform-services:read-service",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-catalog",
                      "adtran-auth-permission:all",
                      "adtran-yang-datastore:read-yang-model",
                      "adtran-cloud-platform-labels:read-labels"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "edit-device-user",
                    "permissions": [
                      "adtran-auth-permission:all",
                      "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                      "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                      "adtran-cloud-platform-labels:read-labels",
                      "adtran-cloud-platform-management-domains:read-adtn-cld-pfrm-md",
                      "adtran-cloud-platform-profiles:read-profile",
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                      "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                      "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interfaces",
                      "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domain-types",
                      "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domains",
                      "adtran-cloud-platform-uiworkflow-part-numbers:read-uiworkflow-part-number",
                      "adtran-cloud-platform-uiworkflow-profiles:read-profile",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "edit-interface-user",
                    "permissions": [
                      "adtran-auth-permission:all",
                      "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                      "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                      "adtran-cloud-platform-labels:read-labels",
                      "adtran-cloud-platform-profiles:read-profile",
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow-bundles:read-uiworkflow-bundles",
                      "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                      "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                      "adtran-cloud-platform-uiworkflow-interfaces:filter-uiworkflow-interface-resources",
                      "adtran-cloud-platform-uiworkflow-interfaces:filter-uiworkflow-physical-resources",
                      "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interface-type",
                      "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interfaces",
                      "adtran-cloud-platform-uiworkflow-profiles:read-profile",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "edit-job-user",
                    "permissions": [
                      "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                      "adtran-cloud-platform-jobs:read-adtn-cld-pfrm-job",
                      "adtran-cloud-platform-jobs:modify-adtn-cld-pfrm-job",
                      "adtran-cloud-platform-profiles:read-profile",
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                      "adtran-cloud-platform-uiworkflow-jobs:get-job-context",
                      "adtran-cloud-platform-uiworkflow-jobs:read-action",
                      "adtran-cloud-platform-uiworkflow-jobs:read-job",
                      "adtran-cloud-platform-uiworkflow-jobs:read-trigger",
                      "adtran-cloud-platform-uiworkflow-profiles:read-profile",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "edit-management-domain-user",
                    "permissions": [
                      "adtran-auth-permission:all",
                      "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                      "adtran-cloud-platform-management-domains:read-adtn-cld-pfrm-md",
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-servers:read-adtn-cld-pfrm-srvr",
                      "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                      "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domain-types",
                      "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domains",
                      "adtran-cloud-platform-uiworkflow-servers:read-uiworkflow-servers",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "edit-profile-user",
                    "permissions": [
                      "adtran-auth-permission:all",
                      "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                      "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                      "adtran-cloud-platform-labels:read-labels",
                      "adtran-cloud-platform-management-domains:read-adtn-cld-pfrm-md",
                      "adtran-cloud-platform-profiles:read-profile",
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                      "adtran-cloud-platform-uiworkflow-profiles:read-profile",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy",
                      "adtran-cloud-platform-profiles:config-profile",
                      "adtran-yang-datastore:read-yang-model",
                      "adtran-yang-datastore:write-yang-model"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "edit-profile-vector-user",
                    "permissions": [
                      "adtran-auth-permission:all",
                      "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                      "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                      "adtran-cloud-platform-labels:read-labels",
                      "adtran-cloud-platform-management-domains:read-adtn-cld-pfrm-md",
                      "adtran-cloud-platform-profiles:read-profile",
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                      "adtran-cloud-platform-uiworkflow-profiles:read-profile",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy",
                      "adtran-cloud-platform-servers:read-adtn-cld-pfrm-srvr",
                      "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                      "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                      "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                      "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-content-providers",
                      "adtran-cloud-platform-uiworkflow-bundles:read-uiworkflow-bundles",
                      "adtran-cloud-platform-profiles:config-profile",
                      "adtran-yang-datastore:read-yang-model",
                      "adtran-yang-datastore:write-yang-model"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "edit-provider-user",
                    "permissions": [
                      "adtran-auth-permission:all",
                      "adtran-captive-portal-content-providers:read-content-provider",
                      "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                      "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                      "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-content-providers",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "edit-server-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                      "adtran-cloud-platform-uiworkflow-servers:read-uiworkflow-servers",
                      "adtran-cloud-platform-servers:read-adtn-cld-pfrm-srvr",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-cloud-platform-labels:read-labels",
                      "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                      "adtran-auth-permission:all",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "edit-service-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-captive-portal-services:activate-service",
                      "adtran-captive-portal-services:deactivate-service",
                      "adtran-captive-portal-service-transition:read-service-transitions",
                      "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-services",
                      "adtran-cloud-platform-services:read-service",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-catalog",
                      "adtran-auth-permission:all",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-yang-datastore:read-yang-model",
                      "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-service-profiles",
                      "adtran-cloud-platform-services:modify-service",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                      "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interfaces",
                      "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-content-providers",
                      "adtran-captive-portal-content-providers:read-content-provider",
                      "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy",
                      "adtran-cloud-platform-labels:read-labels"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "edit-ui-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                      "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-content-providers",
                      "adtran-captive-portal-content-providers:read-content-provider",
                      "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                      "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                      "adtran-cloud-platform-uiworkflow-servers:read-uiworkflow-servers",
                      "adtran-cloud-platform-servers:read-adtn-cld-pfrm-srvr",
                      "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-service-profiles",
                      "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interfaces",
                      "adtran-cloud-platform-uiworkflow-interfaces:filter-uiworkflow-physical-resources",
                      "adtran-cloud-platform-uiworkflow-bundles:read-uiworkflow-bundles",
                      "adtran-auth-permission:all",
                      "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interface-type",
                      "adtran-cloud-platform-uiworkflow-profiles:read-profile",
                      "adtran-cloud-platform-profiles:read-profile",
                      "adtran-cloud-platform-bundles:read-adtn-cld-pfrm-bndl",
                      "adtran-cloud-platform-data-centers:read-adtn-cld-pfrm-data-ctr",
                      "adtran-captive-portal-service-transition:read-service-transitions",
                      "adtran-captive-portal-services:activate-service",
                      "adtran-captive-portal-services:deactivate-service",
                      "adtran-cloud-platform-hardware:read-profile",
                      "adtran-cloud-platform-labels:read-labels",
                      "adtran-cloud-platform-labels:modify-labels",
                      "adtran-cloud-platform-management-domains:read-adtn-cld-pfrm-md",
                      "adtran-cloud-platform-profiles:config-profile",
                      "adtran-cloud-platform-services:modify-service",
                      "adtran-cloud-platform-services:read-service",
                      "adtran-cloud-platform-uiworkflow-bundles:read-uiworkflow-bundle-type",
                      "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                      "adtran-cloud-platform-uiworkflow-interfaces:filter-uiworkflow-interface-resources",
                      "adtran-cloud-platform-uiworkflow-jobs:get-job-context",
                      "adtran-cloud-platform-uiworkflow-jobs:read-action",
                      "adtran-cloud-platform-uiworkflow-jobs:read-job",
                      "adtran-cloud-platform-uiworkflow-jobs:read-trigger",
                      "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domain-types",
                      "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domains",
                      "adtran-cloud-platform-uiworkflow-part-numbers:read-uiworkflow-part-number",
                      "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-services",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-catalog",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                      "adtran-yang-datastore:read-yang-model",
                      "adtran-yang-datastore:write-yang-model",
                      "adtran-cloud-platform-ui-inspect:run-request",
                      "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev-inspect",
                      "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int-inspect",
                      "adtran-cloud-platform-jobs:read-adtn-cld-pfrm-job"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "events-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-event-workflow:event-read"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "group-permissions-admin",
                    "permissions": [
                      "adtran-auth-group:modify-groups",
                      "adtran-auth-permission:all"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "groups-admin",
                    "permissions": [
                      "adtran-auth-group:modify-groups",
                      "adtran-auth-permission:all"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "inspect-ui-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-ui-inspect:run-request",
                      "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                      "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                      "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev-inspect",
                      "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interfaces",
                      "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                      "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int-inspect",
                      "adtran-cloud-platform-uiworkflow-servers:read-uiworkflow-servers",
                      "adtran-cloud-platform-servers:read-adtn-cld-pfrm-srvr",
                      "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-services",
                      "adtran-cloud-platform-services:read-service",
                      "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-content-providers",
                      "adtran-captive-portal-content-providers:read-content-provider",
                      "adtran-cloud-platform-uiworkflow-jobs:read-job",
                      "adtran-cloud-platform-jobs:read-adtn-cld-pfrm-job",
                      "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domains",
                      "adtran-cloud-platform-management-domains:read-adtn-cld-pfrm-md",
                      "adtran-cloud-platform-uiworkflow-profiles:read-profile",
                      "adtran-cloud-platform-profiles:read-profile",
                      "adtran-cloud-platform-labels:read-labels"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "login-banner-admin",
                    "permissions": [
                      "adtran-launchpad-login:modify-login-page",
                      "adtran-launchpad-login:modify-browser-page",
                      "adtran-cloud-platform-settings:read-adtn-cld-pfrm-set",
                      "adtran-cloud-platform-settings:modify-adtn-cld-pfrm-set",
                      "adtran-auth-permission:anonymous"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "mosaic-user",
                    "permissions": [
                      "adtran-auth-permission:all",
                      "adtran-ffui-workboards:modify-workboards",
                      "adtran-ffui-workboards:read-workboards",
                      "adtran-ffui-applications:read-apps-info",
                      "adtran-ffui-applications:write-apps-info",
                      "adtran-cloud-platform-information:read-information",
                      "adtran-cloud-platform-plugin:get-plugins"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "super-user",
                    "permissions": [
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-suspend-resume",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-catalog",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-onboard-device",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                      "adtran-cloud-platform-uiworkflow:force-delete",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-notify",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                      "adtran-auth-permission:all",
                      "adtran-auth-permission:anonymous",
                      "adtran-export-data-service:export-data-service",
                      "adtran-cloud-platform-topics:configure-topics",
                      "adtran-cloud-platform-topics:read-topics",
                      "adtran-cloud-platform-jobs:read-adtn-cld-pfrm-job",
                      "adtran-cloud-platform-jobs:modify-adtn-cld-pfrm-job",
                      "adtran-cloud-platform-software-upgrade-service:download-software",
                      "adtran-cloud-platform-software-upgrade-service:commit-software",
                      "adtran-cloud-platform-software-upgrade-service:reboot-device",
                      "adtran-cloud-platform-software-upgrade-service:commit-and-activate-software",
                      "adtran-cloud-platform-software-upgrade-service:activate-software",
                      "adtran-ffui-settings:modify-settings",
                      "adtran-ffui-settings:read-settings",
                      "adtran-cloud-platform-server-coordination:communicate-servers",
                      "adtran-cloud-platform-server-coordination:activate-servers",
                      "adtran-cloud-platform-server-coordination:delete-servers",
                      "adtran-cloud-platform-server-coordination:config-servers",
                      "adtran-cloud-platform-server-coordination:undeploy-servers",
                      "adtran-cloud-platform-server-coordination:deploy-servers",
                      "adtran-cloud-platform-server-coordination:deactivate-servers",
                      "adtran-auth-tech-support:generate-tech-support-challenges",
                      "adtran-auth-domain:modify-domains",
                      "adtran-cloud-platform-uiworkflow-topology:run-uiworkflow-topology",
                      "adtran-cloud-platform-uiworkflow-topology:read-uiworkflow-topology",
                      "adtran-cloud-platform-management-domains:modify-adtn-cld-pfrm-md",
                      "adtran-cloud-platform-management-domains:read-adtn-cld-pfrm-md",
                      "adtran-cloud-platform-elasticsearch-rollover-indices:rollover-cron-update",
                      "adtran-cloud-platform-elasticsearch-rollover-indices:read-adtn-cld-pfrm-es-rlvr-indcs",
                      "adtran-cloud-platform-elasticsearch-rollover-indices:modify-adtn-cld-pfrm-es-rlvr-indcs",
                      "adtran-nms-inventory:read-inventory",
                      "adtran-captive-portal-policers:modify-policer",
                      "adtran-captive-portal-policers:read-policer",
                      "adtran-ffui-workboards-yds:modify-workboards",
                      "adtran-ffui-workboards-yds:read-workboards",
                      "adtran-cloud-platform-event-workflow:event-clear",
                      "adtran-cloud-platform-event-workflow:event-read",
                      "adtran-cloud-platform-event-workflow:event-write",
                      "adtran-cloud-platform-event-workflow:read-event-workflow-transitions",
                      "adtran-cloud-platform-hardware:read-profile",
                      "adtran-yang-datastore:write-yang-model",
                      "adtran-yang-datastore:read-yang-model",
                      "adtran-vssm-gx-subscriber-data:read-subscriber-data",
                      "adtran-cloud-platform-dhcp-config:dhcp-config",
                      "adtran-cloud-platform-uiworkflow-jobs:read-action",
                      "adtran-cloud-platform-uiworkflow-jobs:read-run-job-transitions",
                      "adtran-cloud-platform-uiworkflow-jobs:run-job-with-parameters",
                      "adtran-cloud-platform-uiworkflow-jobs:get-job-context",
                      "adtran-cloud-platform-uiworkflow-jobs:run-job",
                      "adtran-cloud-platform-uiworkflow-jobs:read-job",
                      "adtran-cloud-platform-uiworkflow-jobs:read-trigger",
                      "adtran-cloud-platform-services:read-service",
                      "adtran-cloud-platform-services:modify-service",
                      "adtran-cloud-platform-software-upgrade-maintenance-service:get-upgrade-summary-status",
                      "adtran-cloud-platform-software-upgrade-maintenance-service:initiate-upgrade",
                      "adtran-cloud-platform-software-upgrade-maintenance-service:get-upgrade-status",
                      "adtran-cloud-platform-dhcp-subscriber-profile-mapping:modify-subscriber-profile-mapping",
                      "adtran-cloud-platform-dhcp-subscriber-profile-mapping:read-subscriber-profile-mapping",
                      "adtran-cloud-platform-profiles-pools:read-profile-pool",
                      "adtran-cloud-platform-profiles-pools:modify-profile-pools",
                      "adtran-cloud-platform-y1731-session-measurement-report:read-report",
                      "adtran-auth-user:modify-users",
                      "adtran-auth-user:administer-users",
                      "adtran-cloud-platform-bundles:read-adtn-cld-pfrm-bndl",
                      "adtran-cloud-platform-bundles:modify-adtn-cld-pfrm-bndl",
                      "adtran-cloud-platform-service-test-rfc2544:run-test-rfc2544",
                      "adtran-cloud-platform-service-test-rfc2544:read-rfc2544-tests",
                      "adtran-vssm-gx-handler:gx-handler",
                      "adtran-cloud-platform-deferred-intents:read-deferred-intents",
                      "adtran-cloud-platform-servers:modify-adtn-cld-pfrm-srvr",
                      "adtran-cloud-platform-servers:read-adtn-cld-pfrm-srvr",
                      "adtran-cloud-platform-data-centers:modify-adtn-cld-pfrm-data-ctr",
                      "adtran-cloud-platform-data-centers:read-adtn-cld-pfrm-data-ctr",
                      "adtran-dhcp-autoprov-info:read-adtn-dhcp-ap-info",
                      "adtran-cloud-platform-business-service-management:service-write",
                      "adtran-cloud-platform-business-service-management:service-read",
                      "adtran-cloud-platform-orchestration:read-orchestration-transitions",
                      "adtran-cloud-platform-orchestration:run-orchestration-create",
                      "adtran-cloud-platform-orchestration:run-orchestration-modify",
                      "adtran-cloud-platform-orchestration:run-orchestration-delete",
                      "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                      "adtran-auth-config:modify-config",
                      "adtran-cloud-platform-uiworkflow-servers:read-uiworkflow-servers",
                      "adtran-cloud-platform-search:administer-search",
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-job-manager:modify-adtn-cld-pfrm-job-mngr",
                      "adtran-cloud-platform-job-manager:read-adtn-cld-pfrm-job-mngr",
                      "adtran-manifests:read-adtn-manif",
                      "adtran-cloud-platform-vssm-diameter-statistics:diameter-stats-perm",
                      "adtran-captive-portal-sla-profiles:modify-sla-profile",
                      "adtran-captive-portal-sla-profiles:read-sla-profile",
                      "adtran-cloud-platform-uiworkflow-data-center-types:read-uiworkflow-data-center-type",
                      "adtran-cloud-platform-diagnostic-data-maintenance-service:get-diagnostic-job-info",
                      "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domain-types",
                      "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domains",
                      "adtran-auth-config-external:modify-config-ext",
                      "adtran-cloud-platform-uiworkflow-subscribers:read-uiworkflow-subscribers",
                      "adtran-cloud-platform-uiworkflow-subscribers:filter-uiworkflow-subscriber-resources",
                      "adtran-auth-accounting:read-accounting-logs",
                      "adtran-cloud-platform-subscriber-policy:read-subs-policy",
                      "adtran-cloud-platform-subscriber-policy:modify-subs-policy",
                      "adtran-captive-portal-content-providers:read-content-provider",
                      "adtran-captive-portal-content-providers:modify-content-provider",
                      "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                      "adtran-cloud-platform-devices:modify-adtn-cld-pfrm-dev",
                      "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev-inspect",
                      "adtran-nbi-pm:pm-config",
                      "adtran-nbi-pm:pm-read",
                      "adtran-cloud-platform-subscribers:read-adtn-cld-pfrm-subs",
                      "adtran-cloud-platform-subscribers:modify-adtn-cld-pfrm-subs",
                      "adtran-cloud-platform-profiles:config-profile",
                      "adtran-cloud-platform-profiles:read-profile",
                      "adtran-cloud-platform-ui-inspect:run-request",
                      "adtran-cloud-platform-ui-inspect:run-action",
                      "adtran-cloud-platform-alarm-logger:read-alarm-logs",
                      "adtran-server-proxy-by-name:server-read",
                      "adtran-cloud-platform-labels:read-labels",
                      "adtran-cloud-platform-labels:modify-labels",
                      "adtran-cloud-platform-event-description:configure-event-description",
                      "adtran-cloud-platform-event-description:read-event-description",
                      "adtran-cloud-platform-proxy-service:server-read",
                      "adtran-cloud-platform-proxy-service:server-write",
                      "adtran-cloud-platform-proxy-service:mount-point-read",
                      "adtran-cloud-platform-proxy-service:device-read",
                      "adtran-cloud-platform-proxy-service:device-write",
                      "adtran-cloud-platform-plugin:get-plugins",
                      "adtran-cloud-platform-plugin:reload-plugins",
                      "adtran-cloud-platform-information:read-information",
                      "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int-inspect",
                      "adtran-cloud-platform-interfaces:modify-adtn-cld-pfrm-int",
                      "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                      "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interface-type",
                      "adtran-cloud-platform-uiworkflow-interfaces:filter-uiworkflow-interface-resources",
                      "adtran-cloud-platform-uiworkflow-interfaces:filter-uiworkflow-physical-resources",
                      "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interfaces",
                      "adtran-cloud-platform-connection-monitor:aggregate-sessions-count",
                      "adtran-cloud-platform-system-monitor:read-system-monitor-node-status",
                      "adtran-cloud-platform-dfn-route-configuration:read-dfn-rt-configuration",
                      "adtran-cloud-platform-dfn-route-configuration:modify-dfn-rt-configuration",
                      "adtran-cloud-platform-uiworkflow-inspect:inspect-uiworkflow-profiles",
                      "adtran-cloud-platform-uiworkflow-inspect:inspect-uiworkflow-server",
                      "adtran-cloud-platform-uiworkflow-inspect:manage-uiworkflow-dpu",
                      "adtran-cloud-platform-uiworkflow-inspect:inspect-uiworkflow-devices",
                      "adtran-cloud-platform-uiworkflow-inspect:inspect-uiworkflow-interfaces",
                      "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
                      "adtran-cloud-platform-uiworkflow-behaviors:read-uiworkflow-behavior",
                      "adtran-cloud-platform-uiworkflow-behaviors:run-uiworkflow-behavior",
                      "adtran-cloud-platform-base-configurations:modify-adtn-cld-pfrm-bc",
                      "adtran-cloud-platform-base-configurations:read-adtn-cld-pfrm-bc",
                      "adtran-captive-portal-wholesale-helpers:remove-ont",
                      "adtran-captive-portal-wholesale-helpers:delete-ses-service",
                      "adtran-captive-portal-wholesale-helpers:decommission-l2s-device",
                      "adtran-captive-portal-wholesale-helpers:delete-dpu-mgmt-svcs-for-l2s",
                      "adtran-captive-portal-wholesale-helpers:decommission-dpu",
                      "adtran-captive-portal-wholesale-helpers:create-content-provider",
                      "adtran-captive-portal-wholesale-helpers:configure-interface",
                      "adtran-captive-portal-wholesale-helpers:delete-pon-system",
                      "adtran-captive-portal-wholesale-helpers:deactivate-service",
                      "adtran-captive-portal-wholesale-helpers:replace-ont",
                      "adtran-captive-portal-wholesale-helpers:activate-service",
                      "adtran-captive-portal-wholesale-helpers:add-ont",
                      "adtran-captive-portal-wholesale-helpers:commission-l2s-device",
                      "adtran-captive-portal-wholesale-helpers:create-pon-system",
                      "adtran-captive-portal-wholesale-helpers:delete-dpu-service",
                      "adtran-captive-portal-wholesale-helpers:create-l2s-device-mgmt-svcs",
                      "adtran-captive-portal-wholesale-helpers:delete-content-provider",
                      "adtran-captive-portal-wholesale-helpers:create-dpu-mgmt-svcs-for-l2s",
                      "adtran-captive-portal-wholesale-helpers:delete-l2s-service",
                      "adtran-captive-portal-wholesale-helpers:modify-ont",
                      "adtran-captive-portal-wholesale-helpers:update-pon",
                      "adtran-captive-portal-wholesale-helpers:update-pon-system",
                      "adtran-captive-portal-wholesale-helpers:get-pons-of-channel-partition",
                      "adtran-captive-portal-wholesale-helpers:delete-channel-partition",
                      "adtran-captive-portal-wholesale-helpers:create-l2s-service",
                      "adtran-captive-portal-wholesale-helpers:delete-l2s-device-mgmt-svcs",
                      "adtran-captive-portal-wholesale-helpers:create-dpu-service",
                      "adtran-captive-portal-wholesale-helpers:create-ses-service",
                      "adtran-captive-portal-wholesale-helpers:commission-dpu",
                      "adtran-auth-radius-attributes-mapping:modify-radius-attributes-mapping",
                      "adtran-cloud-platform-subscriber-accounting:write-config",
                      "adtran-cloud-platform-subscriber-accounting:read-config",
                      "adtran-nbi-ipaa-ssh:ipaa-config-ssh",
                      "adtran-system-config:modify-config",
                      "adtran-vssm-gx-session:gx-session",
                      "adtran-cloud-platform-restconf-streams:stream-read",
                      "adtran-cloud-platform-dhcp-lease:read-dhcp-lease",
                      "adtran-cloud-platform-device-credentials:modify-adtn-cld-pfrm-dev-crdls",
                      "adtran-cloud-platform-device-credentials:read-adtn-cld-pfrm-dev-crdls",
                      "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-service-profiles",
                      "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-content-providers",
                      "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-services",
                      "adtran-trap-forwarder:trap-config-read",
                      "adtran-trap-forwarder:trap-config-write",
                      "adtran-device-proxy:device-read",
                      "adtran-device-proxy:device-write",
                      "adtran-device-proxy:server-write",
                      "adtran-device-proxy:device-execute",
                      "adtran-cloud-platform-device-backup:modify-adtn-cld-pfrm-dev-bkup",
                      "adtran-cloud-platform-device-backup:read-adtn-cld-pfrm-dev-bkup",
                      "adtran-ffui-applications:read-apps-info",
                      "adtran-ffui-applications:write-apps-info",
                      "adtran-captive-portal-service-transition:read-service-transitions",
                      "adtran-cloud-platform-enablement-adapter:run-ebmt-adpt-trap-receiver",
                      "adtran-cloud-platform-dhcp-profiles:modify-dhcp-profile",
                      "adtran-cloud-platform-dhcp-profiles:read-dhcp-profile",
                      "adtran-dhcp-ont-activations:read-adtn-dhcp-ont-act",
                      "adtran-cloud-platform-service-test-y1731:run-test-y1731",
                      "adtran-cloud-platform-service-test-y1731:run-graph-y1731",
                      "adtran-cloud-platform-service-test-y1731:read-y1731-tests",
                      "adtran-cxui-types:read-adtn-cxui-sip-stats",
                      "adtran-cxui-types:read-adtn-cxui-dev",
                      "adtran-cxui-types:read-adtn-cxui-vqm",
                      "adtran-cxui-types:modify-adtn-cxui-dev",
                      "adtran-cxui-types:read-adtn-cxui-dev-stats",
                      "adtran-launchpad-login:modify-browser-page",
                      "adtran-launchpad-login:modify-login-page",
                      "adtran-cloud-platform-restconf-service:read-permission",
                      "adtran-cloud-platform-restconf-service:subscribe-notifications",
                      "adtran-cloud-platform-restconf-service:get-all-device-notifications",
                      "adtran-cloud-platform-restconf-service:read-schema",
                      "adtran-cloud-platform-restconf-service:write-config",
                      "adtran-cloud-platform-restconf-service:delete-config",
                      "adtran-cloud-platform-restconf-service:get-all-device-sessions",
                      "adtran-cloud-platform-restconf-service:unsubscribe-notifications",
                      "adtran-cloud-platform-restconf-service:read-session",
                      "adtran-cloud-platform-restconf-service:reboot-device",
                      "adtran-cloud-platform-restconf-service:execute-rpc",
                      "adtran-cloud-platform-restconf-service:close-session",
                      "adtran-cloud-platform-restconf-service:read-config",
                      "adtran-cloud-platform-restconf-service:reestablish-session",
                      "adtran-cloud-platform-restconf-service:open-session",
                      "adtran-cloud-platform-dfn-peer-configuration:modify-dfn-pr-configuration",
                      "adtran-cloud-platform-dfn-peer-configuration:read-dfn-pr-configuration",
                      "adtran-cloud-platform-uiworkflow-part-numbers:read-uiworkflow-part-number",
                      "adtran-cloud-platform-uiworkflow-data-centers:read-uiworkflow-data-centers",
                      "adtran-feature-flags:config-flag",
                      "adtran-cloud-platform-subscriber-session-status:read-subscriber-session",
                      "adtran-auth-group:modify-groups",
                      "adtran-cloud-platform-dfn-configuration:modify-dfn-configuration",
                      "adtran-cloud-platform-dfn-configuration:read-dfn-configuration",
                      "adtran-file-transfer:read-adtn-file-xfer-sftp-cfg",
                      "adtran-file-transfer:modify-adtn-file-xfer-sftp-cfg",
                      "adtran-cloud-platform-event-enrichment-helper:event-enrichment-helper",
                      "adtran-cloud-platform-uiworkflow-bundles:read-uiworkflow-bundle-type",
                      "adtran-cloud-platform-uiworkflow-bundles:read-uiworkflow-bundles",
                      "adtran-cloud-platform-uiworkflow-bundles:filter-uiworkflow-bundle-resources",
                      "adtran-cloud-platform-credentials:modify-adtn-cld-pfrm-crdls",
                      "adtran-cloud-platform-credentials:read-adtn-cld-pfrm-crdls",
                      "adtran-cloud-platform-deferred-intent-service:execute-intent-operation",
                      "adtran-vssm-gx-config:read-gx-apn-config",
                      "adtran-cloud-platform-settings:modify-adtn-cld-pfrm-set",
                      "adtran-cloud-platform-settings:read-adtn-cld-pfrm-set",
                      "adtran-cloud-platform-uiworkflow-device-credentials:read-adtn-cld-pfrm-uiw-dev-crdls",
                      "adtran-cloud-platform-subscriber-session-manager:config-sessions",
                      "adtran-cloud-platform-subscriber-session-manager:read-subscribers",
                      "adtran-ffui-workboards:read-workboards",
                      "adtran-ffui-workboards:modify-workboards",
                      "adtran-cloud-platform-vssm-gx-statistics:gx-stats-perm",
                      "adtran-nbi-sysmon:sysmon-config",
                      "adtran-nbi-sysmon:sysmon-read",
                      "adtran-nbi-ipaa:ipaa-config",
                      "adtran-cloud-platform-uiworkflow-profiles:read-profile",
                      "adtran-cloud-platform-management-domain-coordination:deploy-mgmt-domains",
                      "adtran-cloud-platform-management-domain-coordination:delete-mgmt-domains",
                      "adtran-cloud-platform-management-domain-coordination:activate-mgmt-domains",
                      "adtran-cloud-platform-management-domain-coordination:deactivate-mgmt-domains",
                      "adtran-cloud-platform-management-domain-coordination:undeploy-mgmt-domains",
                      "adtran-cloud-platform-management-domain-coordination:config-mgmt-domains",
                      "adtran-cloud-platform-maintenance-services:read-action-status",
                      "adtran-cloud-platform-maintenance-services:execute-action",
                      "adtran-captive-portal-services:deploy-service",
                      "adtran-captive-portal-services:activate-service",
                      "adtran-captive-portal-services:find-service",
                      "adtran-captive-portal-services:delete-service",
                      "adtran-captive-portal-services:read-service-status",
                      "adtran-captive-portal-services:undeploy-service",
                      "adtran-captive-portal-services:read-service",
                      "adtran-captive-portal-services:configure-service",
                      "adtran-captive-portal-services:modify-service",
                      "adtran-captive-portal-services:deactivate-service",
                      "adtran-cloud-platform-netconf-client-service:write-config",
                      "adtran-cloud-platform-netconf-client-service:execute-rpc",
                      "adtran-cloud-platform-netconf-client-service:subscribe-notifications",
                      "adtran-cloud-platform-netconf-client-service:unsubscribe-notifications",
                      "adtran-cloud-platform-netconf-client-service:read-session",
                      "adtran-cloud-platform-netconf-client-service:read-config",
                      "adtran-cloud-platform-netconf-client-service:delete-config",
                      "adtran-cloud-platform-netconf-client-service:get-all-device-sessions",
                      "adtran-cloud-platform-netconf-client-service:open-session",
                      "adtran-cloud-platform-netconf-client-service:close-session",
                      "adtran-cloud-platform-netconf-client-service:reboot-device",
                      "adtran-cloud-platform-netconf-client-service:reestablish-session",
                      "adtran-cloud-platform-netconf-client-service:read-schema",
                      "adtran-captive-portal-types:modify-server-credentials",
                      "adtran-captive-portal-types:activate-service",
                      "adtran-captive-portal-types:read-user-logs",
                      "adtran-captive-portal-types:read-activation-logs",
                      "adtran-captive-portal-types:read-server-credentials",
                      "adtran-dhcp-leases:read-adtn-dhcp-lease",
                      "adtran-cloud-platform-diameter-config:diameter-config"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "topology-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-services",
                      "adtran-cloud-platform-services:read-service",
                      "adtran-cloud-platform-uiworkflow-topology:run-uiworkflow-topology",
                      "adtran-cloud-platform-uiworkflow-topology:read-uiworkflow-topology"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "user-groups-admin",
                    "permissions": [
                      "adtran-auth-group:modify-groups",
                      "adtran-auth-user:modify-users",
                      "adtran-auth-permission:all"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "users-admin",
                    "permissions": [
                      "adtran-auth-user:modify-users",
                      "adtran-auth-permission:all",
                      "adtran-auth-user:administer-users"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "view-modify-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                      "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                      "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
                      "adtran-cloud-platform-labels:read-labels",
                      "adtran-cloud-platform-jobs:read-adtn-cld-pfrm-job",
                      "adtran-captive-portal-content-providers:read-content-provider",
                      "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                      "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                      "adtran-cloud-platform-bundles:read-adtn-cld-pfrm-bndl",
                      "adtran-cloud-platform-services:read-service",
                      "adtran-cloud-platform-profiles:read-profile",
                      "adtran-cloud-platform-servers:read-adtn-cld-pfrm-srvr",
                      "adtran-cloud-platform-management-domains:read-adtn-cld-pfrm-md",
                      "adtran-cloud-platform-data-centers:read-adtn-cld-pfrm-data-ctr",
                      "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions"
                    ]
                  },
                  {
                    "domains": [],
                    "name": "view-read-user",
                    "permissions": [
                      "adtran-cloud-platform-search:execute-search"
                    ]
                  }
                ]
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-auth-permission:permissions": {
      "get": {
        "tags": [
          "AAA Permission Groups"
        ],
        "summary": "Retrieve Module Permissions",
        "description": "This API is used to retrieve all permissions defined by various modules.\n\n| Attribute | Description |\n| --- | --- |\n| name | Name of the module. |\n| permissions | List of all APIs associated with the module. |",
        "operationId": "RetrieveModulePermissions",
        "parameters": [
          {
            "name": "Content-Type",
            "in": "header",
            "description": "",
            "required": true,
            "style": "simple",
            "schema": {
              "enum": [
                "application/json"
              ],
              "type": "string",
              "example": "application/json"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "access-control-allow-origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "content-encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              },
              "content-type": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "application/json; charset=UTF-8"
                    },
                    "example": "application/json; charset=UTF-8"
                  }
                }
              },
              "date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 May 2020 09:54:08 GMT"
                    },
                    "example": "Tue, 05 May 2020 09:54:08 GMT"
                  }
                }
              },
              "transfer-encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "x-frame-options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RetrieveModulePermissions-Success"
                },
                "example": {
                  "module": [
                    {
                      "name": "adtran-cloud-platform-uiworkflow",
                      "permission": [
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-notify",
                        "adtran-cloud-platform-uiworkflow:read-uiworkflow-catalog",
                        "adtran-cloud-platform-uiworkflow:run-uiworkflow-onboard-device",
                        "adtran-cloud-platform-uiworkflow:force-delete"
                      ]
                    },
                    {
                      "name": "adtran-auth-permission",
                      "permission": [
                        "adtran-auth-permission:all",
                        "adtran-auth-permission:anonymous"
                      ]
                    },
                    {
                      "name": "adtran-export-data-service",
                      "permission": [
                        "adtran-export-data-service:export-data-service"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-gfast-types",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-service",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-topics",
                      "permission": [
                        "adtran-cloud-platform-topics:configure-topics",
                        "adtran-cloud-platform-topics:read-topics"
                      ]
                    },
                    {
                      "name": "adtran-captive-portal-aoe",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-voice-protocol",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-multicast",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-jobs",
                      "permission": [
                        "adtran-cloud-platform-jobs:read-adtn-cld-pfrm-job",
                        "adtran-cloud-platform-jobs:modify-adtn-cld-pfrm-job"
                      ]
                    },
                    {
                      "name": "adtran-cxui-vqm-data",
                      "permission": []
                    },
                    {
                      "name": "adtran-cp-profiles-gfast-channel-threshold-profile-body",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-software-upgrade-service",
                      "permission": [
                        "adtran-cloud-platform-software-upgrade-service:download-software",
                        "adtran-cloud-platform-software-upgrade-service:commit-software",
                        "adtran-cloud-platform-software-upgrade-service:activate-software",
                        "adtran-cloud-platform-software-upgrade-service:commit-and-activate-software",
                        "adtran-cloud-platform-software-upgrade-service:reboot-device"
                      ]
                    },
                    {
                      "name": "adtran-ffui-settings",
                      "permission": [
                        "adtran-ffui-settings:modify-settings",
                        "adtran-ffui-settings:read-settings"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-server-coordination",
                      "permission": [
                        "adtran-cloud-platform-server-coordination:config-servers",
                        "adtran-cloud-platform-server-coordination:deploy-servers",
                        "adtran-cloud-platform-server-coordination:activate-servers",
                        "adtran-cloud-platform-server-coordination:undeploy-servers",
                        "adtran-cloud-platform-server-coordination:deactivate-servers",
                        "adtran-cloud-platform-server-coordination:delete-servers",
                        "adtran-cloud-platform-server-coordination:communicate-servers"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-job-upgrade",
                      "permission": []
                    },
                    {
                      "name": "adtran-captive-portal-service-work",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-uiworkflow-services-types",
                      "permission": []
                    },
                    {
                      "name": "adtran-captive-portal-service-profiles",
                      "permission": []
                    },
                    {
                      "name": "adtran-cp-profiles-gfast-handshake-profile-body",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-voice-dialing",
                      "permission": []
                    },
                    {
                      "name": "adtran-auth-tech-support",
                      "permission": [
                        "adtran-auth-tech-support:generate-tech-support-challenges"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-sip-trunk",
                      "permission": []
                    },
                    {
                      "name": "adtran-captive-portal-etos",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-diameter-route",
                      "permission": []
                    },
                    {
                      "name": "adtran-captive-portal-user-actions",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-pon-igmp",
                      "permission": []
                    },
                    {
                      "name": "adtran-auth-domain",
                      "permission": [
                        "adtran-auth-domain:modify-domains"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-settings-gfast",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-uiworkflow-topology",
                      "permission": [
                        "adtran-cloud-platform-uiworkflow-topology:read-uiworkflow-topology",
                        "adtran-cloud-platform-uiworkflow-topology:run-uiworkflow-topology"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-gfast",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-search-object-status",
                      "permission": []
                    },
                    {
                      "name": "adtran-device-proxy-notifications",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-management-domains",
                      "permission": [
                        "adtran-cloud-platform-management-domains:read-adtn-cld-pfrm-md",
                        "adtran-cloud-platform-management-domains:modify-adtn-cld-pfrm-md"
                      ]
                    },
                    {
                      "name": "adtran-captive-portal-server-credentials",
                      "permission": []
                    },
                    {
                      "name": "adtran-dpoe-node",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-venet-interface",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-elasticsearch-rollover-indices",
                      "permission": [
                        "adtran-cloud-platform-elasticsearch-rollover-indices:rollover-cron-update",
                        "adtran-cloud-platform-elasticsearch-rollover-indices:read-adtn-cld-pfrm-es-rlvr-indcs",
                        "adtran-cloud-platform-elasticsearch-rollover-indices:modify-adtn-cld-pfrm-es-rlvr-indcs"
                      ]
                    },
                    {
                      "name": "adtran-nms-inventory",
                      "permission": [
                        "adtran-nms-inventory:read-inventory"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-ethernet",
                      "permission": []
                    },
                    {
                      "name": "adtran-captive-portal-policers",
                      "permission": [
                        "adtran-captive-portal-policers:read-policer",
                        "adtran-captive-portal-policers:modify-policer"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-uiworkflow-management-domains-types",
                      "permission": []
                    },
                    {
                      "name": "adtran-ffui-workboards-yds",
                      "permission": [
                        "adtran-ffui-workboards-yds:modify-workboards",
                        "adtran-ffui-workboards-yds:read-workboards"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-event-workflow",
                      "permission": [
                        "adtran-cloud-platform-event-workflow:event-read",
                        "adtran-cloud-platform-event-workflow:event-write",
                        "adtran-cloud-platform-event-workflow:event-clear",
                        "adtran-cloud-platform-event-workflow:read-event-workflow-transitions"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-connections-yds",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-hardware",
                      "permission": [
                        "adtran-cloud-platform-hardware:read-profile"
                      ]
                    },
                    {
                      "name": "adtran-yang-datastore",
                      "permission": [
                        "adtran-yang-datastore:read-yang-model",
                        "adtran-yang-datastore:write-yang-model"
                      ]
                    },
                    {
                      "name": "adtran-vssm-gx-subscriber-data",
                      "permission": [
                        "adtran-vssm-gx-subscriber-data:read-subscriber-data"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-dhcp-config",
                      "permission": [
                        "adtran-cloud-platform-dhcp-config:dhcp-config"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-uiworkflow-jobs",
                      "permission": [
                        "adtran-cloud-platform-uiworkflow-jobs:read-job",
                        "adtran-cloud-platform-uiworkflow-jobs:read-trigger",
                        "adtran-cloud-platform-uiworkflow-jobs:read-action",
                        "adtran-cloud-platform-uiworkflow-jobs:get-job-context",
                        "adtran-cloud-platform-uiworkflow-jobs:run-job",
                        "adtran-cloud-platform-uiworkflow-jobs:run-job-with-parameters",
                        "adtran-cloud-platform-uiworkflow-jobs:read-run-job-transitions"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-services",
                      "permission": [
                        "adtran-cloud-platform-services:read-service",
                        "adtran-cloud-platform-services:modify-service"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-software-upgrade-maintenance-service",
                      "permission": [
                        "adtran-cloud-platform-software-upgrade-maintenance-service:initiate-upgrade",
                        "adtran-cloud-platform-software-upgrade-maintenance-service:get-upgrade-status",
                        "adtran-cloud-platform-software-upgrade-maintenance-service:get-upgrade-summary-status"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-dhcp-subscriber-profile-mapping",
                      "permission": [
                        "adtran-cloud-platform-dhcp-subscriber-profile-mapping:modify-subscriber-profile-mapping",
                        "adtran-cloud-platform-dhcp-subscriber-profile-mapping:read-subscriber-profile-mapping"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-maintenance-service-work",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-pools",
                      "permission": [
                        "adtran-cloud-platform-profiles-pools:read-profile-pool",
                        "adtran-cloud-platform-profiles-pools:modify-profile-pools"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-y1731-session-measurement-report",
                      "permission": [
                        "adtran-cloud-platform-y1731-session-measurement-report:read-report"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-entity-transformation-gfast-types",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-uiworkflow-force-actions",
                      "permission": []
                    },
                    {
                      "name": "adtran-cp-profiles-gfast-vectoring-profile-body",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-voice-codec",
                      "permission": []
                    },
                    {
                      "name": "adtran-auth-user",
                      "permission": [
                        "adtran-auth-user:modify-users",
                        "adtran-auth-user:administer-users"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-bundles",
                      "permission": [
                        "adtran-cloud-platform-bundles:read-adtn-cld-pfrm-bndl",
                        "adtran-cloud-platform-bundles:modify-adtn-cld-pfrm-bndl"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-service-test-rfc2544",
                      "permission": [
                        "adtran-cloud-platform-service-test-rfc2544:read-rfc2544-tests",
                        "adtran-cloud-platform-service-test-rfc2544:run-test-rfc2544"
                      ]
                    },
                    {
                      "name": "adtran-vssm-gx-handler",
                      "permission": [
                        "adtran-vssm-gx-handler:gx-handler"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-y1731-meg",
                      "permission": []
                    },
                    {
                      "name": "adtran-cxui-sip-stats",
                      "permission": []
                    },
                    {
                      "name": "adtran-device-proxy-snmp",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-ethernet-cfm",
                      "permission": []
                    },
                    {
                      "name": "adtran-nms-inventory-synchronization",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-device-connectivity",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-deferred-intents",
                      "permission": [
                        "adtran-cloud-platform-deferred-intents:read-deferred-intents"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-servers",
                      "permission": [
                        "adtran-cloud-platform-servers:read-adtn-cld-pfrm-srvr",
                        "adtran-cloud-platform-servers:modify-adtn-cld-pfrm-srvr"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-data-centers",
                      "permission": [
                        "adtran-cloud-platform-data-centers:read-adtn-cld-pfrm-data-ctr",
                        "adtran-cloud-platform-data-centers:modify-adtn-cld-pfrm-data-ctr"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-snmp",
                      "permission": []
                    },
                    {
                      "name": "adtran-captive-portal-activation-logs",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-vdsl",
                      "permission": []
                    },
                    {
                      "name": "adtran-dhcp-autoprov-info",
                      "permission": [
                        "adtran-dhcp-autoprov-info:read-adtn-dhcp-ap-info"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-business-service-management",
                      "permission": [
                        "adtran-cloud-platform-business-service-management:service-read",
                        "adtran-cloud-platform-business-service-management:service-write"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-service-segment",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-search-alarms",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-common-types",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-search-global-types",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-ancp",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-uiworkflow-credentials",
                      "permission": [
                        "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-plugin-ta5k-fttp-segment-data",
                      "permission": []
                    },
                    {
                      "name": "adtran-auth-config",
                      "permission": [
                        "adtran-auth-config:modify-config"
                      ]
                    },
                    {
                      "name": "adtran-aoe-access",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-uiworkflow-servers",
                      "permission": [
                        "adtran-cloud-platform-uiworkflow-servers:read-uiworkflow-servers"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-devices-ngpon2",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-uiworkflow-interface-types",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-search-accounting-logs",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-search",
                      "permission": [
                        "adtran-cloud-platform-search:execute-search",
                        "adtran-cloud-platform-search:administer-search"
                      ]
                    },
                    {
                      "name": "adtran-cp-profiles-gfast-retransmission-profile-body",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-scoped-policing",
                      "permission": []
                    },
                    {
                      "name": "adtran-manifests",
                      "permission": [
                        "adtran-manifests:read-adtn-manif"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-uiworkflow-bundles-types",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-entity-transformation",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-vssm-diameter-statistics",
                      "permission": [
                        "adtran-cloud-platform-vssm-diameter-statistics:diameter-stats-perm"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-table",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-services-sip",
                      "permission": []
                    },
                    {
                      "name": "adtran-captive-portal-sla-profiles",
                      "permission": [
                        "adtran-captive-portal-sla-profiles:read-sla-profile",
                        "adtran-captive-portal-sla-profiles:modify-sla-profile"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-ancp",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-uiworkflow-data-center-types",
                      "permission": [
                        "adtran-cloud-platform-uiworkflow-data-center-types:read-uiworkflow-data-center-type"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-diagnostic-data-maintenance-service",
                      "permission": [
                        "adtran-cloud-platform-diagnostic-data-maintenance-service:get-diagnostic-job-info"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-uiworkflow-management-domains",
                      "permission": [
                        "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domain-types",
                        "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domains"
                      ]
                    },
                    {
                      "name": "adtran-captive-portal-wholesale-activations",
                      "permission": []
                    },
                    {
                      "name": "adtran-auth-token",
                      "permission": []
                    },
                    {
                      "name": "adtran-auth-config-external",
                      "permission": [
                        "adtran-auth-config-external:modify-config-ext"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-trap-hosts",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-uiworkflow-subscribers",
                      "permission": [
                        "adtran-cloud-platform-uiworkflow-subscribers:read-uiworkflow-subscribers",
                        "adtran-cloud-platform-uiworkflow-subscribers:filter-uiworkflow-subscriber-resources"
                      ]
                    },
                    {
                      "name": "adtran-auth-accounting",
                      "permission": [
                        "adtran-auth-accounting:read-accounting-logs"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-uiworkflow-devices-gfast",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-tcont-name",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-subscriber-policy",
                      "permission": [
                        "adtran-cloud-platform-subscriber-policy:modify-subs-policy",
                        "adtran-cloud-platform-subscriber-policy:read-subs-policy"
                      ]
                    },
                    {
                      "name": "adtran-captive-portal-content-providers",
                      "permission": [
                        "adtran-captive-portal-content-providers:read-content-provider",
                        "adtran-captive-portal-content-providers:modify-content-provider"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-device-upgrade",
                      "permission": []
                    },
                    {
                      "name": "adtran-captive-portal-ncommand",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-devices",
                      "permission": [
                        "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                        "adtran-cloud-platform-devices:modify-adtn-cld-pfrm-dev"
                      ]
                    },
                    {
                      "name": "adtran-cp-profiles-gfast-rfi-profile-body",
                      "permission": []
                    },
                    {
                      "name": "adtran-nbi-pm",
                      "permission": [
                        "adtran-nbi-pm:pm-config",
                        "adtran-nbi-pm:pm-read"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-system",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-subscribers",
                      "permission": [
                        "adtran-cloud-platform-subscribers:read-adtn-cld-pfrm-subs",
                        "adtran-cloud-platform-subscribers:modify-adtn-cld-pfrm-subs"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-search-usage-tracking-data",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-profiles",
                      "permission": [
                        "adtran-cloud-platform-profiles:config-profile",
                        "adtran-cloud-platform-profiles:read-profile"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-aes-config",
                      "permission": []
                    },
                    {
                      "name": "adtran-cp-profiles-gfast-tdd-profile-body",
                      "permission": []
                    },
                    {
                      "name": "adtran-cassandra-manager",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-ui-inspect",
                      "permission": [
                        "adtran-cloud-platform-ui-inspect:run-request",
                        "adtran-cloud-platform-ui-inspect:run-action"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-mqtt-yds",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-devices-gfast",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-custom-index",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-alarm-logger",
                      "permission": [
                        "adtran-cloud-platform-alarm-logger:read-alarm-logs"
                      ]
                    },
                    {
                      "name": "adtran-server-proxy-by-name",
                      "permission": [
                        "adtran-server-proxy-by-name:server-read"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-labels",
                      "permission": [
                        "adtran-cloud-platform-labels:read-labels",
                        "adtran-cloud-platform-labels:modify-labels"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-default-host-interface",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-allocation",
                      "permission": []
                    },
                    {
                      "name": "adtran-device-proxy-snmp-transactions",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-traffic-management",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-uiworkflow-devices-ngpon2",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-event-description",
                      "permission": [
                        "adtran-cloud-platform-event-description:configure-event-description",
                        "adtran-cloud-platform-event-description:read-event-description"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-proxy-service",
                      "permission": [
                        "adtran-cloud-platform-proxy-service:device-read",
                        "adtran-cloud-platform-proxy-service:device-write",
                        "adtran-cloud-platform-proxy-service:mount-point-read",
                        "adtran-cloud-platform-proxy-service:server-read",
                        "adtran-cloud-platform-proxy-service:server-write"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-plugin",
                      "permission": [
                        "adtran-cloud-platform-plugin:reload-plugins",
                        "adtran-cloud-platform-plugin:get-plugins"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-information",
                      "permission": [
                        "adtran-cloud-platform-information:read-information"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-uiworkflow-jobs-types",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-interfaces",
                      "permission": [
                        "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                        "adtran-cloud-platform-interfaces:modify-adtn-cld-pfrm-int"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-user",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-search-all-labels",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-legacy-gpon",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-uiworkflow-interfaces",
                      "permission": [
                        "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interface-type",
                        "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interfaces",
                        "adtran-cloud-platform-uiworkflow-interfaces:filter-uiworkflow-interface-resources",
                        "adtran-cloud-platform-uiworkflow-interfaces:filter-uiworkflow-physical-resources"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-melt",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-lci-policy",
                      "permission": []
                    },
                    {
                      "name": "adtran-automation-portal-residential-activation",
                      "permission": []
                    },
                    {
                      "name": "adtran-cp-profiles-gfast-upstream-power-back-off-profile-body",
                      "permission": []
                    },
                    {
                      "name": "adtran-cp-profiles-gfast-data-rate-profile-body",
                      "permission": []
                    },
                    {
                      "name": "adtran-captive-portal-dpus",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-connection-monitor",
                      "permission": [
                        "adtran-cloud-platform-connection-monitor:aggregate-sessions-count"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-system-monitor",
                      "permission": [
                        "adtran-cloud-platform-system-monitor:read-system-monitor-node-status"
                      ]
                    },
                    {
                      "name": "adtran-cp-profiles-gfast-line-spectrum-profile-body",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-dfn-route-configuration",
                      "permission": [
                        "adtran-cloud-platform-dfn-route-configuration:modify-dfn-rt-configuration",
                        "adtran-cloud-platform-dfn-route-configuration:read-dfn-rt-configuration"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-uiworkflow-inspect",
                      "permission": [
                        "adtran-cloud-platform-uiworkflow-inspect:inspect-uiworkflow-devices",
                        "adtran-cloud-platform-uiworkflow-inspect:inspect-uiworkflow-profiles",
                        "adtran-cloud-platform-uiworkflow-inspect:inspect-uiworkflow-interfaces",
                        "adtran-cloud-platform-uiworkflow-inspect:inspect-uiworkflow-server",
                        "adtran-cloud-platform-uiworkflow-inspect:manage-uiworkflow-dpu"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-traffic-management-types",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-uiworkflow-devices",
                      "permission": [
                        "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-uiworkflow-behaviors",
                      "permission": [
                        "adtran-cloud-platform-uiworkflow-behaviors:run-uiworkflow-behavior",
                        "adtran-cloud-platform-uiworkflow-behaviors:read-uiworkflow-behavior"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-base-configurations",
                      "permission": [
                        "adtran-cloud-platform-base-configurations:read-adtn-cld-pfrm-bc",
                        "adtran-cloud-platform-base-configurations:modify-adtn-cld-pfrm-bc"
                      ]
                    },
                    {
                      "name": "adtran-captive-portal-wholesale-helpers",
                      "permission": [
                        "adtran-captive-portal-wholesale-helpers:configure-interface",
                        "adtran-captive-portal-wholesale-helpers:create-dpu-mgmt-svcs-for-l2s",
                        "adtran-captive-portal-wholesale-helpers:delete-dpu-mgmt-svcs-for-l2s",
                        "adtran-captive-portal-wholesale-helpers:commission-dpu",
                        "adtran-captive-portal-wholesale-helpers:decommission-dpu",
                        "adtran-captive-portal-wholesale-helpers:create-l2s-device-mgmt-svcs",
                        "adtran-captive-portal-wholesale-helpers:delete-l2s-device-mgmt-svcs",
                        "adtran-captive-portal-wholesale-helpers:commission-l2s-device",
                        "adtran-captive-portal-wholesale-helpers:decommission-l2s-device",
                        "adtran-captive-portal-wholesale-helpers:create-content-provider",
                        "adtran-captive-portal-wholesale-helpers:delete-content-provider",
                        "adtran-captive-portal-wholesale-helpers:create-l2s-service",
                        "adtran-captive-portal-wholesale-helpers:delete-l2s-service",
                        "adtran-captive-portal-wholesale-helpers:create-dpu-service",
                        "adtran-captive-portal-wholesale-helpers:delete-dpu-service",
                        "adtran-captive-portal-wholesale-helpers:activate-service",
                        "adtran-captive-portal-wholesale-helpers:deactivate-service",
                        "adtran-captive-portal-wholesale-helpers:add-ont",
                        "adtran-captive-portal-wholesale-helpers:modify-ont",
                        "adtran-captive-portal-wholesale-helpers:remove-ont",
                        "adtran-captive-portal-wholesale-helpers:replace-ont",
                        "adtran-captive-portal-wholesale-helpers:create-ses-service",
                        "adtran-captive-portal-wholesale-helpers:delete-ses-service",
                        "adtran-captive-portal-wholesale-helpers:create-pon-system",
                        "adtran-captive-portal-wholesale-helpers:update-pon-system",
                        "adtran-captive-portal-wholesale-helpers:update-pon",
                        "adtran-captive-portal-wholesale-helpers:delete-pon-system",
                        "adtran-captive-portal-wholesale-helpers:delete-channel-partition",
                        "adtran-captive-portal-wholesale-helpers:get-pons-of-channel-partition"
                      ]
                    },
                    {
                      "name": "adtran-cp-profiles-gfast-reinitialization-policy-profile-body",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-subscriber-accounting",
                      "permission": [
                        "adtran-cloud-platform-subscriber-accounting:write-config",
                        "adtran-cloud-platform-subscriber-accounting:read-config"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-file-transfer-server",
                      "permission": []
                    },
                    {
                      "name": "adtran-cp-profiles-gfast-fast-retrain-policy-profile-body",
                      "permission": []
                    },
                    {
                      "name": "adtran-nbi-ipaa-ssh",
                      "permission": [
                        "adtran-nbi-ipaa-ssh:ipaa-config-ssh"
                      ]
                    },
                    {
                      "name": "adtran-system-config",
                      "permission": [
                        "adtran-system-config:modify-config"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-voice-media",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-search-by-label",
                      "permission": []
                    },
                    {
                      "name": "adtran-cp-profiles-gfast-fast-rate-adaptation-profile-body",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-device-software-upgrade",
                      "permission": []
                    },
                    {
                      "name": "adtran-vssm-gx-session",
                      "permission": [
                        "adtran-vssm-gx-session:gx-session"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-uiworkflow-services-sip",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-restconf-streams",
                      "permission": [
                        "adtran-cloud-platform-restconf-streams:stream-read"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-dhcp-lease",
                      "permission": [
                        "adtran-cloud-platform-dhcp-lease:read-dhcp-lease"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-uiworkflow-inventory",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-plugin-adtn-1u-olt-yds-data",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-melt-types",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-alarm",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-device-credentials",
                      "permission": [
                        "adtran-cloud-platform-device-credentials:read-adtn-cld-pfrm-dev-crdls",
                        "adtran-cloud-platform-device-credentials:modify-adtn-cld-pfrm-dev-crdls"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-uiworkflow-services",
                      "permission": [
                        "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-service-profiles",
                        "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-services",
                        "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-content-providers"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-search-object-filter",
                      "permission": []
                    },
                    {
                      "name": "adtran-cp-profiles-gfast-vdsl-crosstalk-detection-profile-body",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-uiworkflow-servers-types",
                      "permission": []
                    },
                    {
                      "name": "adtran-trap-forwarder",
                      "permission": [
                        "adtran-trap-forwarder:trap-config-read",
                        "adtran-trap-forwarder:trap-config-write"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-plugin-service-segment-data",
                      "permission": []
                    },
                    {
                      "name": "adtran-device-proxy",
                      "permission": [
                        "adtran-device-proxy:device-read",
                        "adtran-device-proxy:device-write",
                        "adtran-device-proxy:device-execute",
                        "adtran-device-proxy:server-write"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-device-backup",
                      "permission": [
                        "adtran-cloud-platform-device-backup:read-adtn-cld-pfrm-dev-bkup",
                        "adtran-cloud-platform-device-backup:modify-adtn-cld-pfrm-dev-bkup"
                      ]
                    },
                    {
                      "name": "adtran-ffui-applications",
                      "permission": [
                        "adtran-ffui-applications:read-apps-info",
                        "adtran-ffui-applications:write-apps-info"
                      ]
                    },
                    {
                      "name": "adtran-device-proxy-rest",
                      "permission": []
                    },
                    {
                      "name": "adtran-captive-portal-service-transition",
                      "permission": [
                        "adtran-captive-portal-service-transition:read-service-transitions"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-enablement-adapter",
                      "permission": [
                        "adtran-cloud-platform-enablement-adapter:run-ebmt-adpt-trap-receiver"
                      ]
                    },
                    {
                      "name": "adtran-rest-extensions",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-search-performance-monitoring-data",
                      "permission": []
                    },
                    {
                      "name": "adtran-cp-profiles-gfast-noise-margin-profile-body",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-dhcp-profiles",
                      "permission": [
                        "adtran-cloud-platform-dhcp-profiles:modify-dhcp-profile",
                        "adtran-cloud-platform-dhcp-profiles:read-dhcp-profile"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-plugin-adtn-1u-olt-segment-data",
                      "permission": []
                    },
                    {
                      "name": "adtran-nbi-inventory",
                      "permission": []
                    },
                    {
                      "name": "adtran-dhcp-ont-activations",
                      "permission": [
                        "adtran-dhcp-ont-activations:read-adtn-dhcp-ont-act"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-service-test-y1731",
                      "permission": [
                        "adtran-cloud-platform-service-test-y1731:read-y1731-tests",
                        "adtran-cloud-platform-service-test-y1731:run-test-y1731",
                        "adtran-cloud-platform-service-test-y1731:run-graph-y1731"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-voice-call-feature",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-services-cfm",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-multicast-vpn",
                      "permission": []
                    },
                    {
                      "name": "adtran-cxui-device",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-device-types",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-external-sensor-configuration",
                      "permission": []
                    },
                    {
                      "name": "adtran-cxui-types",
                      "permission": [
                        "adtran-cxui-types:read-adtn-cxui-dev",
                        "adtran-cxui-types:read-adtn-cxui-dev-stats",
                        "adtran-cxui-types:modify-adtn-cxui-dev",
                        "adtran-cxui-types:read-adtn-cxui-vqm",
                        "adtran-cxui-types:read-adtn-cxui-sip-stats"
                      ]
                    },
                    {
                      "name": "adtran-launchpad-login",
                      "permission": [
                        "adtran-launchpad-login:modify-login-page",
                        "adtran-launchpad-login:modify-browser-page"
                      ]
                    },
                    {
                      "name": "adtran-captive-portal-business-activations",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-grouping",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-restconf-service",
                      "permission": [
                        "adtran-cloud-platform-restconf-service:read-permission",
                        "adtran-cloud-platform-restconf-service:open-session",
                        "adtran-cloud-platform-restconf-service:close-session",
                        "adtran-cloud-platform-restconf-service:read-session",
                        "adtran-cloud-platform-restconf-service:read-config",
                        "adtran-cloud-platform-restconf-service:write-config",
                        "adtran-cloud-platform-restconf-service:delete-config",
                        "adtran-cloud-platform-restconf-service:subscribe-notifications",
                        "adtran-cloud-platform-restconf-service:unsubscribe-notifications",
                        "adtran-cloud-platform-restconf-service:read-schema",
                        "adtran-cloud-platform-restconf-service:reestablish-session",
                        "adtran-cloud-platform-restconf-service:get-all-device-sessions",
                        "adtran-cloud-platform-restconf-service:get-all-device-notifications",
                        "adtran-cloud-platform-restconf-service:reboot-device",
                        "adtran-cloud-platform-restconf-service:execute-rpc"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-devices-activate",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-dfn-peer-configuration",
                      "permission": [
                        "adtran-cloud-platform-dfn-peer-configuration:modify-dfn-pr-configuration",
                        "adtran-cloud-platform-dfn-peer-configuration:read-dfn-pr-configuration"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-uiworkflow-part-numbers",
                      "permission": [
                        "adtran-cloud-platform-uiworkflow-part-numbers:read-uiworkflow-part-number"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-settings-deferred-intent",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-overrides",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-uiworkflow-data-centers",
                      "permission": [
                        "adtran-cloud-platform-uiworkflow-data-centers:read-uiworkflow-data-centers"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-authentication",
                      "permission": []
                    },
                    {
                      "name": "adtran-feature-flags",
                      "permission": [
                        "adtran-feature-flags:config-flag"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-conditional",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-service-shaper",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-subscriber-session-status",
                      "permission": [
                        "adtran-cloud-platform-subscriber-session-status:read-subscriber-session"
                      ]
                    },
                    {
                      "name": "adtran-auth-group",
                      "permission": [
                        "adtran-auth-group:modify-groups"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-dfn-configuration",
                      "permission": [
                        "adtran-cloud-platform-dfn-configuration:modify-dfn-configuration",
                        "adtran-cloud-platform-dfn-configuration:read-dfn-configuration"
                      ]
                    },
                    {
                      "name": "adtran-ffui-types",
                      "permission": []
                    },
                    {
                      "name": "adtran-vssm-radius-config",
                      "permission": []
                    },
                    {
                      "name": "adtran-file-transfer",
                      "permission": [
                        "adtran-file-transfer:read-adtn-file-xfer-sftp-cfg",
                        "adtran-file-transfer:modify-adtn-file-xfer-sftp-cfg"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-event-enrichment-helper",
                      "permission": [
                        "adtran-cloud-platform-event-enrichment-helper:event-enrichment-helper"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-scoped-shaping",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-uiworkflow-bundles",
                      "permission": [
                        "adtran-cloud-platform-uiworkflow-bundles:read-uiworkflow-bundle-type",
                        "adtran-cloud-platform-uiworkflow-bundles:read-uiworkflow-bundles",
                        "adtran-cloud-platform-uiworkflow-bundles:filter-uiworkflow-bundle-resources"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-event-config",
                      "permission": []
                    },
                    {
                      "name": "adtran-pma-adapter",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-credentials",
                      "permission": [
                        "adtran-cloud-platform-credentials:read-adtn-cld-pfrm-crdls",
                        "adtran-cloud-platform-credentials:modify-adtn-cld-pfrm-crdls"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-plugin-adtn-602x-onu-segment-data",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-tcont",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-plugin-device-netconf-lock-state",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-job-config",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-deferred-intent-service",
                      "permission": [
                        "adtran-cloud-platform-deferred-intent-service:execute-intent-operation"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-types",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-usage-report",
                      "permission": []
                    },
                    {
                      "name": "adtran-vssm-gx-config",
                      "permission": [
                        "adtran-vssm-gx-config:read-gx-apn-config"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-sse-client",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-settings",
                      "permission": [
                        "adtran-cloud-platform-settings:read-adtn-cld-pfrm-set",
                        "adtran-cloud-platform-settings:modify-adtn-cld-pfrm-set"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-uiworkflow-device-credentials",
                      "permission": [
                        "adtran-cloud-platform-uiworkflow-device-credentials:read-adtn-cld-pfrm-uiw-dev-crdls"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-bulk-alarm-count",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-uiworkflow-services-cfm",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-subscriber-access-control",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-uiworkflow-devices-activate",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-configuration-storage",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-subscriber-session-manager",
                      "permission": [
                        "adtran-cloud-platform-subscriber-session-manager:config-sessions",
                        "adtran-cloud-platform-subscriber-session-manager:read-subscribers"
                      ]
                    },
                    {
                      "name": "adtran-device-connectivity",
                      "permission": []
                    },
                    {
                      "name": "adtran-ffui-workboards",
                      "permission": [
                        "adtran-ffui-workboards:modify-workboards",
                        "adtran-ffui-workboards:read-workboards"
                      ]
                    },
                    {
                      "name": "adtran-cxui-vqm-interface",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-vssm-gx-statistics",
                      "permission": [
                        "adtran-cloud-platform-vssm-gx-statistics:gx-stats-perm"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-pon-multicast",
                      "permission": []
                    },
                    {
                      "name": "adtran-nbi-sysmon",
                      "permission": [
                        "adtran-nbi-sysmon:sysmon-config",
                        "adtran-nbi-sysmon:sysmon-read"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-marshal-plugins",
                      "permission": []
                    },
                    {
                      "name": "adtran-billing-system-management",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-inventory",
                      "permission": []
                    },
                    {
                      "name": "adtran-cxui-device-stats",
                      "permission": []
                    },
                    {
                      "name": "adtran-nbi-ipaa",
                      "permission": [
                        "adtran-nbi-ipaa:ipaa-config"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-uiworkflow-profiles",
                      "permission": [
                        "adtran-cloud-platform-uiworkflow-profiles:read-profile"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-network-walk-job",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-pon-port",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-management-domain-coordination",
                      "permission": [
                        "adtran-cloud-platform-management-domain-coordination:config-mgmt-domains",
                        "adtran-cloud-platform-management-domain-coordination:deploy-mgmt-domains",
                        "adtran-cloud-platform-management-domain-coordination:activate-mgmt-domains",
                        "adtran-cloud-platform-management-domain-coordination:delete-mgmt-domains",
                        "adtran-cloud-platform-management-domain-coordination:undeploy-mgmt-domains",
                        "adtran-cloud-platform-management-domain-coordination:deactivate-mgmt-domains"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-search-labels-by-object",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-maintenance-services",
                      "permission": [
                        "adtran-cloud-platform-maintenance-services:execute-action",
                        "adtran-cloud-platform-maintenance-services:read-action-status"
                      ]
                    },
                    {
                      "name": "adtran-captive-portal-services",
                      "permission": [
                        "adtran-captive-portal-services:read-service",
                        "adtran-captive-portal-services:modify-service",
                        "adtran-captive-portal-services:read-service-status",
                        "adtran-captive-portal-services:configure-service",
                        "adtran-captive-portal-services:deploy-service",
                        "adtran-captive-portal-services:activate-service",
                        "adtran-captive-portal-services:deactivate-service",
                        "adtran-captive-portal-services:undeploy-service",
                        "adtran-captive-portal-services:delete-service",
                        "adtran-captive-portal-services:find-service"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-profiles-device-software",
                      "permission": []
                    },
                    {
                      "name": "adtran-device-proxy-by-name",
                      "permission": []
                    },
                    {
                      "name": "adtran-cp-profiles-gfast-line-threshold-profile-body",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-netconf-client-service",
                      "permission": [
                        "adtran-cloud-platform-netconf-client-service:open-session",
                        "adtran-cloud-platform-netconf-client-service:close-session",
                        "adtran-cloud-platform-netconf-client-service:read-session",
                        "adtran-cloud-platform-netconf-client-service:read-config",
                        "adtran-cloud-platform-netconf-client-service:write-config",
                        "adtran-cloud-platform-netconf-client-service:delete-config",
                        "adtran-cloud-platform-netconf-client-service:subscribe-notifications",
                        "adtran-cloud-platform-netconf-client-service:unsubscribe-notifications",
                        "adtran-cloud-platform-netconf-client-service:read-schema",
                        "adtran-cloud-platform-netconf-client-service:reestablish-session",
                        "adtran-cloud-platform-netconf-client-service:get-all-device-sessions",
                        "adtran-cloud-platform-netconf-client-service:reboot-device",
                        "adtran-cloud-platform-netconf-client-service:execute-rpc"
                      ]
                    },
                    {
                      "name": "adtran-captive-portal-types",
                      "permission": [
                        "adtran-captive-portal-types:read-server-credentials",
                        "adtran-captive-portal-types:modify-server-credentials",
                        "adtran-captive-portal-types:read-activation-logs",
                        "adtran-captive-portal-types:read-user-logs",
                        "adtran-captive-portal-types:activate-service"
                      ]
                    },
                    {
                      "name": "adtran-dhcp-leases",
                      "permission": [
                        "adtran-dhcp-leases:read-adtn-dhcp-lease"
                      ]
                    },
                    {
                      "name": "adtran-cloud-platform-search-global",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-event-config",
                      "permission": []
                    },
                    {
                      "name": "adtran-cloud-platform-diameter-config",
                      "permission": [
                        "adtran-cloud-platform-diameter-config:diameter-config"
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-auth-user:create-user": {
      "post": {
        "tags": [
          "AAA Users"
        ],
        "summary": "Create User Account",
        "description": "Create a new user by supplying a **unique** username and a password for authentication.\n\n| Attribute | Description |\n| --- | --- |\n| username | **Required:** A unique username of the user. |\n| password | **Required:** Password which will authenticate the user. |\n| expiration-mode | **Optional** Describes how to handle the expiration date on the newly created account. If omitted, this will default to the configured value in the above `Modifying Password Security Setting` request.  <br/><b>Possible Values: </b> <br/><b>expire-now: </b> <i>Create the account as already expired</i>  <br/><b>expire-policy:</b> <i> Set the expiration date according to configured system policy </i> <br/><b>expire-never:</b><i> Create an account which will never expire </i> |",
        "operationId": "CreateUserAccount",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateUserAccountRequest"
              },
              "example": {
                "username": "SampleUser",
                "password": "SuperSecret1!"
              }
            }
          },
          "required": true
        },
        "responses": {
          "409": {
            "description": "Conflict",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 08 May 2020 10:49:17 GMT"
                    },
                    "example": "Fri, 08 May 2020 10:49:17 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "34"
                    },
                    "example": "34"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/CreateUserAccount-Useralreadyexists1"
                },
                "example": {
                  "message": "User already exists."
                }
              }
            }
          },
          "201": {
            "description": "Created",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 May 2020 11:31:13 GMT"
                    },
                    "example": "Tue, 05 May 2020 11:31:13 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "0"
                    },
                    "example": "0"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {}
          },
          "400": {
            "description": "Bad Request",
            "headers": {
              "access-control-allow-origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "content-length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "145"
                    },
                    "example": "145"
                  }
                }
              },
              "content-type": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "application/json; charset=UTF-8"
                    },
                    "example": "application/json; charset=UTF-8"
                  }
                }
              },
              "date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 May 2020 09:22:24 GMT"
                    },
                    "example": "Tue, 05 May 2020 09:22:24 GMT"
                  }
                }
              },
              "x-frame-options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CreateUserAccount-MissingMandatoryparam1"
                },
                "example": {
                  "message": "Invalid JSON Content Fields Provided: No usable value for password\nDid not find value which can be converted into java.lang.String"
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-auth-user:override-password": {
      "post": {
        "tags": [
          "AAA Users"
        ],
        "summary": "Override Password",
        "description": "Overrides user's password used for authentication. It can only be used by the ADMIN user.\n\n| Attribute | Description |\n| --- | --- |\n| username | **Required:** A unique username of the user. |\n| password | **Required:** New password which will authenticate the user. |",
        "operationId": "OverridePassword",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OverridePasswordRequest"
              },
              "example": {
                "username": "SampleUser",
                "password": "SuperSecret1!"
              }
            }
          },
          "required": true
        },
        "responses": {
          "404": {
            "description": "Not Found",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 08 May 2020 10:50:54 GMT"
                    },
                    "example": "Fri, 08 May 2020 10:50:54 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "46"
                    },
                    "example": "46"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/OverridePassword-Userdoesnotexist1"
                },
                "example": {
                  "message": "User Test-Accoun does not exist."
                }
              }
            }
          },
          "200": {
            "description": "OK",
            "headers": {
              "access-control-allow-origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "content-length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "0"
                    },
                    "example": "0"
                  }
                }
              },
              "date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 May 2020 09:24:50 GMT"
                    },
                    "example": "Tue, 05 May 2020 09:24:50 GMT"
                  }
                }
              },
              "x-frame-options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {}
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-auth-user:reset-password": {
      "post": {
        "tags": [
          "AAA Users"
        ],
        "summary": "Reset Password",
        "description": "Allows a user to reset password in case the user has forgotten the password or it has expired.\n\n| Attribute | Description |\n| --- | --- |\n| username | **Required:** Username for which password reset request is initiated. |\n| old-password | **Required:** Old password to authenticate the user. |\n| new-password | **Required:** New password which will replace old-password. |",
        "operationId": "ResetPassword",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ResetPasswordRequest"
              },
              "example": {
                "username": "SampleUser",
                "old-password": "SuperSecret1!",
                "new-password": "SuperSecret2!"
              }
            }
          },
          "required": true
        },
        "responses": {
          "401": {
            "description": "Unauthorized",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 08 May 2020 10:51:59 GMT"
                    },
                    "example": "Fri, 08 May 2020 10:51:59 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "159"
                    },
                    "example": "159"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/ResetPassword-Invalidusernameorpassword1"
                },
                "example": {
                  "message": "Supplied username or password is incorrect. Please try again. Multiple failed login attempts may result in your account being temporarily locked."
                }
              }
            }
          },
          "200": {
            "description": "OK",
            "headers": {
              "access-control-allow-origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "content-length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "0"
                    },
                    "example": "0"
                  }
                }
              },
              "date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 May 2020 09:25:19 GMT"
                    },
                    "example": "Tue, 05 May 2020 09:25:19 GMT"
                  }
                }
              },
              "x-frame-options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {}
          },
          "400": {
            "description": "Bad Request",
            "headers": {
              "access-control-allow-origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "content-length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "51"
                    },
                    "example": "51"
                  }
                }
              },
              "content-type": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "application/json; charset=UTF-8"
                    },
                    "example": "application/json; charset=UTF-8"
                  }
                }
              },
              "date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 May 2020 09:26:03 GMT"
                    },
                    "example": "Tue, 05 May 2020 09:26:03 GMT"
                  }
                }
              },
              "x-frame-options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ResetPassword-Invalidnewpassword1"
                },
                "example": {
                  "message": "minimum password length should be : 8"
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-auth-user:users/user=SampleUser": {
      "put": {
        "tags": [
          "AAA Users"
        ],
        "summary": "Assign User to User Group",
        "description": "Assigns user to an existing user group, with the user name specified as a URL parameter.\n\n| Attribute | Description |\n| --- | --- |\n| group | **Required** A list of groups to assign to this user. |",
        "operationId": "AssignUsertoUserGroup",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AssignUsertoUserGroupRequest"
              },
              "example": {
                "group": [
                  "users-admin"
                ]
              }
            }
          },
          "required": true
        },
        "responses": {
          "204": {
            "description": "No Content",
            "headers": {
              "access-control-allow-origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "content-length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "0"
                    },
                    "example": "0"
                  }
                }
              },
              "date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 May 2020 09:44:57 GMT"
                    },
                    "example": "Tue, 05 May 2020 09:44:57 GMT"
                  }
                }
              },
              "x-frame-options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {}
          }
        },
        "deprecated": false
      },
      "get": {
        "tags": [
          "AAA Users"
        ],
        "summary": "Get User",
        "description": "A list of user associated permissions and other settings. Returns a list of attributes as a response. The user name is specified as a URL parameter.\n\n| Attribute | Description |\n| --- | --- |\n| username | The unique username of the user. |\n| account-status | The current status of the user account.   <br/> <b> Default value: </b> <i> active</i><br/> <b> Possible values: </b> <i>active, locked, expired or deactivated</i> |\n| password-expiration-date | The time at which user's account-password expires.  <br/> <b>Date Time Format: </b> <i> yyyy-MM-dd'T'HH:mm:ss.ff'Z' eg. `2020-05-02T22:30:00Z` </i> |\n| last-login-time |Timestamp of the last login. <br/> <b>Date Time Format: </b> <i>yyyy-MM-dd'T'HH:mm:ss.ff'Z' eg. `2020-05-02T22:30:00Z`</i> |\n| failed-login-attempts | The number of times the user has failed to log in since the last successful login. <br/> <b> Date Time Format: </b> <i>yyyy-MM-dd'T'HH:mm:ss.ff'Z' eg. `2020-05-02T22:30:00Z`</i> |\n| password-expiry-days | Number of days after which user's password will expire. -1 indicates that password never expires.<br/> <b> Default value: </b> <i> 90</i><br/> <b> Possible values: </b> <i>  -1, 1..180 </i> |\n| max-failed-logins | Maximum number of consecutive times an incorrect password is allowed to be entered before the user's account will be locked. A value of 0 means that an unlimited number of failed attempts are allowed.<br/> <b> Default value: </b> <i> 5</i><br/> <b> Possible values </b> <i> 1...256 </i> |\n| logged-in | The current logged-in status of the user.<br/> <b> Default value: </b> <i> false</i><br/> <b> Possible values: </b> <i>true or false </i> |\n| password-notice-days | Number of days prior to password expiration when user will be notified that his password is going to expire.<br/> <b> Default value: </b> <i> 5</i><br/> <b> Possible values: </b> <i> 1..30 </i> |\n| account-lock-period | Amount of time (in minutes) for which user's account gets locked. <br/> <b> Default value: </b> <i> 5</i><br/> <b> Possible values: </b> <i> 1...65535 </i> |\n| authorization-mode | The mode for user-authorization in priority order. |\n| authentication-mode | The mode for user-authentication in priority order. |\n| group | A list of groups this user is assigned to. |\n| account-expiration-date | Time at which user's account expires. This value is an empty string, if this account will not expire.   <br/> <b> Date Time Format: </b> <i>yyyy-MM-dd'T'HH:mm:ss.ff'Z' eg. `2020-05-02T22:30:00Z`</i> |\n| user-type | Indicates if user is logged in with internal or external policy. <br/>  <b> Possible values: </b> <i>internal or external </i> |",
        "operationId": "GetUser",
        "parameters": [
          {
            "name": "Content-Type",
            "in": "header",
            "description": "",
            "required": true,
            "style": "simple",
            "schema": {
              "enum": [
                "application/json"
              ],
              "type": "string",
              "example": "application/json"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "access-control-allow-origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "content-length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "402"
                    },
                    "example": "402"
                  }
                }
              },
              "content-type": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "application/json; charset=UTF-8"
                    },
                    "example": "application/json; charset=UTF-8"
                  }
                }
              },
              "date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 May 2020 09:29:08 GMT"
                    },
                    "example": "Tue, 05 May 2020 09:29:08 GMT"
                  }
                }
              },
              "x-frame-options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RetrieveUsername-Success"
                },
                "example": {
                  "user-type": "internal",
                  "last-login-time": "2020-05-05T09:25:19.807Z",
                  "username": "Test-Account",
                  "account-status": "active",
                  "password-expiration-date": "2020-08-03T09:25:19.850Z",
                  "failed-login-attempts": 0,
                  "password-expiry-days": 90,
                  "account-expiration-date": "",
                  "max-failed-logins": 5,
                  "logged-in": false,
                  "password-notice-days": 5,
                  "account-lock-period": 5,
                  "authorization-mode": [
                    "internal"
                  ],
                  "authentication-mode": [
                    "internal"
                  ],
                  "group": []
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "headers": {
              "access-control-allow-origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "content-length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "0"
                    },
                    "example": "0"
                  }
                }
              },
              "date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 May 2020 09:46:25 GMT"
                    },
                    "example": "Tue, 05 May 2020 09:46:25 GMT"
                  }
                }
              },
              "x-frame-options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {}
          }
        },
        "deprecated": false
      },
      "patch": {
        "tags": [
          "AAA Users"
        ],
        "summary": "Modify User - AAA Modes",
        "description": "This API is used to modify/update the authentication mode of the user whose name is passed in the query parameter of the URL.\n\n<br>\nRequest query parameter details - \n<br>\n\n| Attribute | Description |\n| --- | --- |\n| user | **Required** A unique username of the user. |\n\n<br>\nRequest body details - \n<br>\n\n| Attribute | Description |\n| --- | --- |\n| authentication-mode | The mode for user authentication in priority order.    <br/> <b> Possible values :</b> <i> internal, radius, tacacsplus</i> <br/> <b> Default value: </b> <i>internal</i>|\n| authorization-mode | The mode for user authorization in priority order.    <br/> <b> Possible values :</b> <i> internal, radius, tacacsplus</i> <br/> <b> Default value: </b> <i>internal</i>|\n| accounting-mode | The mode for user accounting in priority order.    <br/> <b> Possible values :</b> <i> internal, radius, tacacsplus</i> <br/> <b> Default value: </b> <i>internal</i>|",
        "operationId": "ModifyUser-AAAModes",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ModifyUser-AAAModesRequest"
              },
              "example": {
                "authentication-mode": [
                  "tacacsplus",
                  "internal"
                ],
                "authorization-mode": [
                  "tacacsplus",
                  "internal"
                ],
                "accounting-mode": [
                  "radius"
                ]
              }
            }
          },
          "required": true
        },
        "responses": {
          "204": {
            "description": "No Content",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 Jan 2021 17:17:31 GMT"
                    },
                    "example": "Tue, 05 Jan 2021 17:17:31 GMT"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              }
            },
            "content": {}
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-auth-user:users": {
      "get": {
        "tags": [
          "AAA Users"
        ],
        "summary": "Get All Users",
        "description": "A list of created users and their associated permissions and other settings. Returns a list of attribute as a response.\n\n| Attribute | Description |\n| --- | --- |\n| username | The unique username of the user. |\n| account-status | The current status of the user account.  <br/> <b> Default value: </b> <i> active</i><br/> <b> Possible values: </b> <i>active, locked, expired or deactivated</i> |\n| password-expiration-date | The time at which user's account-password expires.  <br/> <b> Date Time Format: </b> <i> yyyy-MM-dd'T'HH:mm:ss.ff'Z' eg. `2020-05-02T22:30:00Z` </i> |\n| last-login-time | Timestamp of the last login. <br/> <b>Date Time Format: </b> <i> yyyy-MM-dd'T'HH:mm:ss.ff'Z' eg. `2020-05-02T22:30:00Z` </i> |\n| failed-login-attempts | The number of times the user has failed to log in since the last successful login. <br/> <b>Date Time Format: </b> <i> yyyy-MM-dd'T'HH:mm:ss.ff'Z' eg. `2020-05-02T22:30:00Z` </i> |\n| password-expiry-days | Number of days after which user's password will expire. -1 indicates that password never expires.<br/> <b> Default value: </b> <i> 90</i><br/> <b> Possible values: </b> <i>  -1, 1..180 </i> |\n| max-failed-logins | Maximum number of consecutive times an incorrect password is allowed to be entered before the user's account will be locked. A value of 0 means that an unlimited number of failed attempts are allowed.<br/> <b> Default value: </b> <i> 5</i><br/> <b> Possible values </b> <i> 1...256 </i> |\n| logged-in | The current logged-in status of the user.<br/> <b> Default value: </b> <i> false</i><br/> <b> Possible values: </b> <i> true or false </i> |\n| password-notice-days | Number of days prior to password expiration when user will be notified that his password is going to expire.<br/> <b> Default value: </b> <i> 5</i><br/> <b> Possible values: </b> <i> 1..30 </i> |\n| account-lock-period  | Amount of time (in minutes) for which user's account gets locked. <br/> <b> Default value: </b> <i> 5</i><br/> <b> Possible values: </b> <i> 1...65535 </i> |\n| authorization-mode | The mode for user-authorization in priority order. |\n| authentication-mode | The mode for user-authentication in priority order. |\n| group | A list of groups this user is assigned to. |\n| account-expiration-date | Time at which user's account expires. This value is an empty string, if this account will not expire.   <br/> <b>Date Time Format: </b> <i> yyyy-MM-dd'T'HH:mm:ss.ff'Z' eg. `2020-05-02T22:30:00Z` </i> |",
        "operationId": "GetAllUsers",
        "parameters": [
          {
            "name": "Content-Type",
            "in": "header",
            "description": "",
            "required": true,
            "style": "simple",
            "schema": {
              "enum": [
                "application/json"
              ],
              "type": "string",
              "example": "application/json"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "access-control-allow-origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "content-length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "1195"
                    },
                    "example": "1195"
                  }
                }
              },
              "content-type": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "application/json; charset=UTF-8"
                    },
                    "example": "application/json; charset=UTF-8"
                  }
                }
              },
              "date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 May 2020 09:28:33 GMT"
                    },
                    "example": "Tue, 05 May 2020 09:28:33 GMT"
                  }
                }
              },
              "x-frame-options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/RetrieveAllUsers-Success"
                  },
                  "description": "",
                  "example": [
                    {
                      "user-type": "internal",
                      "last-login-time": "2020-05-05T09:27:31.035Z",
                      "username": "ADMIN",
                      "account-status": "active",
                      "password-expiration-date": "2020-07-31T10:20:49.115Z",
                      "failed-login-attempts": 0,
                      "password-expiry-days": 90,
                      "account-expiration-date": "",
                      "max-failed-logins": 5,
                      "logged-in": true,
                      "password-notice-days": 5,
                      "account-lock-period": 5,
                      "authorization-mode": [
                        "internal"
                      ],
                      "authentication-mode": [
                        "internal"
                      ],
                      "group": [
                        "super-user"
                      ]
                    },
                    {
                      "user-type": "internal",
                      "last-login-time": "2020-05-05T09:25:19.807Z",
                      "username": "Test-Account",
                      "account-status": "active",
                      "password-expiration-date": "2020-08-03T09:25:19.850Z",
                      "failed-login-attempts": 0,
                      "password-expiry-days": 90,
                      "account-expiration-date": "",
                      "max-failed-logins": 5,
                      "logged-in": false,
                      "password-notice-days": 5,
                      "account-lock-period": 5,
                      "authorization-mode": [
                        "internal"
                      ],
                      "authentication-mode": [
                        "internal"
                      ],
                      "group": []
                    },
                    {
                      "user-type": "internal",
                      "last-login-time": "",
                      "username": "Test-User-Account",
                      "account-status": "active",
                      "password-expiration-date": "2020-05-04T09:21:16.018Z",
                      "failed-login-attempts": 0,
                      "password-expiry-days": 90,
                      "account-expiration-date": "",
                      "max-failed-logins": 5,
                      "logged-in": false,
                      "password-notice-days": 5,
                      "account-lock-period": 5,
                      "authorization-mode": [
                        "internal"
                      ],
                      "authentication-mode": [
                        "internal"
                      ],
                      "group": []
                    }
                  ]
                },
                "example": [
                  {
                    "user-type": "internal",
                    "last-login-time": "2020-05-05T09:27:31.035Z",
                    "username": "ADMIN",
                    "account-status": "active",
                    "password-expiration-date": "2020-07-31T10:20:49.115Z",
                    "failed-login-attempts": 0,
                    "password-expiry-days": 90,
                    "account-expiration-date": "",
                    "max-failed-logins": 5,
                    "logged-in": true,
                    "password-notice-days": 5,
                    "account-lock-period": 5,
                    "authorization-mode": [
                      "internal"
                    ],
                    "authentication-mode": [
                      "internal"
                    ],
                    "group": [
                      "super-user"
                    ]
                  },
                  {
                    "user-type": "internal",
                    "last-login-time": "2020-05-05T09:25:19.807Z",
                    "username": "Test-Account",
                    "account-status": "active",
                    "password-expiration-date": "2020-08-03T09:25:19.850Z",
                    "failed-login-attempts": 0,
                    "password-expiry-days": 90,
                    "account-expiration-date": "",
                    "max-failed-logins": 5,
                    "logged-in": false,
                    "password-notice-days": 5,
                    "account-lock-period": 5,
                    "authorization-mode": [
                      "internal"
                    ],
                    "authentication-mode": [
                      "internal"
                    ],
                    "group": []
                  },
                  {
                    "user-type": "internal",
                    "last-login-time": "",
                    "username": "Test-User-Account",
                    "account-status": "active",
                    "password-expiration-date": "2020-05-04T09:21:16.018Z",
                    "failed-login-attempts": 0,
                    "password-expiry-days": 90,
                    "account-expiration-date": "",
                    "max-failed-logins": 5,
                    "logged-in": false,
                    "password-notice-days": 5,
                    "account-lock-period": 5,
                    "authorization-mode": [
                      "internal"
                    ],
                    "authentication-mode": [
                      "internal"
                    ],
                    "group": []
                  }
                ]
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-auth-user:set-password": {
      "post": {
        "tags": [
          "AAA Users"
        ],
        "summary": "Set Password",
        "description": "Set a new password for the current user with the user name specified as a URL parameter.\n\n| Attribute | Description |\n| --- | --- |\n| password | **Required:** New password which will authenticate the user. |",
        "operationId": "SetPassword",
        "parameters": [
          {
            "name": "Username",
            "in": "query",
            "description": "",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "example": "SampleUser"
            }
          }
        ],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SetPasswordRequest"
              },
              "example": {
                "password": "P@ssw1rd"
              }
            }
          },
          "required": true
        },
        "responses": {
          "400": {
            "description": "Bad Request",
            "headers": {
              "access-control-allow-origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "content-length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "49"
                    },
                    "example": "49"
                  }
                }
              },
              "content-type": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "application/json; charset=UTF-8"
                    },
                    "example": "application/json; charset=UTF-8"
                  }
                }
              },
              "date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 May 2020 09:54:49 GMT"
                    },
                    "example": "Tue, 05 May 2020 09:54:49 GMT"
                  }
                }
              },
              "x-frame-options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SetPassword-Invalidpasswordvalue1"
                },
                "example": {
                  "message": "That password may not be reused yet"
                }
              }
            }
          },
          "200": {
            "description": "OK",
            "headers": {
              "access-control-allow-origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "content-length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "0"
                    },
                    "example": "0"
                  }
                }
              },
              "date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 May 2020 09:57:13 GMT"
                    },
                    "example": "Tue, 05 May 2020 09:57:13 GMT"
                  }
                }
              },
              "x-frame-options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {}
          }
        },
        "deprecated": false,
        "security": [
          {
            "basic": []
          }
        ]
      }
    },
    "/operations/adtran-auth-user:logout-user": {
      "post": {
        "tags": [
          "AAA Users"
        ],
        "summary": "Logout User",
        "description": "Administrator can force logout a particular user or all users from the system.\n\n----\n### Note\n* logout-all option is directly used in the request url without a body",
        "operationId": "LogoutUser",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/LogoutUserRequest"
              },
              "example": {
                "username": "SampleUser"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 08 May 2020 12:06:36 GMT"
                    },
                    "example": "Fri, 08 May 2020 12:06:36 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "0"
                    },
                    "example": "0"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {}
          },
          "400": {
            "description": "Bad Request",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 08 May 2020 12:07:40 GMT"
                    },
                    "example": "Fri, 08 May 2020 12:07:40 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "35"
                    },
                    "example": "35"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "type": "string",
                  "example": " USER Test-Account is not logged in"
                },
                "example": " USER Test-Account is not logged in"
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-auth-user:expire-password": {
      "post": {
        "tags": [
          "AAA Users"
        ],
        "summary": "Expire Password",
        "description": "Forcibly expire a user's password which will force the user to change their password. It can only be used by the ADMIN user.\n\n| Attribute | Description |\n| --- | --- |\n| username | **Required:** Unique username of the user. |",
        "operationId": "ExpirePassword",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ExpirePasswordRequest"
              },
              "example": {
                "username": "SampleUser"
              }
            }
          },
          "required": true
        },
        "responses": {
          "404": {
            "description": "Not Found",
            "headers": {
              "access-control-allow-origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "content-length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "48"
                    },
                    "example": "48"
                  }
                }
              },
              "content-type": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "application/json; charset=UTF-8"
                    },
                    "example": "application/json; charset=UTF-8"
                  }
                }
              },
              "date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 May 2020 09:56:35 GMT"
                    },
                    "example": "Tue, 05 May 2020 09:56:35 GMT"
                  }
                }
              },
              "x-frame-options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ExpirePassword-InvalidUser1"
                },
                "example": {
                  "message": "User Test-Account1 does not exist."
                }
              }
            }
          },
          "200": {
            "description": "OK",
            "headers": {
              "access-control-allow-origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "content-length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "0"
                    },
                    "example": "0"
                  }
                }
              },
              "date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 May 2020 09:55:54 GMT"
                    },
                    "example": "Tue, 05 May 2020 09:55:54 GMT"
                  }
                }
              },
              "x-frame-options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {}
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-auth-user:logout-all": {
      "post": {
        "tags": [
          "AAA Users"
        ],
        "summary": "Logout All Users",
        "description": "Administrator can force logout a particular user or all users from the system.\n\n----\n### Note\n* logout-all option is directly used in the request url without a body",
        "operationId": "LogoutAllUsers",
        "parameters": [
          {
            "name": "Content-Type",
            "in": "header",
            "description": "",
            "required": true,
            "style": "simple",
            "schema": {
              "enum": [
                "application/json"
              ],
              "type": "string",
              "example": "application/json"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "access-control-allow-origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "content-length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "0"
                    },
                    "example": "0"
                  }
                }
              },
              "date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 May 2020 10:04:42 GMT"
                    },
                    "example": "Tue, 05 May 2020 10:04:42 GMT"
                  }
                }
              },
              "x-frame-options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {}
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-auth-user:delete-user": {
      "post": {
        "tags": [
          "AAA Users"
        ],
        "summary": "Delete User",
        "description": "Delete an existing user by supplying the name.\n\n| Attribute | Description |\n| --- | --- |\n| username | **Required:** Name of the user to be deleted. |",
        "operationId": "DeleteUser",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DeleteUserRequest"
              },
              "example": {
                "username": "SampleUser"
              }
            }
          },
          "required": true
        },
        "responses": {
          "404": {
            "description": "Not Found",
            "headers": {
              "access-control-allow-origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "content-length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "53"
                    },
                    "example": "53"
                  }
                }
              },
              "content-type": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "application/json; charset=UTF-8"
                    },
                    "example": "application/json; charset=UTF-8"
                  }
                }
              },
              "date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 May 2020 09:57:54 GMT"
                    },
                    "example": "Tue, 05 May 2020 09:57:54 GMT"
                  }
                }
              },
              "x-frame-options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Delete-InvalidUser1"
                },
                "example": {
                  "message": "User Test-User-Account1 does not exist."
                }
              }
            }
          },
          "204": {
            "description": "No Content",
            "headers": {
              "access-control-allow-origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "content-length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "0"
                    },
                    "example": "0"
                  }
                }
              },
              "date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 May 2020 09:58:18 GMT"
                    },
                    "example": "Tue, 05 May 2020 09:58:18 GMT"
                  }
                }
              },
              "x-frame-options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {}
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-auth-radius-attributes-mapping:radius-attributes/vsa-to-permission-group": {
      "post": {
        "tags": [
          "AAA Users"
        ],
        "summary": "Create Vendor Specific Attribute Mapping for Radius",
        "description": "Perform vendor specific attribute mapping so that RADIUS authenticated users can be authorized to MCP permissions groups based on RADIUS VSAs.\n\n| Attribute | Description |\n| --- | --- |\n|vendor-id|The id of the vendor according to IANA, e.g. 664 for ADTRAN.|\n|vendor-type|The type of the vendor specific attribute, e.g. 2 for ADTRAN-MOSAIC-CP-USER-GROUP.|\n|vendor-value|The value of the vendor specific attribute to match and assign the group(s) below.|\n|group|List of permission group names in MCP that the RADIUS user will be given upon login.|\n\nConsult the RADIUS dictionary called dictionary.adtran for more information and options.",
        "operationId": "CreateVendorSpecificAttributeMappingforRadius",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateVendorSpecificAttributeMappingforRadiusRequest"
              },
              "example": {
                "vendor-id": 664,
                "vendor-type": 2,
                "vendor-value": "attribute-name-from-radius-server",
                "group": [
                  "edit-device-user",
                  "edit-interface-user"
                ]
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "",
            "headers": {}
          }
        },
        "deprecated": false
      },
      "get": {
        "tags": [
          "AAA Users"
        ],
        "summary": "Get Vendor Specific Attribute Mapping for Radius",
        "description": "Get all vendor specific attribute mapping so that RADIUS authenticated users can be authorized to MCP permissions groups based on RADIUS VSAs.\n\n| Attribute | Description |\n| --- | --- |\n|vendor-id|The id of the vendor according to IANA, e.g. 664 for ADTRAN.|\n|vendor-type|The type of the vendor specific attribute, e.g. 2 for ADTRAN-MOSAIC-CP-USER-GROUP.|\n|vendor-value|The value of the vendor specific attribute to match and assign the group(s) below.|\n|group|List of permission group names in MCP that the RADIUS user will be given upon login.|\n\nConsult the RADIUS dictionary called dictionary.adtran for more information and options.",
        "operationId": "GetVendorSpecificAttributeMappingforRadius",
        "parameters": [],
        "responses": {
          "200": {
            "description": "",
            "headers": {}
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-auth-radius-attributes-mapping:radius-attributes/vsa-to-permission-group=664,2,attribute-name-from-radius-server": {
      "put": {
        "tags": [
          "AAA Users"
        ],
        "summary": "Modify Vendor Specific Attribute Mapping for Radius",
        "description": "Modify vendor specific attribute mapping so that RADIUS authenticated users can be authorized to MCP permissions groups based on RADIUS VSAs.\n\n<br>\nRequest query parameter details - \n<br>\n\n| Attribute | Description |\n| --- | --- |\n| vsa-to-permission-group | **Required** vendor-id,vendor-type,vendor-value |\n\n<br>\nRequest body details - \n<br>\n\n| Attribute | Description |\n| --- | --- |\n|vendor-id|The id of the vendor according to IANA, e.g. 664 for ADTRAN.|\n|vendor-type|The type of the vendor specific attribute, e.g. 2 for ADTRAN-MOSAIC-CP-USER-GROUP.|\n|vendor-value|The value of the vendor specific attribute to match and assign the group(s) below.|\n|group|List of permission group names in MCP that the RADIUS user will be given upon login.|\n\nConsult the RADIUS dictionary called dictionary.adtran for more information and options.",
        "operationId": "ModifyVendorSpecificAttributeMappingforRadius",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ModifyVendorSpecificAttributeMappingforRadiusRequest"
              },
              "example": {
                "vendor-id": 664,
                "vendor-type": 2,
                "vendor-value": "attribute-name-from-radius-server",
                "group": [
                  "super-user"
                ]
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "",
            "headers": {}
          }
        },
        "deprecated": false
      },
      "delete": {
        "tags": [
          "AAA Users"
        ],
        "summary": "Delete Vendor Specific Attribute Mapping for Radius",
        "description": "Delete vendor specific attribute mapping so that RADIUS authenticated users can be authorized to MCP permissions groups based on RADIUS VSAs.\n\n<br>\nRequest query parameter details - \n<br>\n\n| Attribute | Description |\n| --- | --- |\n| vsa-to-permission-group | **Required** vendor-id,vendor-type,vendor-value |",
        "operationId": "DeleteVendorSpecificAttributeMappingforRadius",
        "parameters": [],
        "responses": {
          "200": {
            "description": "",
            "headers": {}
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-auth-accounting:get-filtered-logs": {
      "post": {
        "tags": [
          "Accounting Logs"
        ],
        "summary": "Get Account Logs Between Dates and Time",
        "description": "Get the Account logs between any duration.\n\n| Attributes | Description |\n| --- | --- |\n| from-time  | Select logs that occured on or after the given time. If not present, no lower bound will be used on the time period.<br/> <b>Date Time Format </b>: <i> yyyy-MM-dd'T'HH:mm:ss.ff'Z' eg. `2020-05-02T22:30:00Z`. </i> |\n| to-time | Select logs that occured on or before the given time. If not present, no upper bound will be used on the time period. <br/> <b>Date Time Format </b>: <i>yyyy-MM-dd'T'HH:mm:ss.ff'Z' eg. `2020-05-02T22:30:00Z`. </i> |\n\n<br>\nResponse Data Details - \n<br>\n\n| Attribute  | Description |\n| --- | --- |\n| method | HTTP method used for request by the user. <br/><b>Possible Values: </b> <i> get, post, put, patch or delete<i> |\n| log-id | Unique ID of the accounting log entry.<br/><b>Possible Format: </b> <i>  [0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12} |\n| username | Unique name of the user who sent the request. |\n| uri | URI requested by the user. |\n| status | Select logs in which the status-code string provided is a substring of the stored status-code. For example '20' would match '200 OK, 201 Created, 204 No Content'. |\n| req-time | Time at which the request was received. <br/><b>Date Time Format </b>: <i>yyyy-MM-dd'T'HH:mm:ss.ff'Z' eg. `2020-05-02T22:30:00Z`. </i> |\n| content |\tContent or body of request by the user. |\n| ip-address |\tOrigin of the request in the accounting log entry.  <br/><b>Possible Formats: </b> <i>ipv4-address or ipv6-address<i> |\n\n\n----\n### Note\n* If from-time is not specified then no lower bound is used for date and time.\n* If to-time is not specified then the current date and time is used.",
        "operationId": "GetAccountLogsBetweenDatesandTime",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GetAccountLogsBetweenDatesandTimeRequest"
              },
              "example": {
                "time-period": {
                  "from-time": "2020-01-02T00:00:00.000Z",
                  "to-time": "2020-04-02T12:00:00.000Z"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Wed, 06 May 2020 06:51:43 GMT"
                    },
                    "example": "Wed, 06 May 2020 06:51:43 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetAccountLogsBetweenDates"
                },
                "example": {
                  "log-entry": [
                    {
                      "method": "POST",
                      "log-id": "e1165ef5-09be-4a34-ba5f-cebef7daa305",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-auth-accounting:get-filtered-logs",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:51:32+00:00",
                      "content": "{\r\n  \"time-period\" : {\r\n    \"from-time\" : \"2020-01-02T00:00:00.000Z\",\r\n    \"to-time\" : \"2020-05-06T12:00:00.000Z\"\r\n  }\r\n}\r\n",
                      "ip-address": "172.22.178.20"
                    },
                    {
                      "method": "POST",
                      "log-id": "0bd268b6-e43f-4ea9-b309-717a963c094a",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-auth-accounting:get-filtered-logs",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:50:58+00:00",
                      "content": "{\r\n  \"time-period\" : {\r\n    \"from-time\" : \"2020-01-02T00:00:00.000Z\",\r\n    \"to-time\" : \"2020-04-02T12:00:00.000Z\"\r\n  }\r\n}\r\n",
                      "ip-address": "172.22.178.20"
                    },
                    {
                      "method": "POST",
                      "log-id": "32d95ef9-b3bd-4080-b4cb-968be29aec17",
                      "username": "{\"message\":\"Failed authentication\"}",
                      "uri": "/restconf/operations/adtran-auth-accounting:get-filtered-logs",
                      "status-code": "401 Unauthorized",
                      "req-time": "2020-05-06T06:50:33+00:00",
                      "content": "{\r\n  \"time-period\" : {\r\n    \"from-time\" : \"2020-01-02T00:00:00.000Z\",\r\n    \"to-time\" : \"2020-04-02T12:00:00.000Z\"\r\n  }\r\n}\r\n",
                      "ip-address": "172.22.178.20"
                    },
                    {
                      "method": "POST",
                      "log-id": "e273be9d-a02f-4965-bd09-34587588b21d",
                      "username": "Username Not Provided",
                      "uri": "/restconf/operations/adtran-auth-token:request-token",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:50:26+00:00",
                      "content": "{\"password\":\"********\",\"username\":\"ADMIN\"}",
                      "ip-address": "172.22.178.20"
                    },
                    {
                      "method": "POST",
                      "log-id": "fa438e15-004c-414a-94d1-6050b4e80744",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
                      "status-code": "409 Conflict",
                      "req-time": "2020-05-06T06:42:06+00:00",
                      "content": "{\r\n  \"input\": {\r\n    \"server-context\": {\r\n      \"server-name\": \"Server\",\r\n      \"type\": [\r\n        \"TFTP\"\r\n      ],\r\n      \"credentials-name\": \"Credentials\"\r\n    }\r\n  }\r\n}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "9b6ad552-6659-4f83-817f-1d39e6c40b2e",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
                      "status-code": "400 Bad Request",
                      "req-time": "2020-05-06T06:40:56+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"summary-field: \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true\r\n    }\r\n}",
                      "ip-address": "172.22.182.150"
                    },
                    {
                      "method": "POST",
                      "log-id": "979b7e5f-2f92-4d77-b84d-f0e0d797ead4",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:40:02+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true\r\n    }\r\n}",
                      "ip-address": "172.22.182.150"
                    },
                    {
                      "method": "POST",
                      "log-id": "96a6082b-5a9b-4d35-ac84-fa323f69bfae",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
                      "status-code": "400 Bad Request",
                      "req-time": "2020-05-06T06:39:18+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n    }\r\n}",
                      "ip-address": "172.22.182.150"
                    },
                    {
                      "method": "POST",
                      "log-id": "86549002-14be-4b62-b0ae-35a6560eca15",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
                      "status-code": "400 Bad Request",
                      "req-time": "2020-05-06T06:38:51+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"summary-fie\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n    }\r\n}",
                      "ip-address": "172.22.182.150"
                    },
                    {
                      "method": "POST",
                      "log-id": "e541a8a0-8125-4813-bff7-ea2b3b5d2a0a",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
                      "status-code": "400 Bad Request",
                      "req-time": "2020-05-06T06:36:20+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"missing\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
                      "ip-address": "172.22.182.150"
                    },
                    {
                      "method": "POST",
                      "log-id": "7dd2fb86-0123-48ab-b60c-3cccdb0bd486",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
                      "status-code": "400 Bad Request",
                      "req-time": "2020-05-06T06:36:02+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"maj\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
                      "ip-address": "172.22.182.150"
                    },
                    {
                      "method": "POST",
                      "log-id": "435f7201-fde3-4d67-ad0e-9c8a62bc3fa1",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:35:50+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"sever\",\r\n                \"search-value\": [\r\n                    \"major\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
                      "ip-address": "172.22.182.150"
                    },
                    {
                      "method": "POST",
                      "log-id": "46d4a339-9b7c-4de9-8061-18039184be3b",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:35:19+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"major\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
                      "ip-address": "172.22.182.150"
                    },
                    {
                      "method": "POST",
                      "log-id": "314fec6f-5d3d-456d-93ae-c1d145b8db74",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:35:03+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"major\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
                      "ip-address": "172.22.182.150"
                    },
                    {
                      "method": "POST",
                      "log-id": "c543f9c4-2f2b-4b96-aebb-92e8c66a40eb",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:34:52+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
                      "ip-address": "172.22.182.150"
                    },
                    {
                      "method": "POST",
                      "log-id": "1d588c06-5eb8-4142-99fb-0b5d4c04dd42",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
                      "status-code": "400 Bad Request",
                      "req-time": "2020-05-06T06:34:37+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": true,\r\n        \"curs\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
                      "ip-address": "172.22.182.150"
                    },
                    {
                      "method": "POST",
                      "log-id": "03cd9a62-7b08-485f-acad-138334c52a24",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:34:19+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": true,\r\n        \"cursor\": 0,\r\n        \"result-size\": 344555555555,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
                      "ip-address": "172.22.182.150"
                    },
                    {
                      "method": "POST",
                      "log-id": "e7b6464e-c004-4941-bb6e-504ae99f0287",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:34:06+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": true,\r\n        \"cursor\": 0,\r\n        \"result-size\": -1,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
                      "ip-address": "172.22.182.150"
                    },
                    {
                      "method": "GET",
                      "log-id": "370c8fb7-6a4f-4561-b742-421b1a229503",
                      "username": "ADMIN",
                      "uri": "/restconf/data/adtran-cloud-platform-uiworkflow:transitions/transition=3b2c4ba3-9022-4700-8142-16553c2cbf70",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:33:57+00:00",
                      "content": "",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "0aaa05bd-d806-482b-b991-0ac2420c6998",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:delete",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:33:56+00:00",
                      "content": "{\"input\":{\"server-context\":{\"server-name\":\"1\"}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "GET",
                      "log-id": "541d8ecc-ec8c-4f55-bc34-f4ee15a8a535",
                      "username": "ADMIN",
                      "uri": "/restconf/data/adtran-cloud-platform-uiworkflow:transitions/transition=af5c3331-c339-4985-89f4-7caebbc8d19b",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:33:52+00:00",
                      "content": "",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "f50e22fa-ea34-41df-9e7c-36a2570a69be",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:undeploy",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:33:51+00:00",
                      "content": "{\"input\":{\"server-context\":{\"server-name\":\"1\"}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "GET",
                      "log-id": "fe0c1d80-49f0-49ad-97d8-7d6318f7d467",
                      "username": "ADMIN",
                      "uri": "/restconf/data/adtran-cloud-platform-uiworkflow:transitions/transition=94fe85fb-128a-4806-b0f6-322af1eead3b",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:33:12+00:00",
                      "content": "",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "b874fdd7-90d9-4d85-8c9f-555bd46aef5a",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deploy",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:33:11+00:00",
                      "content": "{\"input\":{\"server-context\":{\"server-name\":\"1\",\"host-ip\":\"1.1.1.1\",\"port\":\"1\",\"data-center-name\":\"Data Center\"}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "9c3208b1-62be-48a4-834c-01079af32b09",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:33:10+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"Data Center\",\"object-type\":\"data-center\",\"search-field\":\"data-center-name\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "c813398d-a940-468a-90cb-f790afe56d0b",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:32:58+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"data-center-name\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "63d5425b-cfec-48d4-be27-18b70b34d369",
                      "username": "ADMIN",
                      "uri": "/restconf/data-filter/adtran-cloud-platform-uiworkflow-credentials:credentials/credential",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:32:56+00:00",
                      "content": "{\"credentials#like\":{\"field\":\"name\",\"keyword\":\"\",\"threshold\":0.1,\"target\":\"score\"}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "GET",
                      "log-id": "3676192f-16c1-4ffc-a76d-b8889dcce06b",
                      "username": "ADMIN",
                      "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-servers:servers/available-type",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:32:56+00:00",
                      "content": "",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "GET",
                      "log-id": "95e87c9b-8d3a-4438-b71f-f12ce782b5ee",
                      "username": "ADMIN",
                      "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-servers:servers/server=1",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:32:55+00:00",
                      "content": "",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "GET",
                      "log-id": "f9fa9394-306a-4f89-a4a6-b2da9d2bf8b7",
                      "username": "ADMIN",
                      "uri": "/restconf/data/adtran-cloud-platform-servers:servers/server=1",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:32:55+00:00",
                      "content": "",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "GET",
                      "log-id": "1256964d-a868-443c-a62d-2ba8dac26919",
                      "username": "ADMIN",
                      "uri": "/restconf/data/adtran-cloud-platform-uiworkflow:transitions/transition=5f705111-f3b8-4104-9eec-7a8490853984",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:32:54+00:00",
                      "content": "",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "8d11ae3f-8c1e-4ea0-9158-2b7021a0363d",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:32:52+00:00",
                      "content": "{\"input\":{\"server-context\":{\"server-name\":\"1\",\"type\":[\"TFTP\"]}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "GET",
                      "log-id": "82aa24ec-5426-4c0c-b41a-588514e2e6e2",
                      "username": "ADMIN",
                      "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-servers:servers/available-type",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:32:47+00:00",
                      "content": "",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "GET",
                      "log-id": "2013ae9f-6dd6-427d-8cad-1809d3fdf7b9",
                      "username": "ADMIN",
                      "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-servers:servers/available-type",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:32:47+00:00",
                      "content": "",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "0b0eebe4-6230-4e32-aee8-afe93fd082b7",
                      "username": "ADMIN",
                      "uri": "/restconf/data-filter/adtran-cloud-platform-uiworkflow-credentials:credentials/credential",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:32:45+00:00",
                      "content": "{\"credentials#like\":{\"field\":\"name\",\"keyword\":\"\",\"threshold\":0.1,\"target\":\"score\"}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "332b3bcc-726e-4d55-9a13-e717cf38624f",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:32:44+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"data-center-name\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "GET",
                      "log-id": "3be31646-afc4-47a4-a02e-ac9eadb8f8bb",
                      "username": "ADMIN",
                      "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-force-actions:force-actions/force-action=server",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:32:43+00:00",
                      "content": "",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "GET",
                      "log-id": "7b794def-b098-465f-88bd-10882e168a68",
                      "username": "ADMIN",
                      "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-servers:servers/available-type",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:32:43+00:00",
                      "content": "",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "7e350675-e785-420b-850e-4c8c0b25e4f4",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:32:10+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "a62ee6cd-7771-4572-b6c5-92d3de80afba",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:32:10+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "af0048a1-cccf-4dcb-a783-e50a2d65f1ca",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:32:08+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "eced01fc-8a83-4186-976b-193da6fada22",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:32:08+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "GET",
                      "log-id": "ab80f8ba-0fd9-4c31-b71e-5d403c546562",
                      "username": "ADMIN",
                      "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-force-actions:force-actions/force-action=server",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:31:58+00:00",
                      "content": "",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "GET",
                      "log-id": "cd15cec1-4b1e-4096-8fdc-4bec6cd3e404",
                      "username": "ADMIN",
                      "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-servers:servers/available-type",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:31:58+00:00",
                      "content": "",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "3c2ff2a2-8efe-4478-bca6-5dae0783c700",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:31:58+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"data-center-name\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "79c6b3a6-4fca-4fe9-a146-47873f95709e",
                      "username": "ADMIN",
                      "uri": "/restconf/data-filter/adtran-cloud-platform-uiworkflow-credentials:credentials/credential",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:31:58+00:00",
                      "content": "{\"credentials#like\":{\"field\":\"name\",\"keyword\":\"\",\"threshold\":0.1,\"target\":\"score\"}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "a90deb60-e82c-4a48-bda1-b536d6e45232",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:31:50+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "1615b12a-e44e-46fd-b55d-4babc036564c",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:31:48+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "8a1a8230-775b-4623-88c4-04cea89d6b5c",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:31:48+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "c77bc5ad-b7cd-44fb-9af4-355d263dc903",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
                      "status-code": "400 Bad Request",
                      "req-time": "2020-05-06T06:31:44+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"current\": true,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
                      "ip-address": "172.22.182.150"
                    },
                    {
                      "method": "POST",
                      "log-id": "ce7aacc0-56c3-4458-b30d-38a365572a22",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:31:34+00:00",
                      "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "8831f2b0-19e6-47fa-886f-6473752b7421",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:31:34+00:00",
                      "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "c233e190-ad5e-42e3-a92f-6d1dd3c46051",
                      "username": "Username Not Provided",
                      "uri": "/restconf/operations/adtran-auth-token:request-token",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:31:32+00:00",
                      "content": "{\"password\":\"********\",\"username\":\"ADMIN\"}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "4ca5ff05-f5f1-4fbf-a01c-68d332d01fe1",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:31:32+00:00",
                      "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "6e11e228-538e-46de-a058-240bf1f71dc6",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-event-summary",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:31:32+00:00",
                      "content": "{\"input\":{\"summary-field\":\"severity\",\"exact-match\":true}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "GET",
                      "log-id": "db6a5810-8d03-43c6-9135-2953e75390f1",
                      "username": "Username Not Provided",
                      "uri": "/restconf/data/adtran-launchpad-login:login-screen",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:31:31+00:00",
                      "content": "",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "bb72f0ea-8bb5-4b88-9943-5a393af31149",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
                      "status-code": "400 Bad Request",
                      "req-time": "2020-05-06T06:24:38+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"current\": true,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
                      "ip-address": "172.22.182.150"
                    },
                    {
                      "method": "POST",
                      "log-id": "845c0db4-2ef5-4a8b-9658-1b893db6c0a7",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:24:24+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"current\": true,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
                      "ip-address": "172.22.182.150"
                    },
                    {
                      "method": "POST",
                      "log-id": "c0c08e31-3130-4b47-8fcb-2f2d38f42368",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow-jobs:get-job-context",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:23:33+00:00",
                      "content": "{\"input\":{\"action-name\":\"Download\"}}",
                      "ip-address": "172.22.179.175"
                    },
                    {
                      "method": "POST",
                      "log-id": "6babd527-6ccc-45d5-b6de-6f29812a2d15",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:23:33+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"name\",\"extra-search-fields\":[{\"field\":\"state\",\"value-list\":[\"deployed\",\"activated\"]}]}}}",
                      "ip-address": "172.22.179.175"
                    },
                    {
                      "method": "POST",
                      "log-id": "f3aa7b11-306b-4977-ab4b-448587ed0c5c",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:23:33+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":100,\"search-term\":\"\",\"object-type\":\"profile\",\"search-field\":\"name\",\"extra-search-fields\":[{\"field\":\"state\",\"value-list\":[\"deployed\",\"activated\"]},{\"field\":\"type\",\"value-list\":[\"device-software-profile\"]}]}}}",
                      "ip-address": "172.22.179.175"
                    },
                    {
                      "method": "GET",
                      "log-id": "400b134f-ae44-4fcc-ba57-dbd6797c2a4b",
                      "username": "ADMIN",
                      "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-jobs:triggers",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:23:16+00:00",
                      "content": "",
                      "ip-address": "172.22.179.175"
                    },
                    {
                      "method": "POST",
                      "log-id": "272087aa-1439-48cf-80d5-13daf2f3034f",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow-jobs:get-job-context",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:23:15+00:00",
                      "content": "{\"input\":{\"action-name\":null}}",
                      "ip-address": "172.22.179.175"
                    },
                    {
                      "method": "GET",
                      "log-id": "c9418972-cef5-45c3-a835-ed85dcc808f6",
                      "username": "ADMIN",
                      "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-jobs:actions",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:23:15+00:00",
                      "content": "",
                      "ip-address": "172.22.179.175"
                    },
                    {
                      "method": "POST",
                      "log-id": "3ab7e1fb-2eb9-4a39-bdbb-8828df83f7bf",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:23:10+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"device\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.179.175"
                    },
                    {
                      "method": "POST",
                      "log-id": "ec359d45-cf41-486a-920a-56d4e0bf5e13",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:23:09+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"device\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.179.175"
                    },
                    {
                      "method": "POST",
                      "log-id": "fb4f57e1-143b-4704-8051-56f334f64cb6",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:23:09+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"device\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.179.175"
                    },
                    {
                      "method": "POST",
                      "log-id": "05f5725d-2ec3-49d0-8f2f-35cb72963c5a",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow-jobs:get-job-context",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:22:32+00:00",
                      "content": "{\"input\":{\"action-name\":\"Reflow Device\"}}",
                      "ip-address": "172.22.179.175"
                    },
                    {
                      "method": "POST",
                      "log-id": "0e5efd6a-8985-400d-97ae-9b0729f23ffd",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow-jobs:get-job-context",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:22:25+00:00",
                      "content": "{\"input\":{\"action-name\":null}}",
                      "ip-address": "172.22.179.175"
                    },
                    {
                      "method": "POST",
                      "log-id": "25387e48-703e-4a1f-96b8-7f6ff0f73796",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:22:21+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":100,\"search-term\":\"\",\"object-type\":\"service\",\"search-field\":\"service-id\",\"extra-search-fields\":[{\"field\":\"state\",\"value-list\":[\"deployed\",\"activated\"]}]}}}",
                      "ip-address": "172.22.179.175"
                    },
                    {
                      "method": "POST",
                      "log-id": "503a23bd-00e3-4216-b13f-0073953796dd",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
                      "status-code": "400 Bad Request",
                      "req-time": "2020-05-06T06:22:21+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"summary-fie\": \"severity\",\r\n        \"current\": true,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-fie\": \"severity\",\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
                      "ip-address": "172.22.182.150"
                    },
                    {
                      "method": "POST",
                      "log-id": "2e0c1ee4-4301-4492-8017-4fcd6850f1b9",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow-jobs:get-job-context",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:22:07+00:00",
                      "content": "{\"input\":{\"action-name\":\"Reflow Service\"}}",
                      "ip-address": "172.22.179.175"
                    },
                    {
                      "method": "POST",
                      "log-id": "c97a4be7-1540-4b9e-a0c7-0079b71d71df",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
                      "status-code": "400 Bad Request",
                      "req-time": "2020-05-06T06:21:53+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"summary-fie\": \"state\",\r\n        \"current\": true,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-fie\": \"state\",\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
                      "ip-address": "172.22.182.150"
                    },
                    {
                      "method": "GET",
                      "log-id": "1d95ca48-35a4-4626-970b-1c7de6732859",
                      "username": "ADMIN",
                      "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-jobs:triggers",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:21:34+00:00",
                      "content": "",
                      "ip-address": "172.22.179.175"
                    },
                    {
                      "method": "GET",
                      "log-id": "2e0d5d21-8a02-4f0b-b33d-cd82171a157c",
                      "username": "ADMIN",
                      "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-jobs:actions",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:21:34+00:00",
                      "content": "",
                      "ip-address": "172.22.179.175"
                    },
                    {
                      "method": "POST",
                      "log-id": "beacb433-6d17-471f-93c3-f89464221800",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow-jobs:get-job-context",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:21:32+00:00",
                      "content": "{\"input\":{\"action-name\":null}}",
                      "ip-address": "172.22.179.175"
                    },
                    {
                      "method": "POST",
                      "log-id": "0939768f-29d1-4aef-9d11-2f01ac00a78c",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:21:17+00:00",
                      "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
                      "ip-address": "172.22.179.175"
                    },
                    {
                      "method": "POST",
                      "log-id": "7fa72be7-4926-49a0-a41d-ccc83a396138",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:21:17+00:00",
                      "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
                      "ip-address": "172.22.179.175"
                    },
                    {
                      "method": "POST",
                      "log-id": "9380cb84-153b-48b2-a3a7-bd3e3c21da5b",
                      "username": "Username Not Provided",
                      "uri": "/restconf/operations/adtran-auth-token:request-token",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:21:16+00:00",
                      "content": "{\"password\":\"********\",\"username\":\"ADMIN\"}",
                      "ip-address": "172.22.179.175"
                    },
                    {
                      "method": "POST",
                      "log-id": "9bc58034-e0bb-4e00-9205-cb63aff8fc78",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-event-summary",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:21:16+00:00",
                      "content": "{\"input\":{\"summary-field\":\"severity\",\"exact-match\":true}}",
                      "ip-address": "172.22.179.175"
                    },
                    {
                      "method": "POST",
                      "log-id": "cb06c00b-f75d-4f1b-87f7-d7b6abd7083e",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:21:16+00:00",
                      "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
                      "ip-address": "172.22.179.175"
                    },
                    {
                      "method": "GET",
                      "log-id": "1ed83d1d-058e-48b9-a968-816b8f93e26a",
                      "username": "Username Not Provided",
                      "uri": "/restconf/data/adtran-launchpad-login:login-screen",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:21:15+00:00",
                      "content": "",
                      "ip-address": "172.22.179.175"
                    },
                    {
                      "method": "GET",
                      "log-id": "0a31b1ef-76f5-4deb-bb43-5d85c8c2420c",
                      "username": "Username Not Provided",
                      "uri": "/restconf/data/adtran-launchpad-login:login-screen",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:21:02+00:00",
                      "content": "",
                      "ip-address": "172.22.179.175"
                    },
                    {
                      "method": "GET",
                      "log-id": "28fa51e9-cce9-47e1-8ba5-cf1c8f229adf",
                      "username": "Username Not Provided",
                      "uri": "/restconf/data/adtran-launchpad-login:login-screen",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:20:59+00:00",
                      "content": "",
                      "ip-address": "172.22.179.175"
                    },
                    {
                      "method": "GET",
                      "log-id": "e992cec0-412e-40ca-891b-11ea8d5e2ae7",
                      "username": "Username Not Provided",
                      "uri": "/restconf/data/adtran-feature-flags:feature-flags",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:20:57+00:00",
                      "content": "",
                      "ip-address": "172.22.179.175"
                    },
                    {
                      "method": "GET",
                      "log-id": "e8b2cf43-ed0a-46ff-838e-459fd099ccc3",
                      "username": "Username Not Provided",
                      "uri": "/restconf/data/adtran-launchpad-login:login-screen",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:20:37+00:00",
                      "content": "",
                      "ip-address": "172.22.182.150"
                    },
                    {
                      "method": "GET",
                      "log-id": "9a93fc6a-9584-4379-9c0a-d27aa932c292",
                      "username": "Username Not Provided",
                      "uri": "/restconf/data/adtran-launchpad-login:login-screen",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:20:35+00:00",
                      "content": "",
                      "ip-address": "172.22.182.150"
                    },
                    {
                      "method": "GET",
                      "log-id": "c29d2f4f-07ca-46ab-877d-7522073604a0",
                      "username": "Username Not Provided",
                      "uri": "/restconf/data/adtran-feature-flags:feature-flags",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:20:34+00:00",
                      "content": "",
                      "ip-address": "172.22.182.150"
                    },
                    {
                      "method": "GET",
                      "log-id": "7c52cb34-8a97-41b1-a024-c80e0475fef4",
                      "username": "ADMIN",
                      "uri": "/restconf/data/adtran-cloud-platform-data-centers:data-centers/data-center=Data%20Center",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:18:05+00:00",
                      "content": "",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "73fcb00c-3074-4a9a-be8f-e7aaaf76262d",
                      "username": "{\"message\":\"Invalid token\"}",
                      "uri": "/restconf/operations/adtran-auth-token:release-token",
                      "status-code": "401 Unauthorized",
                      "req-time": "2020-05-06T06:17:59+00:00",
                      "content": "{}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "GET",
                      "log-id": "ae8b0d5c-43b6-49a5-81b4-9f18212cb051",
                      "username": "Username Not Provided",
                      "uri": "/restconf/data/adtran-launchpad-login:login-screen",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T06:17:59+00:00",
                      "content": "",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "ce5b34af-0e0e-41d5-87e7-0bbf9afedb97",
                      "username": "{\"message\":\"Invalid token\"}",
                      "uri": "/restconf/operations/adtran-auth-token:release-token",
                      "status-code": "401 Unauthorized",
                      "req-time": "2020-05-06T06:17:58+00:00",
                      "content": "{}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "GET",
                      "log-id": "a97b4920-3036-4973-9801-5dcaf0352d50",
                      "username": "ADMIN",
                      "uri": "/restconf/data/adtran-cloud-platform-data-centers:data-centers/data-center=Data-Center",
                      "status-code": "404 Not Found",
                      "req-time": "2020-05-06T06:17:57+00:00",
                      "content": "",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "GET",
                      "log-id": "36ad2390-4ded-4939-8144-50651aa2e41b",
                      "username": "{\"message\":\"Anonymous access not authorized\"}",
                      "uri": "/restconf/data/adtran-cloud-platform-data-centers:data-centers/data-center=Data-Center",
                      "status-code": "401 Unauthorized",
                      "req-time": "2020-05-06T06:17:51+00:00",
                      "content": "",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "GET",
                      "log-id": "c3129d6a-f172-4321-bc8c-bcf1a980d3fa",
                      "username": "ADMIN",
                      "uri": "/restconf/data/adtran-cloud-platform-data-centers:data-centers/data-center",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T05:48:32+00:00",
                      "content": "",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "GET",
                      "log-id": "05f04aa9-5558-431a-a5ce-24eaa806ef52",
                      "username": "ADMIN",
                      "uri": "/restconf/data/adtran-cloud-platform-data-centers:data-centers/data-center",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T05:48:14+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "18447a00-f2f8-43cd-af8c-7f530b5bc2b7",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:activate",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T05:47:27+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "2ce89b2b-c301-48e3-9f2a-ee1bc540c00f",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deploy",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T05:47:06+00:00",
                      "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n           \"availability\" : \"available\"\r\n       }\r\n    }\r\n }",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "e9a6105b-14e7-479e-910b-3c0bda261e73",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
                      "status-code": "400 Bad Request",
                      "req-time": "2020-05-06T05:46:59+00:00",
                      "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n           \"availability\" : \"available\"\r\n       }\r\n    }\r\n }",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "0f801d6a-cdd1-45c8-b46d-e9ab2193930d",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T05:46:28+00:00",
                      "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n            \"type\" : \"Generic\",\r\n            \"profile-vector-name\" : \"\"\r\n       }\r\n    }\r\n }",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "6e1b01c0-0ada-48fa-b399-d47ba4799f25",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T05:45:46+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "a942a399-1a24-4967-841d-a045f06bdb49",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T05:45:46+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "93afbb02-10fd-40fb-a345-10adbfed4efa",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T05:45:46+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "3cfd9859-5708-44d7-98cf-ada309cfff4a",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T05:45:45+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"management-domain\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "GET",
                      "log-id": "f38b517f-9005-4ceb-93b3-af9fd394fc40",
                      "username": "{\"message\":\"All authorization methods failed\"}",
                      "uri": "/restconf/data/adtran-cloud-platform-data-centers:data-centers/Data%20Center",
                      "status-code": "404 Not Found",
                      "req-time": "2020-05-06T05:45:29+00:00",
                      "content": "",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "GET",
                      "log-id": "e61e1a2f-5267-4e01-a2d1-9fe237212caf",
                      "username": "ADMIN",
                      "uri": "/restconf/data/adtran-cloud-platform-data-centers:data-centers/data-center",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T05:45:15+00:00",
                      "content": "",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "GET",
                      "log-id": "990b1606-1881-4b3d-b4c1-0cd8197e5d67",
                      "username": "{\"message\":\"Anonymous access not authorized\"}",
                      "uri": "/restconf/data/adtran-cloud-platform-data-centers:data-centers/data-center",
                      "status-code": "401 Unauthorized",
                      "req-time": "2020-05-06T05:45:04+00:00",
                      "content": "",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "c570a2fb-38bb-490c-8678-c0b5d9be6a35",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T05:42:44+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "d6f1b6fa-edb1-41e9-8c3b-5898950af9f9",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T05:42:44+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "GET",
                      "log-id": "14bc8174-d644-40fe-bfd2-a6a550b51c06",
                      "username": "ADMIN",
                      "uri": "/restconf/data/adtran-manifests:versions",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T05:29:32+00:00",
                      "content": "",
                      "ip-address": "172.22.178.244"
                    },
                    {
                      "method": "POST",
                      "log-id": "2422fe05-ec29-4a78-bdf2-4a2dfae4769d",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:delete",
                      "status-code": "409 Conflict",
                      "req-time": "2020-05-06T05:28:50+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "bfff6437-7f8d-48eb-9892-8c19f298b40b",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:delete",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T05:27:36+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "428e0f6c-971b-4217-9898-b8decef66ff6",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:delete",
                      "status-code": "409 Conflict",
                      "req-time": "2020-05-06T05:26:56+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center1\"\r\n        }\r\n    }\r\n}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "cb064332-9d23-41bf-af66-5a60416385c9",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:undeploy",
                      "status-code": "409 Conflict",
                      "req-time": "2020-05-06T05:25:25+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "39319b84-41b2-450b-a372-be3a6f5954e1",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T05:24:59+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "c56d8541-2285-4daf-a294-bfe2accc672f",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T05:24:59+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "1a9d8dc8-23ce-4e1f-9532-7c050af01a18",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:undeploy",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T05:24:52+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "2c616db5-1e7c-4d55-acfa-27fe51499be0",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:undeploy",
                      "status-code": "409 Conflict",
                      "req-time": "2020-05-06T05:24:11+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center1\"\r\n        }\r\n    }\r\n}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "GET",
                      "log-id": "da310555-d4f4-4ac8-9eaa-56ac16ce45a6",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:undeploy",
                      "status-code": "405 Method Not Allowed",
                      "req-time": "2020-05-06T05:24:00+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Cente1r\"\r\n        }\r\n    }\r\n}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "3d2aea3b-d419-4e48-9c7a-4356c5238931",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deactivate",
                      "status-code": "409 Conflict",
                      "req-time": "2020-05-06T05:15:58+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "1060cebe-2bc9-46f6-b864-0b9123d2e95f",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deactivate",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T05:15:36+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "682e314c-dd2e-49ae-b86e-3a3162816ead",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deactivate",
                      "status-code": "409 Conflict",
                      "req-time": "2020-05-06T05:15:00+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center1\"\r\n        }\r\n    }\r\n}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "60dd0071-3918-4fdc-abfa-312baef2ba93",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:activate",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T05:11:15+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "ed790d2e-8b8e-437a-90d0-18996441d493",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deactivate",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T05:11:09+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "7a47f030-c19b-47a5-8da1-c32777dce510",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:activate",
                      "status-code": "409 Conflict",
                      "req-time": "2020-05-06T05:10:45+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "da2f71c7-40ab-496b-b422-6c9916b1006f",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T05:10:21+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "24e059d4-3c83-419c-b06b-1decf5a1dd0c",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T05:10:19+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"content-provider\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "4f8bbf08-56c7-4813-a398-396e9516f381",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T05:10:19+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "456e9811-5b89-4999-89c1-a2c8b36d0308",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T05:10:19+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "9f22d9c9-9f38-4ebe-8aae-2a4479692a25",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:activate",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T05:10:13+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "9ff9a477-e0bb-4633-913d-ec678aa3e901",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:activate",
                      "status-code": "409 Conflict",
                      "req-time": "2020-05-06T05:09:36+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center1\"\r\n        }\r\n    }\r\n}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "07dfe00d-0c32-4678-a8ee-57c47bb615cf",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deploy",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T05:03:20+00:00",
                      "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n           \"availability\" : \"available\"\r\n       }\r\n    }\r\n }",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "c5aaeb4d-450b-4f98-9af8-e43f0c4932c1",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deploy",
                      "status-code": "409 Conflict",
                      "req-time": "2020-05-06T05:02:55+00:00",
                      "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center1\",\r\n           \"availability\" : \"available\"\r\n       }\r\n    }\r\n }",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "730cfbc1-a93f-43f1-a5d6-63733f72ad44",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:undeploy",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T05:02:33+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "d08d2cdd-1957-47da-9000-79d9eabbf543",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deploy",
                      "status-code": "409 Conflict",
                      "req-time": "2020-05-06T05:01:56+00:00",
                      "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n           \"availability\" : \"available\"\r\n       }\r\n    }\r\n }",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "8687bdaa-a5cc-48c1-b22c-3648612ef793",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T05:01:04+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "c9d68a1d-0298-461f-ae1b-cecdb095f1ff",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deploy",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T05:00:55+00:00",
                      "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n           \"availability\" : \"available\"\r\n       }\r\n    }\r\n }",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "1e65bbd9-d01f-4fa0-83dd-47024134ab02",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deploy",
                      "status-code": "409 Conflict",
                      "req-time": "2020-05-06T05:00:47+00:00",
                      "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center2\",\r\n           \"availability\" : \"available\"\r\n       }\r\n    }\r\n }",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "4f746489-eda0-47e7-b83d-1af531cd1304",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deploy",
                      "status-code": "409 Conflict",
                      "req-time": "2020-05-06T05:00:29+00:00",
                      "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center 2\",\r\n           \"availability\" : \"available\"\r\n       }\r\n    }\r\n }",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "dafa2b00-6d24-41cb-a496-05cac34ba4bb",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T04:49:25+00:00",
                      "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n            \"type\" : \"Generic\",\r\n            \"profile-vector-name\" : \"\"\r\n       }\r\n    }\r\n }",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "7ee8d9d7-a893-47a9-82f0-4c360c2cb8a9",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
                      "status-code": "400 Bad Request",
                      "req-time": "2020-05-06T04:49:02+00:00",
                      "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n            \"types\" : \"Generic\",\r\n            \"profile-vector-name\" : \"\"\r\n       }\r\n    }\r\n }",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "f15c9b10-9dc3-492e-bf20-f5f1097e6d86",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:delete",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T04:48:15+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "121418ba-4b37-4df3-9ed8-5693255164b9",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T04:47:54+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "5a24b044-070a-483c-80c1-582e6037d9a7",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T04:40:44+00:00",
                      "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n            \"type\" : \"Generic\",\r\n            \"profile-vector-names\" : \"\"\r\n       }\r\n    }\r\n }",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "49a55c6e-83fb-4d26-b996-1ac767ecf16c",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
                      "status-code": "400 Bad Request",
                      "req-time": "2020-05-06T04:40:37+00:00",
                      "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n            \"types\" : \"Generic\",\r\n            \"profile-vector-names\" : \"\"\r\n       }\r\n    }\r\n }",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "f08839ba-8b99-40ca-a4a8-8ec5ca6ccde7",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
                      "status-code": "400 Bad Request",
                      "req-time": "2020-05-06T04:40:21+00:00",
                      "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n            \"types\" : \"Generic\",\r\n            \"profile-vector-name\" : \"\"\r\n       }\r\n    }\r\n }",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "935e96c0-5f3c-46d9-bef4-59ca486aad00",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:delete",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T04:39:25+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "37e6c112-f751-4b19-9eaa-3d5e78d50f65",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T04:39:02+00:00",
                      "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n            \"type\" : \"Generic\",\r\n            \"profile-vector-name\" : \"Vector Name\"\r\n       }\r\n    }\r\n }",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "d50d4e7b-3f49-45d2-a853-d91f3a2e05fe",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:delete",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T04:38:31+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "11d966b7-5fd0-4a89-9a3e-dc7cda5cbc74",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T04:37:26+00:00",
                      "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n            \"type\" : \"GenericCase\",\r\n            \"profile-vector-name\" : \"\"\r\n       }\r\n    }\r\n }",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "5da9e31e-74af-4f86-88d0-55d52c3c64b5",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T04:36:34+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "96220e7a-9ef2-4494-9510-a0f55ae09136",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T04:36:34+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "a2364a72-9ba7-42a2-9175-3b864858f89c",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:delete",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T04:36:28+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Centre\"\r\n        }\r\n    }\r\n}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "b1c22992-da7b-416c-97d7-43109573dfea",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:undeploy",
                      "status-code": "409 Conflict",
                      "req-time": "2020-05-06T04:36:12+00:00",
                      "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Centre\"\r\n        }\r\n    }\r\n}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "4a12cd9e-d2f1-437a-b376-bc88a7ae5ee5",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
                      "status-code": "409 Conflict",
                      "req-time": "2020-05-06T04:35:02+00:00",
                      "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Centre\",\r\n            \"type\" : \"Generic\",\r\n            \"profile-vector-name\" : \"\"\r\n       }\r\n    }\r\n }",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "44a89a3f-f5f2-46b5-9a75-65e869787bf6",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T04:33:46+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "794ba004-9916-4faa-8c97-f1be3fc3a1d0",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T04:33:45+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "556818aa-1962-475c-84f5-12e62f9ab027",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T04:33:45+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "37d8c035-ff18-4580-8706-34833719e8d9",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T04:33:44+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "1751b179-40ef-4ed9-902b-04017ff60ab1",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T04:33:44+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "9fb63ff7-47c6-452a-ad6f-d73a5af5cfaf",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-search:search",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T04:33:44+00:00",
                      "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "77727a27-de44-441c-b41a-446c9e1a68a5",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T04:33:35+00:00",
                      "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Centre\",\r\n            \"type\" : \"Generic\",\r\n            \"profile-vector-name\" : \"\"\r\n       }\r\n    }\r\n }",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "2716ef60-2c2e-479b-b735-769e1e596f67",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T04:33:29+00:00",
                      "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "ca4a33a1-5dc3-4b4b-a3b3-f6620b382860",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-event-summary",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T04:33:27+00:00",
                      "content": "{\"input\":{\"summary-field\":\"severity\",\"exact-match\":true}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "72dddde9-3ffd-4de1-9178-497f6673ac07",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T04:33:27+00:00",
                      "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "bdf9a7d9-c33a-4438-b449-eee0f0bd2eb8",
                      "username": "ADMIN",
                      "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T04:33:27+00:00",
                      "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "GET",
                      "log-id": "f803fc87-2ed5-4f4b-9ad0-bfe8da591c55",
                      "username": "Username Not Provided",
                      "uri": "/restconf/data/adtran-launchpad-login:login-screen",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T04:33:26+00:00",
                      "content": "",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "07d565b7-f91d-4e90-9def-c041c28866e1",
                      "username": "Username Not Provided",
                      "uri": "/restconf/operations/adtran-auth-token:request-token",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T04:33:26+00:00",
                      "content": "{\"password\":\"********\",\"username\":\"ADMIN\"}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "4cc7546a-6857-4799-aac4-b27f1da45499",
                      "username": "Username Not Provided",
                      "uri": "/restconf/operations/adtran-auth-user:reset-password",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T04:33:25+00:00",
                      "content": "{\"new-password\":\"********\",\"old-password\":\"********\",\"username\":\"ADMIN\"}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "GET",
                      "log-id": "2852d80f-ff94-4e28-916b-d69f8e580b09",
                      "username": "Username Not Provided",
                      "uri": "/restconf/data/adtran-launchpad-login:login-screen",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T04:33:16+00:00",
                      "content": "",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "bca8bfcc-3b59-438a-bd68-c25694b640ed",
                      "username": "Username Not Provided",
                      "uri": "/restconf/operations/adtran-auth-token:request-token",
                      "status-code": "401 Unauthorized",
                      "req-time": "2020-05-06T04:33:16+00:00",
                      "content": "{\"password\":\"********\",\"username\":\"ADMIN\"}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "GET",
                      "log-id": "c7dea737-ac75-4e1a-8f1e-a863deecbc00",
                      "username": "Username Not Provided",
                      "uri": "/restconf/data/adtran-launchpad-login:login-screen",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T04:33:07+00:00",
                      "content": "",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "1f00abcd-1cfa-4529-b1d1-38d6ae19ce26",
                      "username": "Username Not Provided",
                      "uri": "/restconf/operations/adtran-auth-token:request-token",
                      "status-code": "401 Unauthorized",
                      "req-time": "2020-05-06T04:33:07+00:00",
                      "content": "{\"password\":\"********\",\"username\":\"ADMIN\"}",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "GET",
                      "log-id": "ded01199-9be8-4354-ae0c-4ae1e3bbbcac",
                      "username": "Username Not Provided",
                      "uri": "/restconf/data/adtran-launchpad-login:login-screen",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T04:32:34+00:00",
                      "content": "",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "GET",
                      "log-id": "e2acbb30-6e7a-4411-8eae-2bf2652ba99b",
                      "username": "Username Not Provided",
                      "uri": "/restconf/data/adtran-launchpad-login:login-screen",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T04:32:31+00:00",
                      "content": "",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "GET",
                      "log-id": "55955e4d-e1e2-4439-9dc5-19b945121535",
                      "username": "Username Not Provided",
                      "uri": "/restconf/data/adtran-feature-flags:feature-flags",
                      "status-code": "200 OK",
                      "req-time": "2020-05-06T04:32:30+00:00",
                      "content": "",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "7589b971-9ab2-4d5d-a788-940ec9d97421",
                      "username": "{\"message\":\"Failed authentication\"}",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
                      "status-code": "401 Unauthorized",
                      "req-time": "2020-05-06T04:31:47+00:00",
                      "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Centre\",\r\n            \"type\" : \"Generic\",\r\n            \"profile-vector-name\" : \"\"\r\n       }\r\n    }\r\n }",
                      "ip-address": "172.22.181.204"
                    },
                    {
                      "method": "POST",
                      "log-id": "15a68fc0-ba57-4939-af6e-7e50eea85b58",
                      "username": "{\"message\":\"Anonymous access not authorized\"}",
                      "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
                      "status-code": "401 Unauthorized",
                      "req-time": "2020-05-06T04:31:34+00:00",
                      "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Centre\",\r\n            \"type\" : \"Generic\",\r\n            \"profile-vector-name\" : \"\"\r\n       }\r\n    }\r\n }",
                      "ip-address": "172.22.181.204"
                    }
                  ],
                  "cursor": 178,
                  "total-count": 178
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-credentials:credentials/credential": {
      "post": {
        "tags": [
          "Credentials"
        ],
        "summary": "Create Credential",
        "description": "This API sets the credentials to be used for network element management.\n\n----\n### Note\n* Different set of network elements can have different credentials\n\n| Attribute | Description |\n| --- | --- |\n| name | **Required:** A user configurable name for the credentials. Upon creation of the credential, the associated name will default to a unique value. |\n| Authenticate Type | **Required:** Means to create credential (see options below). <br/> <b> Possible types: </b> <br/> <i> <b>password-authentication</b> Network element can be accessed using password </i> </br> <i> <b>key-authentication</b> Network element can be accessed using a token key </i> <br/><i> <b>password-only-authentication</b> Authentication parameters for access without username. </i> <br/>|\n| password-authentication | <b>username :</b>  Username for access to the network element.</br><b>password :</b> Password for access to the network element. |\n| key-authentication | <b>username :</b> Username for access to the network element.</br><b>key :</b> key for access to the network element. |\n| password-only-authentication | <b>password :</b> Authentication parameters for access without username.|",
        "operationId": "CreateCredential",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateCredentialRequest"
              },
              "example": {
                "name": "credential_1",
                "key-authentication": {
                  "username": "root",
                  "key": "{{basic-auth-password}}"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "description": "Created",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Wed, 06 May 2020 08:50:28 GMT"
                    },
                    "example": "Wed, 06 May 2020 08:50:28 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "0"
                    },
                    "example": "0"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "no-store"
                    },
                    "example": "no-store"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"7a4880ce-b67e-4b21-8eb5-02b2d88774f1\""
                    },
                    "example": "\"7a4880ce-b67e-4b21-8eb5-02b2d88774f1\""
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {}
          },
          "409": {
            "description": "Conflict",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Wed, 06 May 2020 08:50:49 GMT"
                    },
                    "example": "Wed, 06 May 2020 08:50:49 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "118"
                    },
                    "example": "118"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/CreateCredential-AlreadyExists1"
                },
                "example": {
                  "message": "Cannot overwrite path List(adtran-cloud-platform-credentials, credentials, credential=credential_1)"
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-credentials:credentials/credential=credential_2": {
      "put": {
        "tags": [
          "Credentials"
        ],
        "summary": "Update Credential Password Only Authentication",
        "description": "This API sets the credentials to be used for network element management.\n\n----\n### Note\n* Different set of network elements can have different credentials\n\n| Attribute | Description |\n| --- | --- |\n| name | **Required:** A user configurable name for the credentials. Upon creation of the credential, the associated name will default to a unique value. |\n| Authenticate Type | **Required:** Means to create credential (see options below). <br/> <b> Possible types: </b> <br/> <i> <b>password-authentication</b> Network element can be accessed using password </i> </br> <i> <b>key-authentication</b> Network element can be accessed using a token key </i> <br/><i> <b>password-only-authentication</b> Authentication parameters for access without username. </i> <br/>|\n| password-authentication | <b>username :</b>  Username for access to the network element.</br><b>password :</b> Password for access to the network element. |\n| key-authentication | <b>username :</b> Username for access to the network element.</br><b>key :</b> key for access to the network element. |\n| password-only-authentication | <b>password :</b> Authentication parameters for access without username.|",
        "operationId": "UpdateCredentialPasswordOnlyAuthentication",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateCredentialPasswordOnlyAuthenticationRequest"
              },
              "example": {
                "name": "credential_2",
                "password-only-authentication": {
                  "password": "P@ssw0rd1"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "default": {
            "description": "",
            "headers": {},
            "content": {}
          }
        },
        "deprecated": false
      },
      "delete": {
        "tags": [
          "Credentials"
        ],
        "summary": "Delete Credential Password Only",
        "description": "Delete external authentication configurations. The name of the Policy to delete is specified in the URL.",
        "operationId": "DeleteCredentialPasswordOnly",
        "parameters": [],
        "responses": {
          "default": {
            "description": "",
            "headers": {},
            "content": {}
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-credentials:credentials/credential=credential_1": {
      "get": {
        "tags": [
          "Credentials"
        ],
        "summary": "Get Credentials By Name",
        "description": "Fetches credential by name. Depending on the type of credential, the output will vary. See below.\n\n| Attribute | Description |\n| --- | --- |\n| name | This represents unique name of the credential. |\n| password-authentication | Authentication parameters for network element access. <br><b>username</b>: This represents username for access to the network element. <br><b>password</b>: This represents password for access to the network element. |\n| key-authentication | Key authentication parameters for network element access. <br><b>username</b>: This represents username for access to the network element. <br><b>password</b>: This represents key for access to the network element. |",
        "operationId": "GetCredentialsByName",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 08 May 2020 17:35:07 GMT"
                    },
                    "example": "Fri, 08 May 2020 17:35:07 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "94"
                    },
                    "example": "94"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "private, no-cache"
                    },
                    "example": "private, no-cache"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"f3b38ea6-0a91-41b9-95fb-8362cb01b5af\""
                    },
                    "example": "\"f3b38ea6-0a91-41b9-95fb-8362cb01b5af\""
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetCredentialsByName-Success"
                },
                "example": {
                  "name": "OLT Credentials",
                  "password-authentication": {
                    "username": "hsvroot",
                    "password": "BOSCO"
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      },
      "delete": {
        "tags": [
          "Credentials"
        ],
        "summary": "Delete Credential",
        "description": "This API deletes the credential by name in the URL parameter.",
        "operationId": "DeleteCredential",
        "parameters": [],
        "responses": {
          "404": {
            "description": "Not Found",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Wed, 06 May 2020 09:40:14 GMT"
                    },
                    "example": "Wed, 06 May 2020 09:40:14 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "111"
                    },
                    "example": "111"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/DeleteCredential-IncorrectCredentialNotExists1"
                },
                "example": {
                  "message": "Could not find path List(adtran-cloud-platform-credentials, credentials, credential=invalid)"
                }
              }
            }
          },
          "204": {
            "description": "No Content",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Wed, 06 May 2020 09:39:41 GMT"
                    },
                    "example": "Wed, 06 May 2020 09:39:41 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "0"
                    },
                    "example": "0"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "no-store"
                    },
                    "example": "no-store"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"9abddfde-2e8c-40ee-b3f3-5e020ad9edbb\""
                    },
                    "example": "\"9abddfde-2e8c-40ee-b3f3-5e020ad9edbb\""
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {}
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-credentials:credentials": {
      "get": {
        "tags": [
          "Credentials"
        ],
        "summary": "Get All Credentials",
        "description": "Fetches a list of credentials configured in the system. Returns a list of attributes as a response.\n\n| Attribute | Description |\n| --- | --- |\n| name | This represents unique name of the credential. |\n| password-authentication | Authentication parameters for network element access. <br><b>username</b>: This represents username for access to the network element. <br><b>password</b>: This represents password for access to the network element. |\n| key-authentication | Key authentication parameters for network element access. <br><b>username</b>: This represents username for access to the network element. <br><b>password</b>: This represents key for access to the network element. |",
        "operationId": "GetAllCredentials",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 08 May 2020 11:08:15 GMT"
                    },
                    "example": "Fri, 08 May 2020 11:08:15 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "324"
                    },
                    "example": "324"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "private, no-cache"
                    },
                    "example": "private, no-cache"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"3f3ebc86-18c4-4ac9-b9da-38c2ca92a914\""
                    },
                    "example": "\"3f3ebc86-18c4-4ac9-b9da-38c2ca92a914\""
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetCredentials-Success"
                },
                "example": {
                  "credentials": {
                    "credential": [
                      {
                        "name": "OLT Credentials",
                        "password-authentication": {
                          "username": "root",
                          "password": "password"
                        }
                      },
                      {
                        "name": "SFTP Server Credentials",
                        "password-authentication": {
                          "username": "adtran",
                          "password": "netvanta"
                        }
                      },
                      {
                        "name": "pmaa-default",
                        "password-authentication": {
                          "username": "adtran",
                          "password": "adtran"
                        }
                      }
                    ]
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-auth-config-external:auth-methods/auth-method": {
      "post": {
        "tags": [
          "Policy"
        ],
        "summary": "Create External Policy - RADIUS",
        "description": "Create external authentication configurations using RADIUS as the authentication method.\n\n<br>\nURL Request query parameter details - \n<br>\n\n| Attribute | Description |\n| --- | --- |\n| auth-method | **Required** Name of the authentication method which defines external authentication configuration. Set to `radius`. |\n\nRequest body details -\n<br>\n\n| Attributes | Description |\n| --- | --- |\n| name  | Name of authentication method. |\n| retry-times | Number of times authentication can be attempted with this method. <br/><b>Possible values: </b> <i>0..255<i> |\n| use-for-non-local-users | If true, this auth method will be tried for users who are not configured locally in MCP. If false (default), it will only be tried for users that also exist locally.  <br/> <b> Default value: </b> <i> false</i><br/> <b> Possible values </b> <i>true or false </i> |\n| accounting-port | The accounting port for authentication server. |\n| host | Unique host for authentication server. |\n| auth-port | The authentication port for authentication server. |\n| timeout | The timeout for authentication server. <br/><b>Possible values: </b> <i>0.. 4,294,967,295<i> |\n| shared-secret-credential | The credentials must use password-only authentication. This value is a string. |",
        "operationId": "CreateExternalPolicy-RADIUS",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateExternalPolicy-RADIUSRequest"
              },
              "example": {
                "name": "test-policy",
                "retry-times": 2,
                "use-for-non-local-users": true,
                "radius": {
                  "host": "10.2.1.1",
                  "auth-port": 1812,
                  "timeout": 200,
                  "shared-secret-credential": "credential_2",
                  "accounting-port": 1813
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "409": {
            "description": "Conflict",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 08 May 2020 12:11:26 GMT"
                    },
                    "example": "Fri, 08 May 2020 12:11:26 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "83"
                    },
                    "example": "83"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/CreateExternalAuthMethod-Methodalreadyexists1"
                },
                "example": {
                  "message": "Cannot overwrite path List(adtran-auth-config-external, auth-methods)"
                }
              }
            }
          },
          "201": {
            "description": "Created",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 08 May 2020 12:12:53 GMT"
                    },
                    "example": "Fri, 08 May 2020 12:12:53 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "0"
                    },
                    "example": "0"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "no-store"
                    },
                    "example": "no-store"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"b282535d-c774-42bb-b697-7e9c01f10136\""
                    },
                    "example": "\"b282535d-c774-42bb-b697-7e9c01f10136\""
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {}
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-auth-config-external:auth-methods/auth-method=test-policy": {
      "put": {
        "tags": [
          "Policy"
        ],
        "summary": "Update External Policy - RADIUS",
        "description": "This API defines external authentication configuration update.\n\n<br>\nURL Request query parameter details - \n<br>\n\n| Attribute | Description |\n| --- | --- |\n| auth-method | **Required** Name of the authentication method which defines external authentication configuration. Set to `radius`. |\n\n<br>\nRequest body details - \n<br>\n\n| Attribute | Description |\n| --- | --- |\n| name | **Required** Name of the authentication method. |\n| retry-times | Number of times authentication can be attempted with this method. |\n| use-for-non-local-users | If true, this auth method will be tried for users who are not configured locally in MCP. If false (default), it will only be tried for users that also exist locally. <br><b>Default Value: </b><i> false </i> |\n| host | The unique host for authentication server. |\n| auth-port | The authentication port for authentication server. |\n| timeout | The timeout for authentication server. |\n| shared-secret-credential | The credentials must use password-only authentication. This value is a string. |",
        "operationId": "UpdateExternalPolicy-RADIUS",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateExternalPolicy-RADIUSRequest"
              },
              "example": {
                "name": "test-policy",
                "retry-times": 2,
                "use-for-non-local-users": true,
                "radius": {
                  "host": "10.2.1.1",
                  "auth-port": 1812,
                  "timeout": 6000,
                  "shared-secret-credential": "credential_2",
                  "accounting-port": 1813
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "description": "Created",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 Jan 2021 19:24:33 GMT"
                    },
                    "example": "Tue, 05 Jan 2021 19:24:33 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"70bfda4f-60ef-4b46-a345-f53690e5ea89\""
                    },
                    "example": "\"70bfda4f-60ef-4b46-a345-f53690e5ea89\""
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "no-store"
                    },
                    "example": "no-store"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              }
            },
            "content": {}
          }
        },
        "deprecated": false
      },
      "delete": {
        "tags": [
          "Policy"
        ],
        "summary": "Delete External Policy - RADIUS",
        "description": "Delete external authentication configurations. The name of the Policy to delete is specified in the URL.",
        "operationId": "DeleteExternalPolicy-RADIUS",
        "parameters": [],
        "responses": {
          "404": {
            "description": "Not Found",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DeleteExternalPolicy-PolicyDoesntExist1"
                },
                "example": {
                  "message": "Could not find path List(adtran-auth-config-external, auth-methods, auth-method=test-policy-not-exists)"
                }
              }
            }
          },
          "204": {
            "description": "No Content",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 27 Oct 2020 16:15:19 GMT"
                    },
                    "example": "Tue, 27 Oct 2020 16:15:19 GMT"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"0342a8d0-8224-475c-b4fc-3aad6fc0e0fd\""
                    },
                    "example": "\"0342a8d0-8224-475c-b4fc-3aad6fc0e0fd\""
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "no-store"
                    },
                    "example": "no-store"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              }
            },
            "content": {}
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-auth-config-external:auth-methods/auth-method=test-policy-2": {
      "put": {
        "tags": [
          "Policy"
        ],
        "summary": "Update External Policy - TACACS+",
        "description": "This API defines external authentication configuration update.\n\n<br>\nRequest query parameter details - \n<br>\n\n| Attribute | Description |\n| --- | --- |\n| auth-method | **Required** Name of the authentication method which defines external authentication configuration. Set to `tacacsplus`. |\n\n<br>\nURL Request body details - \n<br>\n\n| Attribute | Description |\n| --- | --- |\n| name | **Required** Name of the authentication method. |\n| retry-times | Number of times authentication can be attempted with this method. |\n| use-for-non-local-users | If true, this auth method will be tried for users who are not configured locally in MCP. If false (default), it will only be tried for users that also exist locally. <br><b>Default Value: </b><i> false </i> |\n| tacacsplus | Collection of all tacacsplus server specific configuration parameters. |\n| host | The unique host for authentication server. |\n| auth-port | The authentication port for authentication server. |\n| timeout | The timeout for authentication server. |\n| shared-secret-credential | The credentials must use password-only authentication. This value is a string. |\n| single-connect | TACACS+ single connect. <br/><b>Possible values: </b> <i>true, false<i> |",
        "operationId": "UpdateExternalPolicy-TACACS+",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateExternalPolicy-TACACSRequest"
              },
              "example": {
                "name": "test-policy-2",
                "retry-times": 5,
                "use-for-non-local-users": true,
                "tacacsplus": {
                  "host": "10.27.28.44",
                  "auth-port": 49,
                  "timeout": 7000,
                  "shared-secret-credential": "credential_2",
                  "single-connect": true
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "400": {
            "description": "Bad Request",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Mon, 11 May 2020 13:13:37 GMT"
                    },
                    "example": "Mon, 11 May 2020 13:13:37 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "93"
                    },
                    "example": "93"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/ExternalPolicy-IncorrectAuth-Method1"
                },
                "example": {
                  "message": "Expected keys 'List(name)' to match in both the path and the document"
                }
              }
            }
          },
          "201": {
            "description": "Created",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Mon, 11 May 2020 10:12:16 GMT"
                    },
                    "example": "Mon, 11 May 2020 10:12:16 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "0"
                    },
                    "example": "0"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "no-store"
                    },
                    "example": "no-store"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"b1b00f72-2f42-44a7-891d-f57670d1f5f2\""
                    },
                    "example": "\"b1b00f72-2f42-44a7-891d-f57670d1f5f2\""
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {}
          }
        },
        "deprecated": false
      },
      "delete": {
        "tags": [
          "Policy"
        ],
        "summary": "Delete External Policy - TACACS+",
        "description": "Delete external authentication configurations. The name of the Policy to delete is specified in the URL.",
        "operationId": "DeleteExternalPolicy-TACACS+",
        "parameters": [],
        "responses": {
          "default": {
            "description": "",
            "headers": {},
            "content": {}
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-auth-config-external:auth-methods/auth-method=test-policy-3": {
      "get": {
        "tags": [
          "Policy"
        ],
        "summary": "Get External Policy",
        "description": "Fetches a list of external authentication configurations. Returns a list of attributes as a response.\n\n<br>\nURL Request query parameter details - \n<br>\n\n| Attribute | Description |\n| --- | --- |\n| auth-method | **Required** Name of the authentication method which defines external authentication configuration. Set to `radius`, `tacacsplus`, or `internal`. |\n\nRequest body details -\n<br>\n\n| Attribute | Description |\n| --- | --- |\n| name          | This represents the name of authentication method.   |\n| retry-times          |\tNumber of times authentication can be attempted with this method.  <br/><b>Possible values: </b> <i>0...255<i>        |\n| use-for-non-local-users  | If true, this auth method will be tried for users who are not configured locally in MCP. If false (default), it will only be tried for users that also exist locally.  <br/> <b> Default value: </b> <i> false</i><br/> <b> Possible values </b> <i>true or false </i>      |\n| radius      | Collection of all radius server specific configuration parameters.  |\n| accounting-port  |\tThe accounting port for authentication server.       |\n| host           |\tThis represents unique host for authentication server.            |\n| auth-port      |\tThe authentication port for authentication server.          |\n| timeout        |\tThe timeout for authentication server.  <br/><b>Possible values: </b> <i>0..4,294,967,295<i>       |\n| shared-secret-credential | The credentials must use password-only authentication. This value is a string. |\n| single-connect |\tTACACS+ single connect.  <br/><b>Possible values: </b> <i>true, false<i>  |\n| internal       |\tUse internal authentication. <br/><b>Possible values: </b> <i>[null]<i>  |",
        "operationId": "GetExternalPolicy",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 01 Apr 2021 21:02:09 GMT"
                    },
                    "example": "Thu, 01 Apr 2021 21:02:09 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "W/\"34360b75-37fc-4cc8-8d86-ab0cf8df875f\""
                    },
                    "example": "W/\"34360b75-37fc-4cc8-8d86-ab0cf8df875f\""
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "private, no-cache"
                    },
                    "example": "private, no-cache"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetExternalPolicy-Success"
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-launchpad-login:login-screen": {
      "put": {
        "tags": [
          "Login Banner"
        ],
        "summary": "Update Login Banner",
        "description": "Container for a user interface's login screen settings. This information will be visible on a login screen prior to authentication, so anonymous users will have access to this data.\n\n<br>\nRequest Payload Details\n</br>\n\n\n| Attribute | Description |\n|---|---|\n| banner-message   | A message to display on a login screen prior to a user login. If no message or an empty message is provided, no message will display and the login screen will be unaltered from its regular appearance.  <br/> <b> Possible values: </b><i>  string with range 0..8192 </i>                                                                                                       |\n| admin-contact   | Holds the email address of the system's administrative contact. This information will be accessible from the login page as a help mechanism. If empty or absent, no contact mechanism will be provided to users. <br/> <b> Possible values: </b><i>  string with range 0..255 </i>                                                                                                          |",
        "operationId": "UpdateLoginBanner",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateLoginBannerRequest"
              },
              "example": {
                "login-screen": {
                  "banner-message": "{{login-banner-message}}",
                  "admin-contact": "{{login-banner-email}}"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "204": {
            "description": "No Content",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Mon, 11 May 2020 11:45:30 GMT"
                    },
                    "example": "Mon, 11 May 2020 11:45:30 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "0"
                    },
                    "example": "0"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "no-store"
                    },
                    "example": "no-store"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"f79cc8b5-032f-451f-9f46-252fa6c115e9\""
                    },
                    "example": "\"f79cc8b5-032f-451f-9f46-252fa6c115e9\""
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {}
          }
        },
        "deprecated": false
      },
      "get": {
        "tags": [
          "Login Banner"
        ],
        "summary": "Get Login Banner",
        "description": "Get the user interface's login screen settings. This information will be visible on a login screen prior to authentication, so anonymous users will have access to this data.\n\n**Response Details**\n\n| Attribute | Description |\n|---|---|\n| banner-message         |\tA message to display on a login screen prior to a user login. If no message or an empty message is provided, no message will display and the login screen will be unaltered from its regular appearance. <br/> <b>Possible values:</b> <i>string with length 0..8192</i>        |\n| admin-contact      | Holds the email address of the system's administrative contact. This information will be accessible from the login page as a help mechanism. If empty or absent, no contact mechanism will be provided to users. <br/> <b>Possible values:</b> <i>string with length 0..255</i>  |",
        "operationId": "GetLoginBanner",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 08 May 2020 11:03:56 GMT"
                    },
                    "example": "Fri, 08 May 2020 11:03:56 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "398"
                    },
                    "example": "398"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "private, no-cache"
                    },
                    "example": "private, no-cache"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"da156834-6098-44a6-9a33-f89adbab067b\""
                    },
                    "example": "\"da156834-6098-44a6-9a33-f89adbab067b\""
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetLoginBanner"
                },
                "example": {
                  "login-screen": {
                    "banner-message": "ADTRAN is a leading global provider of networking and communications equipment.\n\nOur products enable voice, data, video and Internet communications across a variety of network infrastructures. Our solutions are currently in use by service providers, private enterprises, government organizations and millions of individual users worldwide.",
                    "admin-contact": ""
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-cloud-platform-elasticsearch-rollover-indices:schedule-rollover-attempt": {
      "post": {
        "tags": [
          "Elasticsearch Rollover"
        ],
        "summary": "Schedule Rollover",
        "description": "Configures the cron expression of the PIN script which attempts to call rollover on indices at configured cron interval.\n\n<br>\nRequest Payload Details\n</br>\n\n\n| Attributes | Description |\n|---|---|\n|cron-expression|The cron expression indicating the time and frequency the scheduled cron job runs.<br/><b>Cron Format</b> <br/> ``*`` minute:\t0-59<br/>``*`` hour:\t0-23<br/> ``*``day of month:\t1-31<br/>``*``month:\t1-12 or JAN-DEC<br/>``*``day of week:\t0-6 or SUN-SAT<br/>|",
        "operationId": "ScheduleRollover",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ScheduleRolloverRequest"
              },
              "example": {
                "input": {
                  "cron-expression": "0 0 0/6 * * ? *"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 08 May 2020 10:25:22 GMT"
                    },
                    "example": "Fri, 08 May 2020 10:25:22 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "74"
                    },
                    "example": "74"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/ScheduleRollover"
                },
                "example": {
                  "message": "Updated cron-expression for rollover attempt successfully"
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-elasticsearch-rollover-indices:indices": {
      "get": {
        "tags": [
          "Elasticsearch Rollover"
        ],
        "summary": "Get All Rollover Indices",
        "description": "Fetches list of indices to be used for rollover and deletion. \n\n**Response Details**\n\n| Attribute | Description |\n|---|---|\n| alias-name   | This represents name of the alias used for an index.   |\n| is-index-rollover      |\tIf true, indicates that rollover and deletion is enabled for the index. <br/><b>Possible Formats: </b> <i>boolean<i>|\n| max-size   | The maximum approximate size an index is allowed to be before triggering a rollover. Sizes must use approved byte units. <i>eg. `max-size of 1gb indicates index will be rolled if it reaches 1GB`</i>  |\n| max-docs      |\tThe maximum number of documents allowed in an index before triggering a rollover. <br/><b>Possible Formats: </b> <i>uint32<i> <br/><i> eg. `max-docs of 100 indicates index will be rolled if it reaches 100 documents`</i> |\n| max-age   | The maximum age that is allowed before triggering a rollover. <i> eg. ages such as 1d for one day, or 30s for 30 seconds can be used.   |\n| max-allowed-indices      |\tThis represents how old aged indices will be deleted after reaching the given maximum number of allowed indices. <br/><b>Possible Formats: </b> <i>uint8<i> |",
        "operationId": "GetAllRolloverIndices",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 08 May 2020 12:56:52 GMT"
                    },
                    "example": "Fri, 08 May 2020 12:56:52 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "6423"
                    },
                    "example": "6423"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "private, no-cache"
                    },
                    "example": "private, no-cache"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"353874a9-75eb-4f5b-b819-8b50fccf79ff\""
                    },
                    "example": "\"353874a9-75eb-4f5b-b819-8b50fccf79ff\""
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetAllRolloverIndices-Success"
                },
                "example": {
                  "indices": {
                    "index": [
                      {
                        "alias-name": "device-configuration-backup",
                        "is-index-rollover": false,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "events-history",
                        "is-index-rollover": true,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "events-latest",
                        "is-index-rollover": false,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "firefly-aaa-accounting",
                        "is-index-rollover": true,
                        "delete-conditions": {
                          "max-allowed-indices": 14
                        },
                        "rollover-conditions": {
                          "max-size": "1gb",
                          "max-age": "7d"
                        }
                      },
                      {
                        "alias-name": "job-manager",
                        "is-index-rollover": true,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "job-manager-latest",
                        "is-index-rollover": true,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "mcp-hardware-tracking",
                        "is-index-rollover": true,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "mcp-subscriber-tracking",
                        "is-index-rollover": true,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "object-status-history",
                        "is-index-rollover": true,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "object-status-latest",
                        "is-index-rollover": false,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "script-exec-command",
                        "is-index-rollover": true,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "script-exec-command-latest",
                        "is-index-rollover": true,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "script-exec-log",
                        "is-index-rollover": true,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "upgrade-summary-report",
                        "is-index-rollover": true,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "upgrade-summary-report-latest",
                        "is-index-rollover": true,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "yds-bundle",
                        "is-index-rollover": true,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "yds-bundle-latest",
                        "is-index-rollover": false,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "yds-data-center",
                        "is-index-rollover": true,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "yds-data-center-latest",
                        "is-index-rollover": false,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "yds-device",
                        "is-index-rollover": true,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "yds-device-latest",
                        "is-index-rollover": false,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "yds-interface",
                        "is-index-rollover": true,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "yds-interface-latest",
                        "is-index-rollover": false,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "yds-inventory",
                        "is-index-rollover": true,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "yds-inventory-latest",
                        "is-index-rollover": false,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "yds-job",
                        "is-index-rollover": true,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "yds-job-latest",
                        "is-index-rollover": false,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "yds-label",
                        "is-index-rollover": true,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "yds-label-latest",
                        "is-index-rollover": false,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "yds-management-domain",
                        "is-index-rollover": true,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "yds-management-domain-latest",
                        "is-index-rollover": false,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "yds-profile",
                        "is-index-rollover": true,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "yds-profile-latest",
                        "is-index-rollover": false,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "yds-profile-vector",
                        "is-index-rollover": true,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "yds-profile-vector-latest",
                        "is-index-rollover": false,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "yds-provider",
                        "is-index-rollover": true,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "yds-provider-latest",
                        "is-index-rollover": false,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "yds-server",
                        "is-index-rollover": true,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "yds-server-latest",
                        "is-index-rollover": false,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "yds-service",
                        "is-index-rollover": true,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "yds-service-latest",
                        "is-index-rollover": false,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "yds-yang",
                        "is-index-rollover": true,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      },
                      {
                        "alias-name": "yds-yang-latest",
                        "is-index-rollover": false,
                        "delete-conditions": {
                          "max-allowed-indices": 15
                        },
                        "rollover-conditions": {
                          "max-size": "1gb"
                        }
                      }
                    ]
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-export-data-service:export": {
      "post": {
        "tags": [
          "Export Data"
        ],
        "summary": "Export Interface Inventory",
        "description": "Export interface inventory table data from Mosaic Cloud Platform in CSV format. The exported data will be saved to a zip file which can then be used for further processing.\nPossible field values include `interface-name`, `interface-type`, `state`, `interface-id`, `device-name`.\n\n**WARNING** This API is not intended for repeated mass export as it has a high resource usage.\n\n<br>\nRequest Payload Details\n</br>\n\n| Attribute | Description |\n| --- | --- |\n| type | **Required:** The table data to export. <br> <b>Possible Values:</b> <i> audit-logs, events-active, events-historic, device, interface, service</i> |\n| filters | A list of filters to refine search results. <br> <b>Possible Values:</b> <i> field (name of the field), value-list (list of values), exact-match(true/false) |",
        "operationId": "ExportInterfaceInventory",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ExportInterfaceInventoryRequest"
              },
              "example": {
                "input": {
                  "type": "interface",
                  "filters": [
                    {
                      "field": "interface-type",
                      "value-list": [
                        "Generic"
                      ],
                      "exact-match": false
                    },
                    {
                      "field": "state",
                      "value-list": [
                        "activated"
                      ],
                      "exact-match": false
                    }
                  ]
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 17 Dec 2020 21:02:23 GMT"
                    },
                    "example": "Thu, 17 Dec 2020 21:02:23 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "346"
                    },
                    "example": "346"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "content-disposition": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "attachment; filename=interface-2020-12-17-21-02-22.zip"
                    },
                    "example": "attachment; filename=interface-2020-12-17-21-02-22.zip"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              }
            },
            "content": {
              "application/octet-stream": {
                "schema": {
                  "type": "string",
                  "example": "<binary response>"
                },
                "example": "<binary response>"
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-settings:settings": {
      "patch": {
        "tags": [
          "Admin Settings"
        ],
        "summary": "Set Inactivity Logoff Time",
        "description": "This API sets the inactivity auto logoff time.\n\n\n| Attribute | Description |\n| --- | --- |\n| inactivity-time-logoff | **Optional:** inactivity-time-logoff: The time in minutes after which the user's session will expire if no API calls are made. A value of 0 means the auto logoff is disabled. <br><b>Possible values: </b>0 to 1440<br><b>Default value:</b> 30<br><b>|",
        "operationId": "SetInactivityLogoffTime",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SetInactivityLogoffTimeRequest"
              },
              "example": {
                "settings": {
                  "user-activity": {
                    "inactivity-time-logoff": 100
                  }
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "default": {
            "description": "",
            "headers": {},
            "content": {}
          },
          "400": {
            "description": "Bad Request",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 19 Mar 2021 15:03:04 GMT"
                    },
                    "example": "Fri, 19 Mar 2021 15:03:04 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/SetInactivityLogoffTime-Failure1"
                },
                "example": {
                  "message": "Unrecognized token 'a': was expecting (JSON String, Number, Array, Object or token 'null', 'true' or 'false')\n at [Source: (String)\"{\r\n    \"settings\":\r\n        {\r\n            \"user-activity\":{\"inactivity-time-logoff\":a}\r\n        }\r\n}\"; line: 4, column: 56]"
                }
              }
            }
          }
        },
        "deprecated": false
      },
      "get": {
        "tags": [
          "Admin Settings"
        ],
        "summary": "Get Inactivity Autologoff Time",
        "description": "This API retrieves the inactivity auto logoff time.\n<b>The response will be in the following format<b><br>\n{<br>\n    \"settings\": {<br>\n        \"credentials\": {<br>\n            \"password-visibility\": true<br>\n        },<br>\n        \"deferred-intent\": {<br>\n            \"enable-deferral\": false<br>\n        },<br>\n        \"gfast\": {},<br>\n        \"user-activity\": {<br>\n            \"inactivity-time-logoff\": 100<br>\n        }<br>\n    }<br>\n}<br>\n\nThe \"inactivity-time-logoff\" attribute shows the time value in minutes",
        "operationId": "GetInactivityAutologoffTime",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 19 Mar 2021 14:06:16 GMT"
                    },
                    "example": "Fri, 19 Mar 2021 14:06:16 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "W/\"cd39661a-da7d-44e0-854f-ab8b0868d974\""
                    },
                    "example": "W/\"cd39661a-da7d-44e0-854f-ab8b0868d974\""
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "private, no-cache"
                    },
                    "example": "private, no-cache"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetInactivityAutologoffTime-Success"
                },
                "example": {
                  "settings": {
                    "deferred-intent": {
                      "enable-deferral": false
                    },
                    "gfast": {},
                    "user-activity": {
                      "inactivity-time-logoff": 100
                    }
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-launchpad-login:login-screen/oidc-provider": {
      "get": {
        "tags": [
          "Single Sign On"
        ],
        "summary": "Get Single Sign On OIDC Provider",
        "description": "This API retrieves the Single Sign On OIDC Provider.  \nThe response will be in the following format\n\n{\"oidc-provider\":\n\n\\[\n\n{\"name\":\"OktaServerName\",\n\n\"client-id\":\"0oa3t35itpeQzWEyT123\",\n\n\"issuer-uri\":\"https://id-dev.adtran.cloud/oauth2/default\"}\n\n\\]\n\n}\n\nThese values are obtained from the Okta/Single Sign On server under the configured application.",
        "operationId": "GetSingleSignOnOIDCProvider",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Sun, 29 May 2022 15:32:29 GMT"
                    },
                    "example": "Sun, 29 May 2022 15:32:29 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "W/\"35fd49aa-8505-41b0-92c4-cc02fdfcc4a4\""
                    },
                    "example": "W/\"35fd49aa-8505-41b0-92c4-cc02fdfcc4a4\""
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "private, no-cache"
                    },
                    "example": "private, no-cache"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetSingleSignOnOIDCProvider-Success"
                },
                "example": {
                  "oidc-provider": []
                }
              }
            }
          }
        },
        "deprecated": false
      },
      "patch": {
        "tags": [
          "Single Sign On"
        ],
        "summary": "Set Single Sign On OIDC Provider",
        "description": "This API sets the OIDC provider for Single Sign On (SSO).\n\n| Attribute | Description |\n| --- | --- |\n| name | A placeholder name for the SSO configuration, used to modify or delete the OIDC provider. Not used during runtime. |\n| issuer-uri | Full URL to the external SSO provider. Obtained from the external server. This should not be the admin endpoint. |\n| client-id | The identifier for the client application. Obtained from the external server. |",
        "operationId": "SetSingleSignOnOIDCProvider",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SetSingleSignOnOIDCProviderRequest"
              },
              "example": {
                "oidc-provider": [
                  {
                    "name": "OktaServer",
                    "issuer-uri": "https://id-dev.adtran.cloud/oauth2/default",
                    "client-id": "0oa3t35itpeQzWEyT5d7"
                  }
                ]
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "description": "Created",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Sun, 29 May 2022 15:41:53 GMT"
                    },
                    "example": "Sun, 29 May 2022 15:41:53 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"ffd58344-e274-44a7-82ab-9972626bc335\""
                    },
                    "example": "\"ffd58344-e274-44a7-82ab-9972626bc335\""
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "no-store"
                    },
                    "example": "no-store"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              }
            },
            "content": {}
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-launchpad-login:login-screen/oidc-provider=OktaServer": {
      "delete": {
        "tags": [
          "Single Sign On"
        ],
        "summary": "Clear Single Sign On OIDC Provider",
        "description": "This API deletes the SSO OIDC provider by name in the URL parameter.",
        "operationId": "ClearSingleSignOnOIDCProvider",
        "parameters": [],
        "responses": {
          "204": {
            "description": "No Content",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Sun, 29 May 2022 15:42:47 GMT"
                    },
                    "example": "Sun, 29 May 2022 15:42:47 GMT"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"2a52e70e-183b-4a87-a13d-0ab3c96e5332\""
                    },
                    "example": "\"2a52e70e-183b-4a87-a13d-0ab3c96e5332\""
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "no-store"
                    },
                    "example": "no-store"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              }
            },
            "content": {}
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-cloud-platform-event-workflow:get-events": {
      "post": {
        "tags": [
          "Simple"
        ],
        "summary": "Get All Events",
        "description": "The Get Events API can be used for retrieving all the events on the system.\n\n| Attribute | Description |\n|---|---|\n| cursor | **Required**: Cursor position pointing to next request<br>**Possible values**: 0-4294967295.\n| current | Flag to search for historical/current alarms. If current is `true` then search for current (active) alarms. |\n| summary-field | Summary of all alarms based on the field provided. For example, if we provide search filters and provided summary-field as 'severity' and there are 30 matches against the search. Then result is the summary of the search alarms like critical 20 , major 10.<br>**Possible values**-\"severity\" or \"state\".|\n| result-size | Number of records to be returned in a single query. <br>**Possible values**: 0..1000.|\n| include-raw-content | Flag to include raw content in current alarms result set. If include-raw-content is `true` then include raw content in current alarms result set. *See `Filtering` folder requests for examples.* |\n| search-filter-and<br>search-filter-or | Accepts list of search criteria fields which are used to form the boolean queries. For searches included in a `search-filter-and` block, all searches must pass. For searches included in a `search-filter-or`, any search can pass to return a result.<br>See nested fields below can be used to construct search lists under an and/or block. |\n| search-filter-and<br>search-filter-or<br> <blockquote>search-field</blockquote> | Accepts list of search criteria fields which are used to form the boolean queries<br>**Possible values**<br>\\* **severity**: Sorts events on severity with `search-value` as `critical`, `major`, `minor`, `info`, `cleared`, `warning`<br>\\* **source**: Allows retrieval of event data from different sources.The source of the event e.g. a device, interface etc. eg. `mosaic-cp-cda`<br>\\* **identity**: Sorts events on event-identity.The identity of the event such as thermal-shutdown-alarm,high-temp-alarm.<br>\\* **object-name**: Associated object name of event <br>\\* **object-type**: Associated object type of event on Mosaic CP <br>\\* **description**: The brief description of the event. |\n| search-filter-and<br>search-filter-or<br> <blockquote>search-action</blockquote> | Used to determine the type of the search action.<br>**Possible values**<br>\\* **include-strict**: Used to search for fields with exact matching of the given value. <br>\\* **include-regex** Used to search for fields with includes the value with given regex matching.<br>\\* **exclude-strict**: Used to exclude the given fields with the given value with exact matching.<br>\\* **exclude-regex**: Used to exclude the given fields with the given value          with regex matching.<br>\\* **gte**: Used to indicate the filtering timestamp value greater      or equal to the given value.<br>\\* **lte**: Used to indicate the filtering timestamp value smaller or equal to the given value. |\n| search-filter-and<br>search-filter-or<br> <blockquote>search-value</blockquote> | String value on which to search. The format of this fields depends on the `search-field` and `search-action`. For time based values, the following format is used: <br>**Date Time Format**: yyyy-MM-dd'T'HH:mm:ss.ff'Z' eg. `2020-05-02T18:30:00Z` |\n| sort-by | Used to determine the sequencing of events. <br>**Possible values**<br>\\***source**: Sorts events on event source <br>\\***identity**: Sorts events on event identity<br>\\***severity**: Sorts events on event severity. Examples: `critical`, `major`, `minor`, `alert`, `info`, and `clear`. <br>\\***timestamp**:  Sorts events on event time. <br>\\***raised-timestamp**:  Sorts events on when they were raised. <br>\\***cleared-timestamp**:  Sorts events on when they were cleared.  <br>*See `Sorting` folder requests for examples.* |\n| order-by | Orders the events in the given order for the `sort-by` field. If no sort-by value is provided, then timestamp is used for ordering. <br>**Possible values**<br>\\***asc**: Order by ascending values <br>\\***desc**: Order by descending values <br>*See `Sorting` folder requests for examples.* |\n\n\n<br>The following filtering fields are deprecated in favor of using the `search-field`/`search-action` fields above.<br>\n\n| Attribute | Description |\n|---|---|\n| source | Return all events matching the source specified. If no source is provided, return events from all sources. |\n| exact-match | Flag to indicate whether to use fuzzy search or exact search. Value of true indicates exact match of search and false indicates fuzzy search. |\n| from-time | Filter all events starting from 'from-time'. If not present, query result will contain oldest available events until to-time <br>**Date Time Format**: yyyy-MM-dd'T'HH:mm:ss.ff'Z' eg. `2020-05-02T18:30:00Z`. |\n| to-time | Filter all events until 'to-time'. If not present, query result will contain latest available events starting from from-time <br>**Date Time Format**: yyyy-MM-dd'T'HH:mm:ss.ff'Z' eg. `2020-05-02T22:30:00Z`. *See `Filtering` folder requests for examples.* |",
        "operationId": "GetAllEvents",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GetAllEventsRequest"
              },
              "example": {
                "input": {
                  "summary-field": "severity",
                  "current": false,
                  "cursor": 0,
                  "result-size": 2
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 07 Jan 2021 20:05:47 GMT"
                    },
                    "example": "Thu, 07 Jan 2021 20:05:47 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetAllEvents"
                },
                "example": {
                  "output": {
                    "events": {
                      "cursor": 2,
                      "event": [
                        {
                          "description": "Validation failed of action activate device dpu-0001. Action 'activate' not allowed for dpu-0001 with state 'activated'",
                          "event-identity": "activate dpu-0001",
                          "object-name": "dpu-0001",
                          "object-type": "device",
                          "raised-timestamp": "2021-01-07T19:41:36+00:00",
                          "severity": "Informational",
                          "source": "mosaic-cp-cda",
                          "timestamp": "2021/01/07 07:41:36PM+0000",
                          "timestamp-iso": "2021-01-07T19:41:36+00:00"
                        },
                        {
                          "description": "Failed action of deactivate device dpu-0001. Master timeout reached",
                          "event-identity": "deactivate dpu-0001",
                          "object-name": "dpu-0001",
                          "object-type": "device",
                          "raised-timestamp": "2021-01-07T19:41:36+00:00",
                          "severity": "Major",
                          "source": "mosaic-cp-cda",
                          "timestamp": "2021/01/07 07:41:36PM+0000",
                          "timestamp-iso": "2021-01-07T19:41:36+00:00"
                        }
                      ],
                      "total-count": 18709
                    }
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-cloud-platform-topics:create-topic": {
      "post": {
        "tags": [
          "Kafka Event Forwarding"
        ],
        "summary": "Create Topic",
        "description": "Creates a Kafka topic which is accessible by a given user and contains the specified types of events. Topics can be consumed from Mosaic Cloud using a Kafka consumer. Once configured, Mosaic Cloud will automatically push events to the consumer.\n<br><br>**Note**: There is a need to configure the authentication of the external Kafka consumer.  See the Mosaic CP Installation Guide for more details on how to configure an external Kakfa consumer with the appropriate encyrption to receive events.\n\n| Attribute | Description |\n|---|---|\n| topic-name | The user-defined name of the Kafka topic that will be exposed externally on Mosaic CP.|\n| username | The user which is authorized to consume this topic. Such user have the permission `adtran-cloud-platform-topics:configure-topics` to their respective user group |\n| contains | This represents the comma separated list. For example, to get notifications for when a Mosaic CP object finishes transitioning to another state, use `uiworkflow-transition-complete` here. To see a comprehensive list of available event types to subscribe to on an instance of Mosaic CP, check the response back from the `Get Event Types` request below. |",
        "operationId": "CreateTopic",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateTopicRequest"
              },
              "example": {
                "input": {
                  "topic-name": "mosaic-stream",
                  "username": "SampleUser",
                  "contains": [
                    "uiworkflow-transition-complete"
                  ]
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "409": {
            "description": "Conflict",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Wed, 06 May 2020 10:49:14 GMT"
                    },
                    "example": "Wed, 06 May 2020 10:49:14 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "50"
                    },
                    "example": "50"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/TopicAlreadyCreated-409Conflict1"
                },
                "example": {
                  "message": "mosaic-stream topic already created."
                }
              }
            }
          },
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Wed, 06 May 2020 10:42:47 GMT"
                    },
                    "example": "Wed, 06 May 2020 10:42:47 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "0"
                    },
                    "example": "0"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {}
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-cloud-platform-topics:update-topic": {
      "post": {
        "tags": [
          "Kafka Event Forwarding"
        ],
        "summary": "Update Topic",
        "description": "Update a topic that already exists. This can be used to add or remove event types from the list.\n\n| Attribute | Description |\n|---|---|\n| topic-name | The user-defined name of the Kafka topic that will be exposed externally on Mosaic CP. |\n| username | The user which is authorized to consume this topic. Such user have the permission `adtran-cloud-platform-topics:configure-topics` to their respective user group |\n| contains | This represents the comma separated list. For example, to get notifications for when a Mosaic CP object finishes transitioning to another state, use `uiworkflow-transition-complete` here. To see a comprehensive list of available event types to subscribe to on an instance of Mosaic CP, check the response back from the `Get Event Types` request below. |",
        "operationId": "UpdateTopic",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateTopicRequest"
              },
              "example": {
                "input": {
                  "topic-name": "mosaic-stream",
                  "username": "SampleUser",
                  "contains": [
                    "onu-los",
                    "NETCONF-session-disconnect"
                  ]
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 07 May 2020 10:19:24 GMT"
                    },
                    "example": "Thu, 07 May 2020 10:19:24 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "0"
                    },
                    "example": "0"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {}
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-topics:event-types": {
      "get": {
        "tags": [
          "Kafka Event Forwarding"
        ],
        "summary": "Get Event Types",
        "description": "Get Topic Event API will allow an upstream system to determine the supported events for forwarding through the Kafka interface.\n\n**Response Details**\n\n| Attribute| Description |\n|---|---|\n| event-type | Provides a list of event types supported by this system which may be used to configure topics.\n| event-type-name | The name of an event-type which is supported by this system.|",
        "operationId": "GetEventTypes",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Wed, 06 May 2020 09:50:32 GMT"
                    },
                    "example": "Wed, 06 May 2020 09:50:32 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "788"
                    },
                    "example": "788"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetEventTypes"
                },
                "example": {
                  "adtran-cloud-platform-topics:event-types": {
                    "event-type": [
                      {
                        "event-type-name": "uiworkflow-transition-complete"
                      },
                      {
                        "event-type-name": "channel-pair-wavelength-mismatch"
                      },
                      {
                        "event-type-name": "channel-partition-los"
                      },
                      {
                        "event-type-name": "netconf-session-events"
                      },
                      {
                        "event-type-name": "olt-hardware-alarms"
                      },
                      {
                        "event-type-name": "olt-high-temp-alarms"
                      },
                      {
                        "event-type-name": "olt-low-temp-alarms"
                      },
                      {
                        "event-type-name": "olt-optical-threshold-alarms"
                      },
                      {
                        "event-type-name": "olt-pluggable-alarms"
                      },
                      {
                        "event-type-name": "olt-power-reduction-alarms"
                      },
                      {
                        "event-type-name": "olt-thermal-shutdown-alarms"
                      },
                      {
                        "event-type-name": "olt-unapproved-transceiver-alarms"
                      },
                      {
                        "event-type-name": "onu-activate"
                      },
                      {
                        "event-type-name": "onu-dying-gasp"
                      },
                      {
                        "event-type-name": "onu-los"
                      },
                      {
                        "event-type-name": "onu-range-adjustment-complete"
                      }
                    ]
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-topics:topics/topic": {
      "get": {
        "tags": [
          "Kafka Event Forwarding"
        ],
        "summary": "Get All Created Topics",
        "description": "Get Topic Event API will allow an upstream system to automatically determine the supported events for forwarding through the Kafka interface.\nThe following table describes each item in the response.\n\n| Attribute | Description |\n|---|---|\n| topic-name | The user-defined name of the Kafka topic that will be exposed externally on Mosaic CP.|\n| username | The user which is authorized to consume this topic. Such user have the permission `adtran-cloud-platform-topics:configure-topics` to their respective user group |\n| contains | This represents the comma separated list. For example, to get notifications for when a Mosaic CP object finishes transitioning to another state, use `uiworkflow-transition-complete` here. To see a comprehensive list of available event types to subscribe to on an instance of Mosaic CP, check the response back from the `Get Event Types` request. |",
        "operationId": "GetAllCreatedTopics",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Wed, 06 May 2020 12:51:02 GMT"
                    },
                    "example": "Wed, 06 May 2020 12:51:02 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "723"
                    },
                    "example": "723"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "private, no-cache"
                    },
                    "example": "private, no-cache"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"90ce33c0-58ac-4d4a-9bb1-a800e455fc8e\""
                    },
                    "example": "\"90ce33c0-58ac-4d4a-9bb1-a800e455fc8e\""
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetAllCreatedTopics"
                },
                "example": {
                  "topic": [
                    {
                      "username": "ADMIN",
                      "topic-name": "mosaic-stream",
                      "contains": [
                        "device-unit-install-in-progress",
                        "PM-FORWARDING"
                      ]
                    },
                    {
                      "username": "ADMIN",
                      "topic-name": "mosaic-stream1",
                      "contains": [
                        "PM_FORWARDING"
                      ]
                    },
                    {
                      "username": "ADMIN",
                      "topic-name": "testkafka-topic",
                      "contains": [
                        "olt-optical-threshold-alarms",
                        "olt-high-temp-alarms",
                        "olt-pluggable-alarms",
                        "olt-unapproved-transceiver-alarms",
                        "olt-hardware-alarms",
                        "olt-power-reduction-alarms",
                        "olt-thermal-shutdown-alarms",
                        "olt-low-temp-alarms",
                        "channel-pair-wavelength-mismatch",
                        "channel-partition-los",
                        "onu-range-adjustment-complete",
                        "onu-dying-gasp",
                        "onu-los",
                        "onu-activate"
                      ]
                    },
                    {
                      "username": "ADMIN",
                      "topic-name": "uiworkflow-event-topic",
                      "contains": [
                        "uiworkflow-transition-complete"
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-trap-forwarder:trap-forwarder/trap-hosts": {
      "post": {
        "tags": [
          "Configure Trap Host"
        ],
        "summary": "SNMP v2c - Specific Filter",
        "description": "The command is used to configure a single trap host at a time within the system.\n\n| Attribute | Description |\n|---|---|\n| Host | **Required** IPv4 address, IPv6 address or domain name of the host. |\n| Port | **Required** Port number on which the trap host will receive traps. |\n|any-source | Used to indicates the filter matches on any source. <br> <b> Possible Values : </b><i>[null] </b>|\n|source | Used to specify what filter to place on the source of the received trap.|\n|any-identity | Used to indicates the filter matches on any identity. <br> <b> Possible Values : </b><i>[null] </b>|\n|identity | Used to specify what filter to place on the identity of the received trap.|\n|any-severity | Used to indicates the filter matches on any severity. <br> <b> Possible Values : </b><i>[null] </b>|\n|trap-severity |Used to specify what filter to place on the severity of the received trap. <br> <b> Possible Values : </b><i> critical, major, minor, clear, alert, info</i>|\n|filter-action | Used to determine the action taken if the trap source matches the source filter. <br> <b> Possible Values : </b><i>permit, deny</i> <br> Permit a trap if certain aspects of the trap match the the specified filter. Note that other filters may still cause the trap to be denied. <br/> Deny a trap if certain aspects of the trap match the specified filter.|",
        "operationId": "SNMPv2c-SpecificFilter",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SNMPv2c-SpecificFilterRequest"
              },
              "example": {
                "host": "127.0.0.1",
                "port": 162,
                "identity": {
                  "identity": [
                    "OLT-1"
                  ],
                  "filter-action": "permit"
                },
                "trap-severity": {
                  "severity": [
                    "critical"
                  ],
                  "filter-action": "permit"
                },
                "source": {
                  "source": [
                    "127.0.0.1"
                  ],
                  "filter-action": "permit"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "description": "Created",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 25 Jun 2020 08:37:11 GMT"
                    },
                    "example": "Thu, 25 Jun 2020 08:37:11 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {}
          },
          "409": {
            "description": "Conflict",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 25 Jun 2020 08:37:36 GMT"
                    },
                    "example": "Thu, 25 Jun 2020 08:37:36 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "type": "string",
                  "example": "Trap-host with provided hostname and port already exists.Please modify it."
                },
                "example": "Trap-host with provided hostname and port already exists.Please modify it."
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 25 Jun 2020 08:39:28 GMT"
                    },
                    "example": "Thu, 25 Jun 2020 08:39:28 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "type": "string",
                  "example": "Invalid Port provided"
                },
                "example": "Invalid Port provided"
              }
            }
          }
        },
        "deprecated": false
      },
      "get": {
        "tags": [
          "SNMP Trap Forwarding"
        ],
        "summary": "Retrieve All Trap Hosts",
        "description": "This command is used to retrieve a list of the trap hosts that have been configured on the system for translating and sending to an upstream alarm collection system.\n\n|Response Attribute | Description|\n|---|---|\n Host | IPv4 address, IPv6 address or domain name of the host. |\n| Port | Port number on which the trap host will receive traps. |\n|use-global-filter |If true, indicates the global filter is to be used. |\n|source | Used to specify what filter to place on the source of the received trap.|\n|identity | Used to specify what filter to place on the identity of the received trap.|\n|trap-severity |Used to specify what filter to place on the severity of the received trap. <br> <b> Possible Values: </b><i> critical, major, minor, clear, alert, info</i>|\n|filter-action | Used to determine the action taken if the trap source matches the source filter. <br> <b> Possible Values: </b><i> permit, deny <br></i> Permit a trap if certain aspects of the trap match the the specified filter. Note that other filters may still cause the trap to be denied. <br/> Deny a trap if certain aspects of the trap match the specified filter.|",
        "operationId": "RetrieveAllTrapHosts",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 07 May 2020 08:18:37 GMT"
                    },
                    "example": "Thu, 07 May 2020 08:18:37 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "277"
                    },
                    "example": "277"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/RetrieveAllTrapHosts-4hostsspecificfilterandglobalfilter"
                  },
                  "description": ""
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-trap-forwarder:trap-forwarder/trap-hosts/trap-host=127.0.0.1,162": {
      "get": {
        "tags": [
          "SNMP Trap Forwarding"
        ],
        "summary": "Retrieve Specific Trap Host",
        "description": "This command is used to retrieve a Specific trap hosts that have been configured on the system for translating and sending to an upstream alarm collection system.\n\n<br>\nURL Request query parameter details - \n<br>\n\n| Attribute | Description |\n| --- | --- |\n| trap-host | **Required** Comma separated value for the `ip-address`,`port` of the trap-host. |\n\nResponse body details -\n<br>\n\n|Response Attribute | Description|\n|---|---|\n| Host | IPv4 address, IPv6 address or domain name of the host. |\n| Port | Port number on which the trap host will receive traps. |\n|use-global-filter |If true, indicates the global filter is to be used. |\n|source | Used to specify what filter to place on the source of the received trap.|\n|identity | Used to specify what filter to place on the identity of the received trap.|\n|trap-severity |Used to specify what filter to place on the severity of the received trap. <br> <b> Possible Values: </b><i> critical, major, minor, clear, alert, info</i>|\n|filter-action | Used to determine the action taken if the trap source matches the source filter. <br> <b> Possible Values: </b><i> permit, deny </i> <br> Permit a trap if certain aspects of the trap match the the specified filter. Note that other filters may still cause the trap to be denied. <br/> Deny a trap if certain aspects of the trap match the specified filter.|",
        "operationId": "RetrieveSpecificTrapHost",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 07 May 2020 08:31:34 GMT"
                    },
                    "example": "Thu, 07 May 2020 08:31:34 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "58"
                    },
                    "example": "58"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/RetrieveSpecificTrapHost-GlobalFilter-Successful"
                },
                "example": {
                  "host": "127.0.0.1",
                  "port": 162,
                  "source": {
                    "source": [
                      "127.0.0.1"
                    ],
                    "filter-action": "permit"
                  },
                  "trap-severity": {
                    "severity": [
                      "critical"
                    ],
                    "filter-action": "permit"
                  },
                  "identity": {
                    "identity": [
                      "OLT-1"
                    ],
                    "filter-action": "permit"
                  }
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 07 May 2020 08:17:10 GMT"
                    },
                    "example": "Thu, 07 May 2020 08:17:10 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "52"
                    },
                    "example": "52"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "type": "string",
                  "example": "No trap-host with provided host name and port exists"
                },
                "example": "No trap-host with provided host name and port exists"
              }
            }
          }
        },
        "deprecated": false
      },
      "put": {
        "tags": [
          "SNMP Trap Forwarding"
        ],
        "summary": "Modify Trap Host",
        "description": "The format of this command includes IP Address and IP PORT to identify and modify the request. A comma separates the IP Address from the Port value.\n\n\n| Attribute | Description |\n|---|---|\n| Host | **Required** IPv4 address, IPv6 address or domain name of the host. |\n| Port | **Required** Port number on which the trap host will receive traps. |\n| version | Used to specify which version is supported at trap-host <br> <b> Possible Values: </b> <i>snmp-v2c or snmp-v3</i>|\n| use-global-filter | Used to specify any filters to apply to the received traps. If present, indicates the global filter is to be used. <br> <b> Possible Values: </b><i>[null]</i>|\n|specific-filter| Management objects used to specify a trap filter.|\n|any-source | Used to indicates the filter matches on any source. <br> <b> Possible Values: </b><i>[null] </b>|\n|source | Used to specify what filter to place on the source of the received trap.|\n|any-identity | Used to indicates the filter matches on any identity. <br> <b> Possible Values: </b><i>[null] </b>|\n|identity | Used to specify what filter to place on the identity of the received trap.|\n|any-severity | Used to indicates the filter matches on any severity. <br> <b> Possible Values: </b><i>[null] </b>|\n|trap-severity | Used to specify what filter to place on the severity of the received trap. <br> <b> Possible Values: </b><i> critical, major, minor, clear, alert, info</i>|\n|filter-action | Used to determine the action taken if the trap source matches the source filter. <br> <b> Possible Values: </b><i>permit, deny</i> <br> Permit a trap if certain aspects of the trap match the the specified filter. Note that other filters may still cause the trap to be denied. <br/> Deny a trap if certain aspects of the trap match the specified filter.|",
        "operationId": "ModifyTrapHost",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ModifyTrapHostRequest"
              },
              "example": {
                "host": "127.0.0.1",
                "port": 162,
                "identity": {
                  "identity": [
                    "OLT-1"
                  ],
                  "filter-action": "permit"
                },
                "trap-severity": {
                  "severity": [
                    "critical"
                  ],
                  "filter-action": "permit"
                },
                "source": {
                  "source": [
                    "127.0.0.1"
                  ],
                  "filter-action": "permit"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 07 May 2020 11:40:34 GMT"
                    },
                    "example": "Thu, 07 May 2020 11:40:34 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "0"
                    },
                    "example": "0"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {}
          },
          "default": {
            "description": "",
            "headers": {},
            "content": {}
          }
        },
        "deprecated": false
      },
      "delete": {
        "tags": [
          "SNMP Trap Forwarding"
        ],
        "summary": "Delete Trap Host",
        "description": "Removes a previously created SNMP Trap Host.\n\n<br>\nURL Request query parameter details - \n<br>\n\n| Attribute | Description |\n| --- | --- |\n| trap-host | **Required** Comma separated value for the `ip-address`,`port` of the trap-host. |",
        "operationId": "DeleteTrapHost",
        "parameters": [],
        "responses": {
          "404": {
            "description": "Not Found",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 07 May 2020 08:15:58 GMT"
                    },
                    "example": "Thu, 07 May 2020 08:15:58 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "51"
                    },
                    "example": "51"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "type": "string",
                  "example": "No Trap-host with hostname and port provided exists"
                },
                "example": "No Trap-host with hostname and port provided exists"
              }
            }
          },
          "204": {
            "description": "No Content",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 07 May 2020 08:15:29 GMT"
                    },
                    "example": "Thu, 07 May 2020 08:15:29 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "0"
                    },
                    "example": "0"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {}
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-trap-forwarder:trap-forwarder/global-filter": {
      "get": {
        "tags": [
          "SNMP Trap Forwarding"
        ],
        "summary": "Retrieve Global Filter",
        "description": "Specifies a global (or default) filter to be used for each trap host.\n\n|Response Attribute | Description|\n|---|---|\n|any-source | Used to indicates the filter matches on any source. <br> <b> Possible Values : </b><i> [null] </b>|\n|source | Used to specify what filter to place on the source of the received trap.|\n|any-identity | Used to indicates the filter matches on any identity. <br> <b> Possible Values : </b><i> [null] </b>|\n|identity | Used to specify what filter to place on the identity of the received trap.|\n|any-severity | Used to indicates the filter matches on any severity. <br> <b> Possible Values : </b><i> [null] </b>|\n|trap-severity |Used to specify what filter to place on the severity of the received trap. <br> <b> Possible Values : </b><i> critical, major, minor, clear, alert, info</i>|\n|filter-action | Used to determine the action taken if the trap source matches the source filter. <br> <b> Possible Values : </b><i> permit, deny <br></i> Permit a trap if certain aspects of the trap match the the specified filter. Note that other filters may still cause the trap to be denied. <br/> Deny a trap if certain aspects of the trap match the specified filter.|",
        "operationId": "RetrieveGlobalFilter",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 07 Jan 2021 20:20:47 GMT"
                    },
                    "example": "Thu, 07 Jan 2021 20:20:47 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/RetrieveGlobalFilter"
                }
              }
            }
          }
        },
        "deprecated": false
      },
      "put": {
        "tags": [
          "SNMP Trap Forwarding"
        ],
        "summary": "Modify Global Filter",
        "description": "This command is used to modify a global (or default) filter to be used for each trap host.\n\n|Attribute| Description|\n|---|---|\n|any-source | Used to indicates the filter matches on any source. <br> <b> Possible Values: </b><i> [null] </b>|\n|source | Used to specify what filter to place on the source of the received trap.|\n|any-identity | Used to indicates the filter matches on any identity. <br> <b> Possible Values: </b><i> [null] </b>|\n|identity | Used to specify what filter to place on the identity of the received trap.|\n|any-severity | Used to indicates the filter matches on any severity. <br> <b> Possible Values: </b><i> [null] </b>|\n|trap-severity |Used to specify what filter to place on the severity of the received trap. <br> <b> Possible Values: </b><i> critical, major, minor, clear, alert, info</i>|\n|filter-action | Used to determine the action taken if the trap source matches the source filter. <br> <b> Possible Values: </b><i>permit, deny</i> <br> Permit a trap if certain aspects of the trap match the the specified filter. Note that other filters may still cause the trap to be denied. <br/> Deny a trap if certain aspects of the trap match the specified filter.|",
        "operationId": "ModifyGlobalFilter",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ModifyGlobalFilterRequest"
              },
              "example": {
                "identity": {
                  "identity": [
                    "OLT-1"
                  ],
                  "filter-action": "permit"
                },
                "trap-severity": {
                  "severity": [
                    "critical"
                  ],
                  "filter-action": "permit"
                },
                "source": {
                  "source": [
                    "127.0.0.1"
                  ],
                  "filter-action": "permit"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 08 May 2020 08:03:23 GMT"
                    },
                    "example": "Fri, 08 May 2020 08:03:23 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "0"
                    },
                    "example": "0"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {}
          },
          "default": {
            "description": "",
            "headers": {},
            "content": {}
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-trap-forwarder:trap-forwarder/trap-forwarder-state": {
      "get": {
        "tags": [
          "SNMP Trap Forwarding"
        ],
        "summary": "Retrieve Trap Forwarder State",
        "description": "This command provides information of the trap forwarding state.\n\n|Response Attribute | Description|\n|---|---|\n engine-id | Provides the SNMP engine-id of the current active node that will be sent with SNMPv3 traps. By default, this is assigned automatically at system startup. The default id can be overridden in the user.conf file with `engine-id = \\\"1234567890abcdef\\\"` which would represent an engine-id of `12:34:56:78:90:ab:cd:ef`|",
        "operationId": "RetrieveTrapForwarderState",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 23 Jun 2020 09:06:46 GMT"
                    },
                    "example": "Tue, 23 Jun 2020 09:06:46 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/RetrieveTrapForwarderStatei.eengine-id"
                },
                "example": {
                  "engine-id": "80:00:13:70:01:c0:a8:01:08:58:1c:8c:29"
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-latest-events:latest-events/latest-event=SDXOne": {
      "get": {
        "tags": [
          "Event Correlation"
        ],
        "summary": "Get Latest Event",
        "description": "Fetches information about the last event processed for a given session.\n\n| **Attribute** | **Description** |\n| --- | --- |\n| session-name | The name of the session that generated the event(s). |\n| timestamp | The timestamp of the latest event processed for this session.  <br>**Date Time Format**: yyyy-MM-dd'T'HH:mm:ss.ff'Z' eg. 2020-05-02T18:30:00Z |",
        "operationId": "GetLatestEvent",
        "parameters": [
          {
            "name": "Content-Type",
            "in": "header",
            "description": "",
            "required": true,
            "style": "simple",
            "schema": {
              "enum": [
                "application/json"
              ],
              "type": "string",
              "example": "application/json"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 17 Mar 2022 19:14:06 GMT"
                    },
                    "example": "Thu, 17 Mar 2022 19:14:06 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetLatestEvent-Success"
                },
                "example": {
                  "session-name": "SampleSessionName",
                  "timestamp": "2022-01-01T00:00:00.015Z"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 17 Mar 2022 19:14:06 GMT"
                    },
                    "example": "Thu, 17 Mar 2022 19:14:06 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetLatestEvent-Sessionnotfound1"
                },
                "example": {
                  "message": "event-session-name BadSessionName was not found"
                }
              }
            }
          },
          "503": {
            "description": "Service Unavailable",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 17 Mar 2022 19:14:06 GMT"
                    },
                    "example": "Thu, 17 Mar 2022 19:14:06 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              },
              "Retry-After": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "10"
                    },
                    "example": "10"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetLatestEvent-Storagenotready1"
                },
                "example": {
                  "message": "the cache is not yet ready to provide a response"
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-cloud-platform-latest-events:delete-events-entry": {
      "post": {
        "tags": [
          "Event Correlation"
        ],
        "summary": "Delete Latest Event",
        "description": "Delete a latest event time session entry by supplying the session name. This does not delete the event, just the entry tracking the last processed event's timestamp.\n\n| **Attribute** | **Description** |\n| --- | --- |\n| event-session-name | The name of the session to delete. |",
        "operationId": "DeleteLatestEvent",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DeleteLatestEventRequest"
              },
              "example": {
                "input": {
                  "event-session-name": "SDXOne"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "204": {
            "description": "No Content",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 17 Mar 2022 19:26:19 GMT"
                    },
                    "example": "Thu, 17 Mar 2022 19:26:19 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {}
          },
          "404": {
            "description": "Not Found",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 17 Mar 2022 19:26:19 GMT"
                    },
                    "example": "Thu, 17 Mar 2022 19:26:19 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/DeleteLatestEvent-Sessionnotfound1"
                },
                "example": {
                  "message": "event-session-name BadSessionName was not found"
                }
              }
            }
          },
          "503": {
            "description": "Service Unavailable",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 17 Mar 2022 19:26:19 GMT"
                    },
                    "example": "Thu, 17 Mar 2022 19:26:19 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/DeleteLatestEvent-Sessionnotready1"
                },
                "example": {
                  "message": "the cache is not yet ready to provide a response"
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-cloud-platform-uiworkflow:create": {
      "post": {
        "tags": [
          "Backup Device Configuration"
        ],
        "summary": "Create Job- Backup Device Configuration",
        "description": "The parameters required to `configure` a Backup job.\n\n| Attribute           | Description                                                                                                                                             |\n|---------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|\n| job-name | **Required:** Name of the Job                                                                                                                         |\n|  action   | **Required:** The action that the job will run. For a list of actions your server supports, run the `Get All Job Actions` request.                                                                                             |\n| trigger                | **Required:** The trigger that will cause the job to run. <br/> <b> Possible values: </b> <br/><b>On Activate:</b> This will trigger the job on Activate operation<br/><b>Date-Time:</b> This will trigger the job at a particular Date and time specified during Deploy operation|",
        "operationId": "CreateJob-BackupDeviceConfiguration",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateJob-BackupDeviceConfigurationRequest"
              },
              "example": {
                "input": {
                  "job-context": {
                    "job-name": "Backup Device Configuration Job",
                    "action": "Backup Device Configuration",
                    "trigger": "On Activate"
                  }
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 08 May 2020 14:44:25 GMT"
                    },
                    "example": "Fri, 08 May 2020 14:44:25 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "205"
                    },
                    "example": "205"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/JobCreate-BackupDeviceConfiguration"
                },
                "example": {
                  "output": {
                    "timestamp": "2020-05-08T14:44:25.588000",
                    "job-name": "Backup Device Configuration Job",
                    "status": "configuring",
                    "trans-id": "0baef8e1-dce1-4165-b7a2-272470f55d68",
                    "completion-status": "in-progress"
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-cloud-platform-uiworkflow:deploy": {
      "post": {
        "tags": [
          "Backup Device Configuration"
        ],
        "summary": "Deploy Job- Backup Device Configuration",
        "description": "The parameters required to `deploy` a Backup job.\n\n| Attribute           | Description                                                                                                                                             |\n|---------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|\n|  job-name   | **Required:** Name of the Job                                                                                             |\n| name  | **Required:** The name of the context parameter.                                                                                                                         |\n| type | **Required:** A hint to the type of information that is represented in this field of context. This may be used by a User Interface to create a list of suitable values from which to select.                                                                                             |\n| subtype | **Required:** A list of strings that provide more information about the acceptable values for this context element.  The meaning depends on the type.  For example, if type is 'device', this is a list of acceptable model names.  If type is 'list', this is the list of possible values.                                                                                             |\n| hint  | **Required:** A textual short description of applicable values and its unit of measure.                                                                                                                    |\n| value or value-list  | **Required:** Defines the value of the context parameter as a single string or a list of string. This can be \"\" or [] if filter-list is used.                                                                                                                          |\n| filter-list | **Required:** The filter-criteria that will used for filtering the objects. It support below filter-criteria and anyone of them need to proviaded. <br/> <b>Possible Values:</b> <br/> <b>By Label:</b> Enter the label(s) used to select devices; these will be evaluated together as a logic OR. <br/> <b>By Management Domain:</b> Enter Management domain(s) used to select devices; these will be evaluated together as a logic OR. <br/> <b>By Parent Device:</b> Enter parent device(s) used to select children devices.<br/> <b>By Name:</b> Enter the device name(s) used to select devices                                                                   |\n| trigger-context | **Required:** The context parameters required for this job trigger. <br/> <b>Possible Values:</b> <br/> trigger: <b>\"On Activate\"</b> then it will be empty list. <br/> trigger: <b>\"Date-Time\"</b> then <br/> <b> type: </b> <i>\"cron-expression\"</i>  <br/> <b> name: </b><i>\"cron-expression\"</i> <br/> <b> value: </b>Uses the quartz cron scheduler. Cron expression format defined at http://www.quartz-scheduler.org. <b><i>eg. 0 40 4 9 5 ? 2020</i></b> which specifies \"At 04:40:00am, on the 9th day, in May, in 2020\" <br/> <b> hint: </b><i>\"The desired cron expression for triggering the job firing schedule\"</i>                                                                                                                      |",
        "operationId": "DeployJob-BackupDeviceConfiguration",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DeployJob-BackupDeviceConfigurationRequest"
              },
              "example": {
                "input": {
                  "job-context": {
                    "job-name": "Backup Device Configuration Job",
                    "action-context": [
                      {
                        "name": "Filter Criteria",
                        "type": "device",
                        "filter-list": [
                          {
                            "name": "By Label",
                            "type": "label",
                            "hint": "Enter the label(s) used to select devices; these will be evaluated together as a logic OR.",
                            "value-list": [],
                            "filter-criteria": "by-label"
                          },
                          {
                            "name": "By Management Domain",
                            "type": "management-domain",
                            "hint": "Enter Management domain(s) used to select devices; these will be evaluated together as a logic OR.",
                            "value-list": [],
                            "filter-criteria": "by-management-domain"
                          },
                          {
                            "name": "By Parent Device",
                            "type": "device",
                            "hint": "Enter parent device(s) used to select children devices.",
                            "value-list": [],
                            "filter-criteria": "by-parent-device"
                          },
                          {
                            "name": "By Name",
                            "type": "device",
                            "hint": "Enter the device name(s) used to select devices",
                            "value-list": [
                              "device-1"
                            ],
                            "filter-criteria": "by-name"
                          }
                        ],
                        "hint": "Choose how you would like to select the devices that would be affected by this job.",
                        "value-list": []
                      }
                    ],
                    "trigger-context": []
                  }
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 08 May 2020 14:45:13 GMT"
                    },
                    "example": "Fri, 08 May 2020 14:45:13 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "203"
                    },
                    "example": "203"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/JobDeploy-BackupDeviceConfiguration"
                },
                "example": {
                  "output": {
                    "timestamp": "2020-05-08T14:45:13.034000",
                    "job-name": "Backup Device Configuration Job",
                    "status": "deploying",
                    "trans-id": "7da3716c-4602-4006-a48c-e3507307cd0c",
                    "completion-status": "in-progress"
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-cloud-platform-uiworkflow:activate": {
      "post": {
        "tags": [
          "Backup Device Configuration"
        ],
        "summary": "Activate Job- Backup Device Configuration",
        "description": "The parameters required to `activate` a Backup job.\n\n| Attribute           | Description                                                                                                                                             |\n|---------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|\n| job-name | **Required:** Name of the Job which need to be activated                                                                                                                         |",
        "operationId": "ActivateJob-BackupDeviceConfiguration",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ActivateJob-BackupDeviceConfigurationRequest"
              },
              "example": {
                "input": {
                  "job-context": {
                    "job-name": "Backup Device Configuration Job"
                  }
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 08 May 2020 14:45:26 GMT"
                    },
                    "example": "Fri, 08 May 2020 14:45:26 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "204"
                    },
                    "example": "204"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/JobActivate-BackupDeviceConfiguration"
                },
                "example": {
                  "output": {
                    "timestamp": "2020-05-08T14:45:26.096000",
                    "job-name": "Backup Device Configuration Job",
                    "status": "activating",
                    "trans-id": "f3a475c0-1c45-48b9-8abe-3e6f4da28864",
                    "completion-status": "in-progress"
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-cloud-platform-uiworkflow-jobs:run-job-now": {
      "post": {
        "tags": [
          "Backup Device Configuration"
        ],
        "summary": "Run Job- Backup Device Configuration",
        "description": "This API is to run a job immediately with the current context.\n\n| Attribute           | Description                                                                                                                                             |\n|---------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|\n|  job-name   | **Required:** Name of the Job                                                                                             |",
        "operationId": "RunJob-BackupDeviceConfiguration",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/RunJob-BackupDeviceConfigurationRequest"
              },
              "example": {
                "input": {
                  "job-name": "Backup Device Configuration Job"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 08 May 2020 14:45:56 GMT"
                    },
                    "example": "Fri, 08 May 2020 14:45:56 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "237"
                    },
                    "example": "237"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/JobRun-BackupDeviceConfiguration"
                },
                "example": {
                  "output": {
                    "trans-id": "9a1cbbbd-a75d-4b98-947c-e4e994f15624",
                    "completion-status": "in-progress"
                  }
                }
              }
            }
          },
          "default": {
            "description": "",
            "headers": {},
            "content": {}
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-cloud-platform-uiworkflow-jobs:run-job-now-with-parameters": {
      "post": {
        "tags": [
          "Download, Activate and Commit Jobs"
        ],
        "summary": "Run Job - Download Job",
        "description": "This API is to run a job immediately with the updated context. To run this API, Job must be in `Deployed` state\n\n| Attribute           | Description                                                                                                                                             |\n|---------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|\n|  job-name   | **Required:** Name of the Job                                                                                             |\n| blocking                | **Required:** Denotes whether or not the call is blocking. A blocking call will not return until the job has completed running. A non-blocking call will return immediately; its status can be verified with run-job-transitions. <br/> **Possible Value: <i>true</i>**         |\n| name  | **Required:** The name of the context parameter.                                                                                                                         |\n| type | A hint to the type of information that is represented in this field of context. This may be used by a User Interface to create a list of suitable values from which to select.                                                                                             |\n| hint  | A textual short description of applicable values and its unit of measure.                                                                                                                    |\n| value or value-list  | **Required:** Defines the value of the context parameter as a single string or a list of string.                                                                                                                         |",
        "operationId": "RunJob-DownloadJob",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/RunJob-DownloadJobRequest"
              },
              "example": {
                "input": {
                  "job-name": "Download Job",
                  "blocking": true,
                  "context": [
                    {
                      "name": "Device Name",
                      "value-list": [
                        "device-1"
                      ]
                    }
                  ]
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 08 May 2020 12:37:20 GMT"
                    },
                    "example": "Fri, 08 May 2020 12:37:20 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "289"
                    },
                    "example": "289"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobRun-ActivateDeviceSoftwareerror"
                },
                "example": {
                  "output": {
                    "trans-id": "62621e75-df7e-475a-8cba-0e618730753c",
                    "completion-status": "failure",
                    "final-result": [
                      {
                        "input": {
                          "device-name": "device-1",
                          "action": "Activate Device Software",
                          "prev-blocking": true
                        },
                        "output": {
                          "error_description": "Software activation is not performed as the candidate revision:11971320F1-ML-6713 is not same as target revision:NA"
                        }
                      }
                    ]
                  }
                }
              },
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/JobRun-DownloadSoftwareOnlywitherror"
                },
                "example": {
                  "output": {
                    "trans-id": "e45d3232-ad05-4e6c-a6b4-e58e62ce1212",
                    "completion-status": "failure",
                    "final-result": [
                      {
                        "input": {
                          "device-name": "device-1",
                          "action": "Download Software Only",
                          "prev-blocking": true
                        },
                        "output": {
                          "error_description": "Warning: upgrade failed! Target version is not defined"
                        }
                      }
                    ]
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-job-manager:pending-jobs/user-initiated/size": {
      "get": {
        "tags": [
          "User Initiated Pending Jobs"
        ],
        "summary": "Get User Initiated Pending Jobs Size",
        "description": "Fetches size of user-initiated pending jobs list.\n\n<br>Response Details</br>\n\n|Attribute|Description|\n|---|---|\n|size|This represents the size of the user initiated pending job list.<br/><b>Possible values: </b><i>32 bit integer</i>|",
        "operationId": "GetUserInitiatedPendingJobsSize",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Mon, 26 Oct 2020 15:40:02 GMT"
                    },
                    "example": "Mon, 26 Oct 2020 15:40:02 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetUserInitiatedPendingJobsSize"
                },
                "example": {
                  "size": 1
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-job-manager:pending-jobs/user-initiated": {
      "get": {
        "tags": [
          "User Initiated Pending Jobs"
        ],
        "summary": "Get User Initiated Pending Jobs List",
        "description": "Fetches collection of user initiated pending jobs, along with the size of that collection.\n\n<br>Response Details</br>\n\n|Attribute|Description|\n|---|---|\n|size|This represents the size of the user initiated pending job list.<br/><b>Possible values:</b><i>32 bit integer</i>|\n|job|List of user initiated pending jobs.|\n|name|The name of the job.|\n|uuid|The unique identifier of the job.|",
        "operationId": "GetUserInitiatedPendingJobsList",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Mon, 26 Oct 2020 15:44:06 GMT"
                    },
                    "example": "Mon, 26 Oct 2020 15:44:06 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetUserInitiatedPendingJobsList"
                },
                "example": {
                  "size": 1,
                  "job": [
                    {
                      "name": "example-job-1",
                      "uuid": "43169f85-edc2-4d54-b32f-6428b7e89ada"
                    }
                  ]
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-job-manager:pending-jobs/user-initiated/job": {
      "get": {
        "tags": [
          "User Initiated Pending Jobs"
        ],
        "summary": "Get User Initiated Pending Jobs",
        "description": "Fetches collection of user initiated pending jobs.\n\n<br>Response Details</br>\n\n|Attribute|Description|\n|---|---|\n|name|The name of the job.|\n|uuid|The unique identifier of the job.|",
        "operationId": "GetUserInitiatedPendingJobs",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Mon, 26 Oct 2020 15:49:54 GMT"
                    },
                    "example": "Mon, 26 Oct 2020 15:49:54 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/GetUserInitatedPendingJob"
                  },
                  "description": "",
                  "example": [
                    {
                      "name": "example-job-1",
                      "uuid": "43169f85-edc2-4d54-b32f-6428b7e89ada"
                    },
                    {
                      "name": "example-job-1",
                      "uuid": "2dc8aa11-6a93-41f9-a329-c16d7ee7a381"
                    }
                  ]
                },
                "example": [
                  {
                    "name": "example-job-1",
                    "uuid": "43169f85-edc2-4d54-b32f-6428b7e89ada"
                  },
                  {
                    "name": "example-job-1",
                    "uuid": "2dc8aa11-6a93-41f9-a329-c16d7ee7a381"
                  }
                ]
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-job-manager:pending-jobs/user-initiated/job=2dc8aa11-6a93-41f9-a329-c16d7ee7a381": {
      "delete": {
        "tags": [
          "User Initiated Pending Jobs"
        ],
        "summary": "Delete User Initiated Pending Job",
        "description": "Deletes the user initiated pending job with respect to passed query parameter in request URL.\n\n\n<br>Request URL Query Data Details</br>\n\n|Attribute|Description|\n|---|---|\n|uuid|**Required** uuid of the user initiated pending job to be deleted.|",
        "operationId": "DeleteUserInitiatedPendingJob",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Mon, 26 Oct 2020 16:00:16 GMT"
                    },
                    "example": "Mon, 26 Oct 2020 16:00:16 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {}
          },
          "404": {
            "description": "Not Found",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Mon, 26 Oct 2020 16:00:16 GMT"
                    },
                    "example": "Mon, 26 Oct 2020 16:00:16 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/DeleteUserInitiatedPendingJobwithinvaliduuid1"
                },
                "example": {
                  "message": "Job does not exist."
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-job-manager:pending-jobs/spawned/size": {
      "get": {
        "tags": [
          "Spawned Pending Jobs"
        ],
        "summary": "Get Spawned Pending Jobs Size",
        "description": "Fetches size of spawned pending jobs list.\n\n<br>Response Details</br>\n\n|Attribute|Description|\n|---|---|\n|size|This represents the size of the spawned pending job list.<br/><b>Possible values: </b><i>32 bit integer</i>|\n\n### Note\nSpawned jobs are sub-jobs originating from user initiated jobs.",
        "operationId": "GetSpawnedPendingJobsSize",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Mon, 26 Oct 2020 15:41:29 GMT"
                    },
                    "example": "Mon, 26 Oct 2020 15:41:29 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetSpawnedPendingJobsSize"
                },
                "example": {
                  "size": 1
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-job-manager:pending-jobs/spawned": {
      "get": {
        "tags": [
          "Spawned Pending Jobs"
        ],
        "summary": "Get Spawned Pending Jobs List",
        "description": "Fetches collection of spawned pending jobs, along with the size of that collection.\n\n<br>Response Details</br>\n\n|Attribute|Description|\n|---|---|\n|size|This represents the size of the spawned pending job list.<br/><b>Possible values: </b><i>32 bit integer</i>|\n|job|List of spawned pending jobs.|\n|name|The name of the job.|\n|uuid|The unique identifier of the job.|\n\n### Note\nSpawned jobs are sub-jobs originating from user initiated jobs.",
        "operationId": "GetSpawnedPendingJobsList",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Mon, 26 Oct 2020 15:46:06 GMT"
                    },
                    "example": "Mon, 26 Oct 2020 15:46:06 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetSpawnedPendingJobsList"
                },
                "example": {
                  "size": 1,
                  "job": [
                    {
                      "name": "example-job-1",
                      "uuid": "43169f85-edc2-4d54-b32f-6428b7e89ada"
                    }
                  ]
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-job-manager:pending-jobs/spawned/job": {
      "get": {
        "tags": [
          "Spawned Pending Jobs"
        ],
        "summary": "Get Spawned Pending Jobs",
        "description": "Fetches collection of spawned pending jobs.\n\n<br>Response Details</br>\n\n|Attribute|Description|\n|---|---|\n|name|The name of the job.|\n|uuid|The unique identifier of the job.|\n\n### Note\nSpawned jobs are sub-jobs originating from user initiated jobs.",
        "operationId": "GetSpawnedPendingJobs",
        "parameters": [],
        "responses": {
          "default": {
            "description": "",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/GetSpawnedPendingJob"
                  },
                  "description": "",
                  "example": [
                    {
                      "name": "example-job-1",
                      "uuid": "43169f85-edc2-4d54-b32f-6428b7e89ada"
                    },
                    {
                      "name": "example-job-1",
                      "uuid": "2dc8aa11-6a93-41f9-a329-c16d7ee7a381"
                    }
                  ]
                },
                "example": [
                  {
                    "name": "example-job-1",
                    "uuid": "43169f85-edc2-4d54-b32f-6428b7e89ada"
                  },
                  {
                    "name": "example-job-1",
                    "uuid": "2dc8aa11-6a93-41f9-a329-c16d7ee7a381"
                  }
                ]
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-job-manager:executing-jobs/size": {
      "get": {
        "tags": [
          "Executing Jobs"
        ],
        "summary": "Get Executing Jobs Size",
        "description": "Fetches size of the executing jobs list, to include both user initiated and spawned jobs.\n\n### Note\nJob queuing is disabled by default, which will make this return a size of 0.\n\n<br>Response Details</br>\n\n|Attribute|Description|\n|---|---|\n|size|This represents the size of the executing job list.<br/><b>Possible values: </b><i>32 bit integer</i>|",
        "operationId": "GetExecutingJobsSize",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Mon, 26 Oct 2020 15:42:33 GMT"
                    },
                    "example": "Mon, 26 Oct 2020 15:42:33 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetExecutingJobsSize"
                },
                "example": {
                  "size": 1
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-job-manager:executing-jobs": {
      "get": {
        "tags": [
          "Executing Jobs"
        ],
        "summary": "Get Executing Jobs List",
        "description": "Fetches collection of executing jobs, along with the size of that collection. This includes both user initiated and spawned jobs.\n\n### Note\nJob queuing is disabled by default, which will make this response return an empty list and a size of 0.\n\n<br>Response Details</br>\n\n|Attribute|Description|\n|---|---|\n|size|This represents the size of the executing job list.<br/><b>Possible values: </b><i>32 bit integer</i>|\n|job|List of executing jobs.|\n|name|The name of the job.|\n|uuid|The unique identifier of the job.|",
        "operationId": "GetExecutingJobsList",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Mon, 26 Oct 2020 15:48:14 GMT"
                    },
                    "example": "Mon, 26 Oct 2020 15:48:14 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetExecutingJobsList"
                },
                "example": {
                  "size": 1,
                  "job": [
                    {
                      "name": "example-job-1",
                      "uuid": "43169f85-edc2-4d54-b32f-6428b7e89ada"
                    }
                  ]
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-job-manager:executing-jobs/job": {
      "get": {
        "tags": [
          "Executing Jobs"
        ],
        "summary": "Get Executing Jobs",
        "description": "Fetches collection of executing jobs, to include both user initiated and spawned jobs.\n\n<br>Response Details</br>\n\n|Attribute|Description|\n|---|---|\n|name|The name of the job.|\n|uuid|The unique identifier of the job.|",
        "operationId": "GetExecutingJobs",
        "parameters": [],
        "responses": {
          "default": {
            "description": "",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetExecutingJobswithinvaliduuid"
                },
                "example": {
                  "message": "Job does not exist."
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-jobs:jobs/job=Resynchronize NETCONF Alarms Job": {
      "get": {
        "tags": [
          "Jobs"
        ],
        "summary": "Get Job By Name",
        "description": "Fetches a list of MCP jobs. Returns a list of attributes as a response.\n\n| Attribute         | Description                                                      |\n|------------------|------------------------------------------------------------------|\n| job-name         | This represents the name of the job.  <br/> <b>Possible values:</b> <i>string with length 1..250</i>       |\n| state          |\tThis represents state of the specific job.  <br/> <b> Possible values: </b> <i>configured, deployed, activated</i>        |\n| action       | The action that the job will run.            |\n| trigger      | The trigger that will cause the job to run. |\n| trigger-context      | The context parameters required for this job trigger. <br/> <b>Possible Values:</b> <br/> trigger: <b>\"On Activate\"</b> then it will be empty list. <br/> trigger: <b>\"Date-Time\"</b> then <br/> <b> type: </b> <i>\"cron-expression\"</i>  <br/> <b> name: </b><i>\"cron-expression\"</i> <br/> <b> value: </b>Uses the quartz cron scheduler. Cron expression format defined at http://www.quartz-scheduler.org. <b><i>eg. 0 40 4 9 5 ? 2020</i></b> which specifies \"At 04:40:00am, on the 9th day, in May, in 2020\" <br/> <b> hint: </b><i>\"The desired cron expression for triggering the job firing schedule\"</i> |\n| action-context  |\tThis object contains a list parameters specific to the action, and will vary from action to action. For some actions this object may be empty. |\n| action-context <br><blockquote>name</blockquote> |\tName of the context parameter.            |\n| action-context <br><blockquote>value</blockquote> |\tDefines the value of the context parameter as a single string.          |\n| action-context <br><blockquote>value-list</blockquote> |\tDefines the value of the context parameter as a list of strings.        |\n| action-context <br><blockquote>type</blockquote> |\tType of information that is represented in this field of job context.  This may be used by a User Interface to create a list of suitable values from which to select.  <br/> <b> Possible values: </b> <i>device, interface, management-domain, server, service, content-provider, profile, profile-vector, job</i>        |\n| action-context <br><blockquote>subtype</blockquote> |\tA list of strings that provide more information about the acceptable values for this context element.  The meaning depends on the type.  <i>eg. if type is `device`, this is a list of acceptable model names.  If type is `list`, this is the list of possible values</i> |\n| action-context <br><blockquote>hint</blockquote> |\tThis represents a textual short description of applicable values and its unit of measure.  |\n| action-context <br><blockquote>filter-list</blockquote>        |\tThis represents filter list options.   |\n| action-context <br><blockquote>filter-criteria</blockquote>    |\tThe filter-criteria that will used for filtering the objects.  <br/> <b> Possible values: </b> <i>by-label, by-management-domain, by-parent-device, by-name</i>  |",
        "operationId": "GetJobByName",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 08 May 2020 11:53:47 GMT"
                    },
                    "example": "Fri, 08 May 2020 11:53:47 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "294"
                    },
                    "example": "294"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "private, no-cache"
                    },
                    "example": "private, no-cache"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"42961031-7adf-4edb-8069-101e2c1bff38\""
                    },
                    "example": "\"42961031-7adf-4edb-8069-101e2c1bff38\""
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetJobByname-Success"
                },
                "example": {
                  "state": "deployed",
                  "job-name": "Get PON Oper Status",
                  "trigger-context": [],
                  "action": "Get PON Operational Status",
                  "action-context": [
                    {
                      "filter-list": [],
                      "name": "interface-name",
                      "subtype": [],
                      "hint": "Interface Name.",
                      "type": "interface",
                      "value": "Put your Interface name here"
                    }
                  ],
                  "trigger": "On Activate"
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-uiworkflow-jobs:jobs/job": {
      "get": {
        "tags": [
          "Jobs"
        ],
        "summary": "Get All Jobs",
        "description": "Fetches collection of jobs, along with the job status, which can be executed on the system.\n\n**Response Details**\n\n| Attribute         | Description                                                      |\n|------------------|------------------------------------------------------------------|\n| job-name         | This represents the name of the job.  <br/> <b>Possible values:</b> <i>string with length 1..250</i>       |\n| state          |\tThis represents state of the specific job.  <br/> <b> Possible values: </b> <i>configured, deployed, activated</i>        |\n| action       | The action that the job will run.            |\n| trigger      | The trigger that will cause the job to run. |\n| trigger-context      | The context parameters required for this job trigger. <br/> <b>Possible Values:</b> <br/> trigger: <b>\"On Activate\"</b> then it will be empty list. <br/> trigger: <b>\"Date-Time\"</b> then <br/> <b> type: </b> <i>\"cron-expression\"</i>  <br/> <b> name: </b><i>\"cron-expression\"</i> <br/> <b> value: </b>Uses the quartz cron scheduler. Cron expression format defined at http://www.quartz-scheduler.org. <b><i>eg. 0 40 4 9 5 ? 2020</i></b> which specifies \"At 04:40:00am, on the 9th day, in May, in 2020\" <br/> <b> hint: </b><i>\"The desired cron expression for triggering the job firing schedule\"</i> |\n| action-context  |\tThis object contains a list parameters specific to the action, and will vary from action to action. For some actions this object may be empty. |\n| action-context <br><blockquote>name</blockquote> |\tName of the context parameter.            |\n| action-context <br><blockquote>value</blockquote> |\tDefines the value of the context parameter as a single string.          |\n| action-context <br><blockquote>value-list</blockquote> |\tDefines the value of the context parameter as a list of strings.        |\n| action-context <br><blockquote>type</blockquote> |\tType of information that is represented in this field of job context.  This may be used by a User Interface to create a list of suitable values from which to select.  <br/> <b> Possible values: </b> <i>device, interface, management-domain, server, service, content-provider, profile, profile-vector, job</i>        |\n| action-context <br><blockquote>subtype</blockquote> |\tA list of strings that provide more information about the acceptable values for this context element.  The meaning depends on the type.  <i>eg. if type is `device`, this is a list of acceptable model names.  If type is `list`, this is the list of possible values</i> |\n| action-context <br><blockquote>hint</blockquote> |\tThis represents a textual short description of applicable values and its unit of measure.  |\n| action-context <br><blockquote>filter-list</blockquote>        |\tThis represents filter list options.   |\n| action-context <br><blockquote>filter-criteria</blockquote>    |\tThe filter-criteria that will used for filtering the objects.  <br/> <b> Possible values: </b> <i>by-label, by-management-domain, by-parent-device, by-name</i>  |",
        "operationId": "GetAllJobs",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 07 May 2020 07:14:05 GMT"
                    },
                    "example": "Thu, 07 May 2020 07:14:05 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "313"
                    },
                    "example": "313"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetJobs"
                },
                "example": {
                  "jobs": {
                    "job": [
                      {
                        "state": "deployed",
                        "job-name": "Get PON Oper Status",
                        "trigger-context": [],
                        "action": "Get PON Operational Status",
                        "action-context": [
                          {
                            "filter-list": [],
                            "name": "interface-name",
                            "subtype": [],
                            "hint": "Interface Name.",
                            "type": "interface",
                            "value": "Put your Interface name here"
                          }
                        ],
                        "trigger": "On Activate"
                      }
                    ]
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-uiworkflow-jobs:actions/action": {
      "get": {
        "tags": [
          "Jobs"
        ],
        "summary": "Get All Job Actions",
        "description": "Fetches collection of all job types (actions) available in Mosaic CP. The makeup of this list will be based on the plugins that are loaded on the Mosaic CP server. The actions returned represent the possible values to use for the `action` field when creating or configuring a job.\n\n**Response Details**\n\n| Attribute| Description |\n|---------|------------------|\n| action |A list of cloud platform job actions. |",
        "operationId": "GetAllJobActions",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 07 May 2020 10:50:28 GMT"
                    },
                    "example": "Thu, 07 May 2020 10:50:28 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "1171"
                    },
                    "example": "1171"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetAllJobsActions"
                },
                "example": {
                  "action": [
                    "Activate Device Software",
                    "Backup Device Configuration",
                    "Commit",
                    "Download",
                    "Download and Commit",
                    "Download Software Only",
                    "Download Software Only by Label",
                    "Download Software Only by Management Domain",
                    "Get ONU by Name",
                    "Get ONU by Serial Number",
                    "Get ONU Ethernet Data by Interface Name",
                    "Get ONU Ethernet Data by Service Name",
                    "Get ONU FEC Counters",
                    "Get ONU FEC Counters by Channel Partition",
                    "Get ONU Service Error Statistics",
                    "Get ONU Service State",
                    "Get ONUs by Channel Partition",
                    "Get PON Operational Status",
                    "Get Unrecognized ONUs by PON",
                    "Get XPON Pluggable Interface for Device",
                    "Handover Channel Partition",
                    "Handover OLT",
                    "Handover ONU",
                    "Reboot Device",
                    "Reboot Interface",
                    "Collect DPU Data One Device",
                    "Collect DPU Data",
                    "Execute SELT Test",
                    "Execute MELT Self Test",
                    "Execute MELT Test",
                    "Get MELT Test Result",
                    "Get MELT Test Status",
                    "Retrieve Diagnostic Reports",
                    "Retrieve Exception Reports",
                    "Set XLOG Disturber",
                    "Upgrade GFast CPEs",
                    "Delete GFast Client Data by Interface",
                    "Change G.fast Interface Admin State",
                    "Reflow Device",
                    "Reflow Device Only",
                    "Reflow Interface",
                    "Reflow Service",
                    "Restore Device Configuration",
                    "Resynchronize NETCONF Alarms"
                  ]
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-cloud-platform-uiworkflow-jobs:get-job-context": {
      "post": {
        "tags": [
          "Jobs"
        ],
        "summary": "Get Job Context",
        "description": "Fetches job context required by the provided input. Returns a list of attributes as a response.\n\n| Attribute         | Description                                                      |\n|------------------|------------------------------------------------------------------|\n| trigger-name   | A name that identifies the job trigger.   |\n| action-name      |\tA name that identifies the job action. |\n\n\n<br>\nResponse Data Details - \n<br>\n\n| Attribute        | Description                                                                                                                                             |\n|------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|\n| name           |\tName of the context parameter.            |\n| value          |\tDefines the value of the context parameter as a single string.          |\n| value-list     |\tDefines the value of the context parameter as a list of strings.        |\n| type           |\tType of information that is represented in this field of job context.  This may be used by a User Interface to create a list of suitable values from which to select.  <br/> <b> Possible values: </b> <i>device, interface, management-domain, server, service, content-provider, profile, profile-vector, job</i>        |\n| subtype        |\tA list of strings that provide more information about the acceptable values for this context element.  The meaning depends on the type.  <i>eg., if type is 'device', this is a list of acceptable model names.  If type is 'list', this is the list of possible values</i> |\n| hint           |\tThis represents a textual short description of applicable values and its unit of measure.  |\n| method   | HTTP method used for request by the user. <br/><b>Possible Values: </b> <i> post<i>                                                                                                       |\n| uri | URI requested by the user.                    |\n| content |\tContent or body of request by the user.                   |",
        "operationId": "GetJobContext",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GetJobContextRequest"
              },
              "example": {
                "input": {
                  "action-name": "Restore Device Configuration"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Wed, 13 May 2020 09:55:56 GMT"
                    },
                    "example": "Wed, 13 May 2020 09:55:56 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "402"
                    },
                    "example": "402"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetJobContext"
                },
                "example": {
                  "output": {
                    "action-context": [
                      {
                        "value-list": [],
                        "name": "Device Name",
                        "subtype": [
                          "NGPON2 16P OLT Access Switch",
                          "SDX 6310 16-port 10G OLT",
                          "SDX 6010 16-port GPON OLT",
                          "SDX 8310 32x100 ToR Switch",
                          "SDX 8310-32",
                          "SDX 8210-54",
                          "SDX 8305-20",
                          "SDX 6312 4-port Combo Remote OLT",
                          "SDX 6320 16-port Combo OLT"
                        ],
                        "hint": "The name of the device to restore the configuration.",
                        "type": "device"
                      }
                    ],
                    "trigger-context": []
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-uiworkflow-jobs:triggers": {
      "get": {
        "tags": [
          "Jobs"
        ],
        "summary": "Get Job Triggers",
        "description": "Fetches list of all job triggers. Returns a list of attributes as a response.\n\n| Attribute         | Description                                                      |\n|------------------|------------------------------------------------------------------|\n| trigger-name   | A name that identifies the job trigger.   |",
        "operationId": "GetJobTriggers",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 08 May 2020 12:34:10 GMT"
                    },
                    "example": "Fri, 08 May 2020 12:34:10 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "40"
                    },
                    "example": "40"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetJobTrigger-Success"
                },
                "example": {
                  "triggers": {
                    "trigger": [
                      "On Activate"
                    ]
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-information:information": {
      "get": {
        "tags": [
          "Platform Information"
        ],
        "summary": "Get Platform Information",
        "description": "A collection of basic platform information.\n\n**Response Details**\n\n| Attribute | Description |\n|---|---|\n| name  | The name of the platform. |\n| software-version\t| The software version of the platform. |",
        "operationId": "GetPlatformInformation",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Sat, 09 May 2020 11:15:11 GMT"
                    },
                    "example": "Sat, 09 May 2020 11:15:11 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "65"
                    },
                    "example": "65"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "private, no-cache"
                    },
                    "example": "private, no-cache"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"45ee7780-f110-45be-b033-82f5c67daa9e\""
                    },
                    "example": "\"45ee7780-f110-45be-b033-82f5c67daa9e\""
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetPlatformInformation"
                },
                "example": {
                  "information": {
                    "name": "Mosaic CP",
                    "software-version": "20.3-20"
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-plugin:plugins": {
      "get": {
        "tags": [
          "Platform Information"
        ],
        "summary": "Get Plugin Details",
        "description": "Returns available plugins in MCP.\n\n**Response Details**\n\n| Attribute| Description |\n|---|---|\n| name | Plugin name. |\n| type \t| Plugin type. |\n| build-version | Plugin build version.   |\n| library-version | Plugin library version.|",
        "operationId": "GetPluginDetails",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Wed, 06 May 2020 09:48:28 GMT"
                    },
                    "example": "Wed, 06 May 2020 09:48:28 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "563"
                    },
                    "example": "563"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetPluginDetails"
                },
                "example": {
                  "plugin": {
                    "plugin": [
                      {
                        "type": "zip_module",
                        "name": "adtn_1u_olt",
                        "build-version": "2.0.1518",
                        "library-version": [
                          4,
                          1,
                          10
                        ]
                      },
                      {
                        "type": "zip_module",
                        "name": "service_summary",
                        "build-version": "2.1.32",
                        "library-version": [
                          4,
                          1,
                          10
                        ]
                      },
                      {
                        "type": "zip_module",
                        "name": "adtn_tor_switch",
                        "build-version": "1.4.53",
                        "library-version": [
                          4,
                          1,
                          10
                        ]
                      },
                      {
                        "type": "zip_module",
                        "name": "adtn_omci_onu",
                        "build-version": "1.0.44",
                        "library-version": [
                          4,
                          1,
                          10
                        ]
                      },
                      {
                        "type": "zip_module",
                        "name": "mcp_general",
                        "build-version": "5.18.578",
                        "library-version": [
                          4,
                          1,
                          10
                        ]
                      }
                    ]
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-uiworkflow-part-numbers:part-numbers/part-number": {
      "get": {
        "tags": [
          "Platform Information"
        ],
        "summary": "Get All Model Names in Mosaic CP",
        "description": "Fetches a list of model names and their part numbers.\n\n**Response Details**\n\n| Attribute | Description |\n|---|---|\n|model-name|The model name of the physical device.|\n| part-number | ID number of part. |",
        "operationId": "GetAllModelNamesinMosaicCP",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 07 May 2020 10:54:21 GMT"
                    },
                    "example": "Thu, 07 May 2020 10:54:21 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "1013"
                    },
                    "example": "1013"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/GetAllPartNumber"
                  },
                  "description": "",
                  "example": [
                    {
                      "part-number": "GENERIC",
                      "model-name": "Generic Device"
                    },
                    {
                      "part-number": "11971101F1",
                      "model-name": "SDX 8310-32"
                    },
                    {
                      "part-number": "11971101F1",
                      "model-name": "SDX 8310 32x100 ToR Switch"
                    },
                    {
                      "part-number": "11971102F1",
                      "model-name": "SDX 8210-54"
                    },
                    {
                      "part-number": "11971211F1",
                      "model-name": "SDX 8305-20"
                    },
                    {
                      "part-number": "11971320F1",
                      "model-name": "SDX 6310 16-port 10G OLT"
                    },
                    {
                      "part-number": "11971305Fx",
                      "model-name": "SDX 6010 16-port GPON OLT"
                    },
                    {
                      "part-number": "11971310F1",
                      "model-name": "SDX 6312 4-port Combo Remote OLT"
                    },
                    {
                      "part-number": "11971330F1",
                      "model-name": "SDX 6320 16-port Combo OLT"
                    },
                    {
                      "part-number": "1287820F2",
                      "model-name": "SDX 602V NGPON2 IBONT"
                    },
                    {
                      "part-number": "1287823F3",
                      "model-name": "SDX 621X XGS-PON ONU"
                    },
                    {
                      "part-number": "1287821F1",
                      "model-name": "SDX 621V NGPON2 ONU"
                    },
                    {
                      "part-number": "1287821F2V",
                      "model-name": "SDX 602V NGPON2 IBONT"
                    },
                    {
                      "part-number": "1287786FA",
                      "model-name": "401 GPON ONU"
                    },
                    {
                      "part-number": "1287787F1",
                      "model-name": "411 GPON ONU"
                    },
                    {
                      "part-number": "1287833F1",
                      "model-name": "SDX 611 GPON ONU"
                    }
                  ]
                },
                "example": [
                  {
                    "part-number": "GENERIC",
                    "model-name": "Generic Device"
                  },
                  {
                    "part-number": "11971101F1",
                    "model-name": "SDX 8310-32"
                  },
                  {
                    "part-number": "11971101F1",
                    "model-name": "SDX 8310 32x100 ToR Switch"
                  },
                  {
                    "part-number": "11971102F1",
                    "model-name": "SDX 8210-54"
                  },
                  {
                    "part-number": "11971211F1",
                    "model-name": "SDX 8305-20"
                  },
                  {
                    "part-number": "11971320F1",
                    "model-name": "SDX 6310 16-port 10G OLT"
                  },
                  {
                    "part-number": "11971305Fx",
                    "model-name": "SDX 6010 16-port GPON OLT"
                  },
                  {
                    "part-number": "11971310F1",
                    "model-name": "SDX 6312 4-port Combo Remote OLT"
                  },
                  {
                    "part-number": "11971330F1",
                    "model-name": "SDX 6320 16-port Combo OLT"
                  },
                  {
                    "part-number": "1287820F2",
                    "model-name": "SDX 602V NGPON2 IBONT"
                  },
                  {
                    "part-number": "1287823F3",
                    "model-name": "SDX 621X XGS-PON ONU"
                  },
                  {
                    "part-number": "1287821F1",
                    "model-name": "SDX 621V NGPON2 ONU"
                  },
                  {
                    "part-number": "1287821F2V",
                    "model-name": "SDX 602V NGPON2 IBONT"
                  },
                  {
                    "part-number": "1287786FA",
                    "model-name": "401 GPON ONU"
                  },
                  {
                    "part-number": "1287787F1",
                    "model-name": "411 GPON ONU"
                  },
                  {
                    "part-number": "1287833F1",
                    "model-name": "SDX 611 GPON ONU"
                  }
                ]
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-feature-flags:feature-flags": {
      "get": {
        "tags": [
          "Platform Capabilities"
        ],
        "summary": "Get Feature Flag",
        "description": "A list of feature flags to enable or disable at runtime.\n\n<br>\nResponse Details\n</br>\n\n| Attribute | Description |\n|---|---|\n|name |The name of the feature that can be disabled at runtime.|\n|enabled|Whether the feature is currently enabled.<br/><b>Possible values:</b><i>true, false</i>|\n|description |Description of the feature.|",
        "operationId": "GetFeatureFlag",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 08 May 2020 11:35:06 GMT"
                    },
                    "example": "Fri, 08 May 2020 11:35:06 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "131"
                    },
                    "example": "131"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "private, no-cache"
                    },
                    "example": "private, no-cache"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"6649f66a-43da-4b3d-935f-77df7779607f\""
                    },
                    "example": "\"6649f66a-43da-4b3d-935f-77df7779607f\""
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetFeatureFlag"
                },
                "example": {
                  "feature-flags": {
                    "flag": [
                      {
                        "name": "CSV Export",
                        "description": "Export contents of various tables to CSV format.",
                        "enabled": false
                      }
                    ]
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-uiworkflow-force-actions:force-actions": {
      "get": {
        "tags": [
          "Platform Capabilities"
        ],
        "summary": "Get Force Actions",
        "description": "Fetches the list of force actions for all object types. Object types are described below: \n\n**Response Details**\n\n| Attribute | Description |\n|---|---|\n| type | Object type. |\n|configure|Specifies whether user can perform force configure or not.|\n| deploy \t| Specifies whether user can perform force deploy or not. |\n|activate  | Specifies whether user can perform force activate or not.   |\n| deactivate  |Specifies whether user can perform force deactivate or not.  |\n|undeploy |Specifies whether user can perform force undeploy or not.|\n|delete|Specifies whether user can perform force delete or not.|",
        "operationId": "GetForceActions",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 07 May 2020 11:53:19 GMT"
                    },
                    "example": "Thu, 07 May 2020 11:53:19 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "1502"
                    },
                    "example": "1502"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetForceActions"
                },
                "example": {
                  "force-actions": {
                    "force-action": [
                      {
                        "deactivate": false,
                        "undeploy": false,
                        "configure": false,
                        "delete": false,
                        "deploy": false,
                        "type": "profile-vector",
                        "activate": false
                      },
                      {
                        "deactivate": false,
                        "undeploy": false,
                        "configure": false,
                        "delete": false,
                        "deploy": false,
                        "type": "bundle",
                        "activate": false
                      },
                      {
                        "deactivate": false,
                        "undeploy": false,
                        "configure": false,
                        "delete": false,
                        "deploy": false,
                        "type": "server",
                        "activate": false
                      },
                      {
                        "deactivate": false,
                        "undeploy": false,
                        "configure": false,
                        "delete": false,
                        "deploy": false,
                        "type": "content-provider",
                        "activate": false
                      },
                      {
                        "deactivate": false,
                        "undeploy": false,
                        "configure": false,
                        "delete": false,
                        "deploy": false,
                        "type": "management-domain",
                        "activate": false
                      },
                      {
                        "deactivate": false,
                        "undeploy": false,
                        "configure": false,
                        "delete": false,
                        "deploy": false,
                        "type": "subscriber",
                        "activate": false
                      },
                      {
                        "deactivate": false,
                        "undeploy": false,
                        "configure": false,
                        "delete": false,
                        "deploy": true,
                        "type": "interface",
                        "activate": false
                      },
                      {
                        "deactivate": false,
                        "undeploy": false,
                        "configure": false,
                        "delete": false,
                        "deploy": false,
                        "type": "data-center",
                        "activate": false
                      },
                      {
                        "deactivate": false,
                        "undeploy": false,
                        "configure": false,
                        "delete": false,
                        "deploy": false,
                        "type": "job",
                        "activate": false
                      },
                      {
                        "deactivate": false,
                        "undeploy": false,
                        "configure": false,
                        "delete": false,
                        "deploy": false,
                        "type": "service",
                        "activate": false
                      },
                      {
                        "deactivate": false,
                        "undeploy": false,
                        "configure": false,
                        "delete": false,
                        "deploy": false,
                        "type": "profile",
                        "activate": false
                      },
                      {
                        "deactivate": false,
                        "undeploy": false,
                        "configure": false,
                        "delete": false,
                        "deploy": true,
                        "type": "device",
                        "activate": false
                      }
                    ]
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-ui-capabilities:ui-config": {
      "get": {
        "tags": [
          "Platform Capabilities"
        ],
        "summary": "Get UI Capabilities",
        "description": "Fetches UI capabilities and returns whether they are enabled or disabled. This is used to inform the Mosaic CP GUI about platform capabilities.\n\n**Response Details**\n\n| Attribute | Description |\n|---|---|\n| suspend-resume-on-services      | Whether the capability is enabled (`true`) or disabled (`false`). <i>Possible values: true or false<i>                                                                                                          |",
        "operationId": "GetUICapabilities",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "FRI, 26 JUNE 2020 18:53:19 GMT"
                    },
                    "example": "FRI, 26 JUNE 2020 18:53:19 GMT"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetUICapabilities"
                },
                "example": {
                  "suspend-resume-on-services": false
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-cloud-platform-status:check": {
      "post": {
        "tags": [
          "Status Check"
        ],
        "summary": "Platform Status Check",
        "description": "Fetches the status of Elasticsearch, Kafka and Zookeeper.\n\n**Response Details**\n\n| Attribute | Description |\n|---|---|\n| elastic \t| Elasticsearch Status. |\n| kafka     | Kafka Status.         |\n| zookeeper | Zookeeper Status.     |\n\n---\n\n**NOTE**\n\nRemoved in Mosaic CP 21.2.\n\n---",
        "operationId": "PlatformStatusCheck",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 07 May 2020 05:25:41 GMT"
                    },
                    "example": "Thu, 07 May 2020 05:25:41 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "78"
                    },
                    "example": "78"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/PlatformStatusCheck"
                },
                "example": {
                  "output": {
                    "zookeeper": "running",
                    "elastic": "running",
                    "kafka": "running"
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-system-monitor:nodes-summary": {
      "get": {
        "tags": [
          "Status Check"
        ],
        "summary": "Get Nodes Summary using System Monitor",
        "description": "Fetches information on node summary excluding service data.\n\n**Response Details**\n\n| Attribute| Description |\n|---|---|\n| nodes-summary | Container to store node summary information without service data.  |\n| node \t| Node in a datacenter. Information related to node. |\n| node-id | Node identity, may be IP Address, hostname, UUID, etc..   |\n| node-status | Status of the node.|",
        "operationId": "GetNodesSummaryusingSystemMonitor",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 07 May 2020 05:16:49 GMT"
                    },
                    "example": "Thu, 07 May 2020 05:16:49 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "63"
                    },
                    "example": "63"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetSystemMonitorNodesSummary"
                },
                "example": {
                  "nodes-summary": {
                    "node": [
                      {
                        "node-id": "1",
                        "status": "up"
                      }
                    ]
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-system-monitor:nodes": {
      "get": {
        "tags": [
          "Status Check"
        ],
        "summary": "Get Nodes using System Monitor",
        "description": "Fetches the node information.\n\n**Response Details**\n\n| Attribute| Description |\n|---|---|\n| nodes \t| Container to store node and respective service data. |\n| node | Node in a datacenter.  |\n| node-id | Node identity, may be IP Address, hostname, UUID, etc.|\n| status  | Status of the service.|\n| service   | A microservice running on the node.|\n| name   | Name of the service.|\n| status   | Status of the service.|",
        "operationId": "GetNodesusingSystemMonitor",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 07 May 2020 05:20:03 GMT"
                    },
                    "example": "Thu, 07 May 2020 05:20:03 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "1379"
                    },
                    "example": "1379"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetNodesusingSystemMonitor"
                },
                "example": {
                  "nodes": {
                    "node": [
                      {
                        "node-id": "1",
                        "status": "up",
                        "service": [
                          {
                            "name": "address-resolution-service",
                            "status": "up"
                          },
                          {
                            "name": "captive-portal-script-exec",
                            "status": "up"
                          },
                          {
                            "name": "cloud-platform-deferred-intent-service",
                            "status": "up"
                          },
                          {
                            "name": "cloud-platform-event-workflow",
                            "status": "up"
                          },
                          {
                            "name": "cloud-platform-http-service",
                            "status": "up"
                          },
                          {
                            "name": "cloud-platform-job-manager",
                            "status": "up"
                          },
                          {
                            "name": "cloud-platform-uiworkflow",
                            "status": "up"
                          },
                          {
                            "name": "cloud-platform-universal-inspect-workflow",
                            "status": "up"
                          },
                          {
                            "name": "cluster-monitor",
                            "status": "up"
                          },
                          {
                            "name": "device-layer",
                            "status": "up"
                          },
                          {
                            "name": "elastic-exec",
                            "status": "up"
                          },
                          {
                            "name": "event-forwarding",
                            "status": "up"
                          },
                          {
                            "name": "export-data-service",
                            "status": "up"
                          },
                          {
                            "name": "firefly-aaa",
                            "status": "up"
                          },
                          {
                            "name": "firefly-manifests",
                            "status": "up"
                          },
                          {
                            "name": "kafka-manager",
                            "status": "up"
                          },
                          {
                            "name": "marshal-plugins",
                            "status": "up"
                          },
                          {
                            "name": "mosaic-cp-cda",
                            "status": "up"
                          },
                          {
                            "name": "mosaic-cp-plugin",
                            "status": "up"
                          },
                          {
                            "name": "nms-server-manager-coordinator",
                            "status": "up"
                          },
                          {
                            "name": "nms-trap-forwarding",
                            "status": "up"
                          },
                          {
                            "name": "northbound-interface",
                            "status": "up"
                          },
                          {
                            "name": "protocol-session-manager",
                            "status": "up"
                          },
                          {
                            "name": "service-manager",
                            "status": "up"
                          },
                          {
                            "name": "yang-datastore",
                            "status": "up"
                          }
                        ]
                      }
                    ]
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-cloud-platform-orchestration:create": {
      "post": {
        "tags": [
          "Create Bundle"
        ],
        "summary": "Managed Object - Create Bundle",
        "description": "Creates a new `bundle` in deployed state with orchestration API.\n\n| Attribute        | Description                                                                                                                                             |\n|------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|\n| bundle-name   | **Required:** A unique name of the bundle.                                                                                                 |\n| bundle-id | **Required:** A bundle id associated with bundle.             |\n| bundle-type | **Required:** A name of the bundle-type.             |\n| profile-vector-name | A profile vector associated with bundle.             |\n\n---\n**NOTE**\n\nIntroduced in Mosaic CP 21.1.\n\n---",
        "operationId": "ManagedObject-CreateBundle",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ManagedObject-CreateBundleRequest"
              },
              "example": {
                "input": {
                  "bundle-context": {
                    "bundle-name": "orch-bdl-1",
                    "bundle-type": "Generic Bundle",
                    "bundle-id": "4623/1",
                    "profile-vector-name": "{{orch-bundle-pv1}}"
                  }
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 08 Jan 2021 16:46:47 GMT"
                    },
                    "example": "Fri, 08 Jan 2021 16:46:47 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/ManagedObject-CreateBundle"
                },
                "example": {
                  "output": {
                    "timestamp": "2021-01-08T16:46:47.076000",
                    "bundle-name": "orch-bdl-1",
                    "status": "creating",
                    "trans-id": "6955e6fb-7171-45df-ae50-6ba7e963d53d",
                    "completion-status": "in-progress"
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-cloud-platform-orchestration:modify": {
      "post": {
        "tags": [
          "Modify Bundle"
        ],
        "summary": "Managed Object - Modify Bundle Operation Replace with Required Parameters",
        "description": "Modifies the entire bundle with given parameters (replace operation)\n\n| Attribute        | Description                                                                                                                                             |\n|------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|\n| bundle-name   | **Required:** A unique name of the bundle.                                                                                                          |\n| bundle-id | **Required:** A bundle id associated with bundle.             |\n| bundle-type | **Required:** A name of the bundle-type.             |\n| operation | **Required:** set to `replace`. If no value specified in optional parameters, it will replace optional parameters values with an empty string.             |\n\n---\n**NOTE**\n\nIntroduced in Mosaic CP 21.1.\n\n---",
        "operationId": "ManagedObject-ModifyBundleOperationReplacewithRequiredParameters",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ManagedObject-ModifyBundleOperationReplacewithRequiredParametersRequest"
              },
              "example": {
                "input": {
                  "bundle-context": {
                    "bundle-name": "orch-bdl-1",
                    "bundle-type": "Generic Bundle",
                    "bundle-id": "4623/1"
                  },
                  "operation": "replace"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 08 Jan 2021 16:47:44 GMT"
                    },
                    "example": "Fri, 08 Jan 2021 16:47:44 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/ManagedObject-ModifyBundleOperationReplacewithRequiredParameters"
                },
                "example": {
                  "output": {
                    "timestamp": "2021-01-08T16:47:44.772000",
                    "bundle-name": "orch-bdl-1",
                    "status": "modifying",
                    "trans-id": "1fb15ab8-5e02-45d5-a36b-efae493659aa",
                    "completion-status": "in-progress"
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-cloud-platform-orchestration:delete": {
      "post": {
        "tags": [
          "Delete Bundle"
        ],
        "summary": "Managed Object - Delete Bundle",
        "description": "Attempts to delete an exisiting `bundle`.\n\n| Attribute        | Description                                                                                                                                             |\n|------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|\n| bundle-name   | **Required:** A unique name for the bundle.          |\n\n---\n**NOTE**\n\nIntroduced in Mosaic CP 21.1.\n\n---",
        "operationId": "ManagedObject-DeleteBundle",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ManagedObject-DeleteBundleRequest"
              },
              "example": {
                "input": {
                  "bundle-context": {
                    "bundle-name": "orch-bdl-1"
                  }
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 08 Jan 2021 16:48:23 GMT"
                    },
                    "example": "Fri, 08 Jan 2021 16:48:23 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/ManagedObject-DeleteBundle"
                },
                "example": {
                  "output": {
                    "timestamp": "2021-01-08T16:48:23.955000",
                    "bundle-name": "orch-bdl-1",
                    "status": "deleting",
                    "trans-id": "5f3fa57c-80a5-46d3-a6f9-69d47efd58a9",
                    "completion-status": "in-progress"
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-cloud-platform-uiworkflow:configure": {
      "post": {
        "tags": [
          "Bundles"
        ],
        "summary": "Configure Bundle",
        "description": "Modifies an existing bundle in the `configured` state. Successful request returns the status of the operation, along with a transition id that can be used to verify the completion of the operation.\n\n\n<br>\nRequest Payload Details\n</br>\n\n|\tAttribute\t\t\t|\t\tDescription\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t |\n|-----------------------|------------------------------------------------------------------------------------------------|\n|\tbundle-name\t\t\t|**Required:** Unique name of the bundle.\t\t\t\t\t|\n|\tbundle-type         |**Required:** Type of the bundle.\t\t\t\t\t\t\t|\n|\tprofile-vector-name | The profile vector of the bundle.\t\t\t\t\t\t\t|",
        "operationId": "ConfigureBundle",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ConfigureBundleRequest"
              },
              "example": {
                "input": {
                  "bundle-context": {
                    "bundle-name": "ChannelPartition_1",
                    "bundle-type": "lag-interface",
                    "profile-vector-name": "{{bundle-pv-name}}"
                  }
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "409": {
            "description": "Conflict",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Sat, 09 May 2020 10:06:28 GMT"
                    },
                    "example": "Sat, 09 May 2020 10:06:28 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "144"
                    },
                    "example": "144"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/ConfigureBundle-IncorrectBundleName1"
                },
                "example": {
                  "errors": {
                    "error-type": "rpc",
                    "error-tag": "Validation of precondition failed",
                    "error-message": "Bundle Incorrect Bundle Name  does not exists."
                  }
                }
              }
            }
          },
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Sat, 09 May 2020 10:05:26 GMT"
                    },
                    "example": "Sat, 09 May 2020 10:05:26 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "195"
                    },
                    "example": "195"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/ConfigureBundle-Success"
                },
                "example": {
                  "output": {
                    "timestamp": "2020-05-09T10:05:26.492000",
                    "bundle-name": "ChannelPartition_1",
                    "status": "configuring",
                    "trans-id": "2ad65884-8030-47db-8636-0dd59632305a",
                    "completion-status": "in-progress"
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-uiworkflow-bundles:bundles/bundle=ChannelPartition_1": {
      "get": {
        "tags": [
          "Bundles"
        ],
        "summary": "Get Bundle",
        "description": "This API returns the data for a specific bundle. User needs to specify the bundle name in the request.\n\n**Response Details**\n\n|\tAttribute\t\t\t\t|\t\tDescription\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t|\n|---------------------------|------------------------------------------------------------------------------------------------|\n|\tbundle-name\t\t\t    |  Unique name of the bundle.\t\t\t\t\t\t\t\t\t\t\t|\n|\tbundle-type             | Type of the bundle.\t\t\t\t\t\t\t\t\t                |\n|   bundle-id               | ID of bundle. Format of ID string depends on type of bundle.         |\n|\tprofile-vector-name     | The profile vector of the bundle.\t\t\t\t\t\t\t                        |\n| state  |The state of the bundle. <i>Possible Values: configured, deployed, activated</i> |",
        "operationId": "GetBundle",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Sat, 09 May 2020 10:19:04 GMT"
                    },
                    "example": "Sat, 09 May 2020 10:19:04 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "156"
                    },
                    "example": "156"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetBundle-Success"
                },
                "example": {
                  "state": "activated",
                  "bundle-name": "ChannelPartition_1",
                  "bundle-id": "4392/1",
                  "profile-vector-name": "Sample Bundle Vector",
                  "bundle-type": "channel-partition"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Sat, 09 May 2020 10:20:07 GMT"
                    },
                    "example": "Sat, 09 May 2020 10:20:07 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "91"
                    },
                    "example": "91"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetBundle-IncorrectBundleName1"
                },
                "example": {
                  "errors": {
                    "error-type": "application",
                    "error-message": "'Incorrect Bundle Name' not found"
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-uiworkflow-bundles:bundles/bundle": {
      "get": {
        "tags": [
          "Bundles"
        ],
        "summary": "Get All Bundles",
        "description": "Get details of all Bundles in MCP. Returns the data for a requested bundle as described below.\n\n**Response Details**\n\n|\tAttribute\t\t\t\t|\t\tDescription\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t|\n|---------------------------|------------------------------------------------------------------------------------------------|\n|\tbundle-name\t\t\t    |  Unique name of the bundle.\t\t\t\t\t\t\t\t\t\t\t|\n|\tbundle-type             | Type of the bundle.\t\t\t\t\t\t\t\t\t                |\n|   bundle-id               | ID of bundle. Format of ID string depends on type of bundle.         |\n|\tprofile-vector-name     | The profile vector of the bundle.\t\t\t\t\t\t\t                        |\n| state  |The state of the bundle. <i>Possible Values: configured, deployed, activated</i> |",
        "operationId": "GetAllBundles",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Sat, 09 May 2020 10:21:15 GMT"
                    },
                    "example": "Sat, 09 May 2020 10:21:15 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "273"
                    },
                    "example": "273"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/GetAllBundles-Success"
                  },
                  "description": "",
                  "example": [
                    {
                      "state": "configured",
                      "bundle-name": "ChannelPartition",
                      "profile-vector-name": "",
                      "bundle-type": "channel-partition"
                    },
                    {
                      "state": "activated",
                      "bundle-name": "ChannelPartition_1",
                      "bundle-id": "4392/1",
                      "profile-vector-name": "Sample Bundle Vector",
                      "bundle-type": "channel-partition"
                    }
                  ]
                },
                "example": [
                  {
                    "state": "configured",
                    "bundle-name": "ChannelPartition",
                    "profile-vector-name": "",
                    "bundle-type": "channel-partition"
                  },
                  {
                    "state": "activated",
                    "bundle-name": "ChannelPartition_1",
                    "bundle-id": "4392/1",
                    "profile-vector-name": "Sample Bundle Vector",
                    "bundle-type": "channel-partition"
                  }
                ]
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-cloud-platform-uiworkflow:deactivate": {
      "post": {
        "tags": [
          "Bundles"
        ],
        "summary": "Deactivate Bundle",
        "description": "Attempts to transition an exisiting Bundle into the `deactivated` state. This also results in reflow of the bundle. Successful request returns the status of the operation, along with a transition id that can be used to verify the completion of the operation\n\n<br>\nRequest Payload Details\n</br>\n\n|\tAttribute\t\t\t\t|\t\tDescription\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t|\n|---------------------------|-----------------------------------------------------------------------------------------------|\n|\tbundle-name\t\t\t\t|**Required:** Unique name of the bundle.\t\t\t\t\t\t\t\t\t\t\t\t\t\t|",
        "operationId": "DeactivateBundle",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DeactivateBundleRequest"
              },
              "example": {
                "input": {
                  "bundle-context": {
                    "bundle-name": "ChannelPartition_1"
                  }
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Sat, 09 May 2020 10:22:52 GMT"
                    },
                    "example": "Sat, 09 May 2020 10:22:52 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "196"
                    },
                    "example": "196"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/DeactivateBundle-Success"
                },
                "example": {
                  "output": {
                    "timestamp": "2020-05-09T10:22:52.087000",
                    "bundle-name": "ChannelPartition_1",
                    "status": "deactivating",
                    "trans-id": "925a1ff9-5f5c-42fd-a483-e94adfa76460",
                    "completion-status": "in-progress"
                  }
                }
              }
            }
          },
          "409": {
            "description": "Conflict",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Sat, 09 May 2020 10:23:09 GMT"
                    },
                    "example": "Sat, 09 May 2020 10:23:09 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "174"
                    },
                    "example": "174"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/DeactivateBundle-AlreadyDeactivated1"
                },
                "example": {
                  "errors": {
                    "error-type": "rpc",
                    "error-tag": "Validation of precondition failed",
                    "error-message": "Action 'deactivate' not allowed for ChannelPartition_1 with state 'deployed'"
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-cloud-platform-uiworkflow:undeploy": {
      "post": {
        "tags": [
          "Bundles"
        ],
        "summary": "Undeploy Bundle",
        "description": "Attempts to transition an exisiting Bundle into the `undeployed` state. Successful request returns the status of the operation, along with a transition id that can be used to verify the completion of the operation.\n\n<br>\nRequest Payload Details\n</br>\n\n\n|\tAttribute\t\t\t\t|\t\tDescription\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t|\n|---------------------------|-----------------------------------------------------------------------------------------------|\n|\tbundle-name\t\t\t\t|**Required:** Unique name of the bundle.\t\t\t\t\t\t\t\t\t\t\t\t\t\t|",
        "operationId": "UndeployBundle",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UndeployBundleRequest"
              },
              "example": {
                "input": {
                  "bundle-context": {
                    "bundle-name": "ChannelPartition_1"
                  }
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "409": {
            "description": "Conflict",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Sat, 09 May 2020 10:24:02 GMT"
                    },
                    "example": "Sat, 09 May 2020 10:24:02 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "174"
                    },
                    "example": "174"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/UndeployBundle-AlreadyUndeployed1"
                },
                "example": {
                  "errors": {
                    "error-type": "rpc",
                    "error-tag": "Validation of precondition failed",
                    "error-message": "Action 'undeploy' not allowed for ChannelPartition_1 with state 'configured'"
                  }
                }
              }
            }
          },
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Sat, 09 May 2020 10:23:49 GMT"
                    },
                    "example": "Sat, 09 May 2020 10:23:49 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "195"
                    },
                    "example": "195"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/UndeployBundle-Success"
                },
                "example": {
                  "output": {
                    "timestamp": "2020-05-09T10:23:49.131000",
                    "bundle-name": "ChannelPartition_1",
                    "status": "undeploying",
                    "trans-id": "987ef3a2-2d8b-402f-866e-7b9b08996dc9",
                    "completion-status": "in-progress"
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-cloud-platform-uiworkflow:delete": {
      "post": {
        "tags": [
          "Bundles"
        ],
        "summary": "Delete Bundle",
        "description": "Attempts to `delete` an existing Bundle. Successful request returns the status of the operation, along with a transition id that can be used to verify the completion of the operation.\n\n<br>\nRequest Payload Details\n</br>\n\n|\tAttribute\t\t\t\t|\t\tDescription\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t|\n|---------------------------|-----------------------------------------------------------------------------------------------|\n|\tbundle-name\t\t\t\t|**Required:** Unique name of the bundle.\t\t\t\t\t\t\t\t\t\t\t\t\t\t|",
        "operationId": "DeleteBundle",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DeleteBundleRequest"
              },
              "example": {
                "input": {
                  "bundle-context": {
                    "bundle-name": "ChannelPartition_1"
                  }
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "409": {
            "description": "Conflict",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Sat, 09 May 2020 10:08:59 GMT"
                    },
                    "example": "Sat, 09 May 2020 10:08:59 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "140"
                    },
                    "example": "140"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/DeleteBundle-AlreadyDeleted1"
                },
                "example": {
                  "errors": {
                    "error-type": "rpc",
                    "error-tag": "Validation of precondition failed",
                    "error-message": "Bundle ChannelPartition_1 does not exists."
                  }
                }
              }
            }
          },
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Sat, 09 May 2020 10:08:15 GMT"
                    },
                    "example": "Sat, 09 May 2020 10:08:15 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "192"
                    },
                    "example": "192"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/DeleteBundle-Success"
                },
                "example": {
                  "output": {
                    "timestamp": "2020-05-09T10:08:15.257000",
                    "bundle-name": "ChannelPartition_1",
                    "status": "deleting",
                    "trans-id": "acd6d01f-4696-4ab6-a09a-e0f9932bd6ec",
                    "completion-status": "in-progress"
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-uiworkflow-services:content-providers/content-provider=Content-Provider": {
      "get": {
        "tags": [
          "Content Provider"
        ],
        "summary": "Get Content Provider",
        "description": "Fetches details of a specific Content Provider mentioned in the request url. Returns the data for a requested Content Provider as described below.\n\n**Response Details**\n\n|\tAttribute\t\t\t\t|\tDescription\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t|\n|--------------------------------------|------------------------------------------------------------------------------------------------|\n|\tcontent-provider-name\t\t\t|\t The name of the content provider for the endpoint.\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t|\n|\tmultipoint-outer-vlan-id\t\t\t| Content provider's multipoint outer traffic VLAN ID. Should be used for multicast (such as video) or shared VLAN (such as management). <i>Possible Values: untagged or vlan-id range 0..4094.</i>\t\t\t\t\t\t\t\t\t|\n|\tmultipoint-inner-vlan-id\t\t|  Content provider's multipoint inner traffic VLAN ID. Should be used for multicast (such as video) or shared VLAN (such as management). The inner-vlan-id only applies when the outer tag is a specified VLAN ID.”. <i>Possible Values: none or vlan-id range 0..4094.</i>\t\t\t\t\t\t\t|\n|\tprofile-vector-name\t\t| The profile vector of the content provider.\t\t\t\t\t\t\t\t\t|\n|\tinterface-name\t\t| Interface name to which content provider is attached.\t\t\t\t\t\t\t\t\t|\n|\tdevice-name\t\t| Identifies the device associated with this interface.\t\t\t\t\t\t\t\t\t|\n|\tstate\t\t|  Current state of the content provider. <i>Possible Values: configured, deployed, activated.</i>\t\t\t\t|",
        "operationId": "GetContentProvider",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 May 2020 08:01:48 GMT"
                    },
                    "example": "Tue, 05 May 2020 08:01:48 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "258"
                    },
                    "example": "258"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetContentProvider-Success"
                },
                "example": {
                  "device-name": "PON-Blade-1",
                  "state": "activated",
                  "interface-name": "PON-Blade-1-Provider-Interface",
                  "interface-id": "1",
                  "multipoint-inner-vlan-id": "none",
                  "multipoint-outer-vlan-id": "untagged",
                  "profile-vector-name": "",
                  "content-provider-name": "Content-Provider"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Wed, 06 May 2020 12:48:52 GMT"
                    },
                    "example": "Wed, 06 May 2020 12:48:52 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "92"
                    },
                    "example": "92"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetContentProvider-IncorrectContentProviderNotExists1"
                },
                "example": {
                  "errors": {
                    "error-type": "application",
                    "error-message": "'InvalidContentProvider' not found"
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-uiworkflow-services:content-providers/content-provider": {
      "get": {
        "tags": [
          "Content Provider"
        ],
        "summary": "Get All Content Providers",
        "description": "Get details of all Content Providers. Returns the data for a requested Content Provider as described below.\n\n**Response Details**\n\n|\tAttribute\t\t\t\t|\tDescription\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t|\n|--------------------------------------|------------------------------------------------------------------------------------------------|\n|\tcontent-provider-name\t\t\t|\tThe name of the content provider for the endpoint.\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t|\n|\tmultipoint-outer-vlan-id\t\t\t| Content provider's multipoint outer traffic VLAN ID. Should be used for multicast (such as video) or shared VLAN (such as management). <i>Possible Values: untagged or vlan-id range 0..4094. </i>\t\t\t\t\t\t\t\t\t\t|\n|\tmultipoint-inner-vlan-id\t\t|  Content provider's multipoint inner traffic VLAN ID. Should be used for multicast (such as video) or shared VLAN (such as management). The inner-vlan-id only applies when the outer tag is a specified VLAN ID.”. <i>Possible Values: none or vlan-id range 0..4094.</i>\t\t\t\t\t|\n|\tprofile-vector-name\t\t| The profile vector of the content provider.\t\t\t\t\t\t\t\t\t|\n|\tinterface-name\t\t| Interface name to which content provider is attached.\t\t\t\t\t\t\t\t\t|\n|\tdevice-name\t\t| Identifies the device associated with this interface.\t\t\t\t\t\t\t\t\t|\n|\tstate\t\t|  Current state of the content provider. <i>Possible Values: configured, deployed, activated.</i>\t\t\t\t|",
        "operationId": "GetAllContentProviders",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 May 2020 08:08:08 GMT"
                    },
                    "example": "Tue, 05 May 2020 08:08:08 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "260"
                    },
                    "example": "260"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/GETAllContentProviders-Success"
                  },
                  "description": "",
                  "example": [
                    {
                      "device-name": "PON-Blade-1",
                      "state": "activated",
                      "interface-name": "PON-Blade-1-Provider-Interface",
                      "interface-id": "1",
                      "multipoint-inner-vlan-id": "none",
                      "multipoint-outer-vlan-id": "untagged",
                      "profile-vector-name": "",
                      "content-provider-name": "Content-Provider"
                    }
                  ]
                },
                "example": [
                  {
                    "device-name": "PON-Blade-1",
                    "state": "activated",
                    "interface-name": "PON-Blade-1-Provider-Interface",
                    "interface-id": "1",
                    "multipoint-inner-vlan-id": "none",
                    "multipoint-outer-vlan-id": "untagged",
                    "profile-vector-name": "",
                    "content-provider-name": "Content-Provider"
                  }
                ]
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-data-centers:data-centers/data-center=Data Center": {
      "get": {
        "tags": [
          "Data Center"
        ],
        "summary": "Get Data Center",
        "description": "Get specific Data Center. Returns the data for a requested Data Center as described below.\n\n**Response Details**\n\n|\tAttribute\t\t\t\t|\tDescription\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t|\n|---------------------------|------------------------------------------------------------------------------------------------|\n|\tdata-center-name\t\t\t|  Name of data center. <i>Possible Values: string with length 1..250</i>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t|\n|\ttype\t\t\t| Data center type.  \t\t\t\t\t\t\t\t\t\t\t|\n|\tprofile-vector-name\t\t|\tThe profile vector of the data center.\t\t\t\t\t\t\t\t\t|\n|\tstate\t\t|  Current state of the content provider. <i>Possible Values: configured, deployed, activated.</i>\t\t\t\t|\n|\tavailability\t\t|\tIndicates availability of 'data center'. <i>Default Value: unavailable. Possible Values: unavailable or available.</i>\t\t\t\t\t\t\t\t|",
        "operationId": "GetDataCenter",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Wed, 06 May 2020 06:18:06 GMT"
                    },
                    "example": "Wed, 06 May 2020 06:18:06 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "123"
                    },
                    "example": "123"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "private, no-cache"
                    },
                    "example": "private, no-cache"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"01180903-6423-4908-90f8-ada4c926e1f9\""
                    },
                    "example": "\"01180903-6423-4908-90f8-ada4c926e1f9\""
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetDataCenter-Success"
                },
                "example": {
                  "state": "activated",
                  "availability": "available",
                  "data-center-name": "Data Center",
                  "profile-vector-name": "",
                  "type": "Generic"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Wed, 06 May 2020 08:04:01 GMT"
                    },
                    "example": "Wed, 06 May 2020 08:04:01 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "126"
                    },
                    "example": "126"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetDataCenter-IncorrectDataCenterNotExists1"
                },
                "example": {
                  "message": "Could not find path List(adtran-cloud-platform-data-centers, data-centers, data-center=Invalid-Data-Center)"
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-data-centers:data-centers/data-center": {
      "get": {
        "tags": [
          "Data Center"
        ],
        "summary": "Get All Data Centers",
        "description": "Gets details of all Data Centers. Returns the data for a requested bundle as described below\n\n**Response Details**\n\n|\tAttribute\t\t\t\t|\tDescription\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t|\n|---------------------------|------------------------------------------------------------------------------------------------|\n|\tdata-center-name\t\t\t|  Name of data center. <i>Possible Values: string with length 1..250</i>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t|\n|\ttype\t\t\t| Data center type. \t\t\t\t\t\t\t\t\t\t\t|\n|\tprofile-vector-name\t\t|\tThe profile vector of the data center.\t\t\t\t\t\t\t\t\t|\n|\tstate\t\t|  Current state of the content provider. <i>Possible Values: configured, deployed, activated</i>\t\t\t\t|\n|\tavailability\t\t|\tIndicates availability of 'data center'. <i>Default Value: unavailable. Possible Values: unavailable or available.</i>\t\t\t\t\t\t\t\t|",
        "operationId": "GetAllDataCenters",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Wed, 06 May 2020 05:48:32 GMT"
                    },
                    "example": "Wed, 06 May 2020 05:48:32 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "141"
                    },
                    "example": "141"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "private, no-cache"
                    },
                    "example": "private, no-cache"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"01180903-6423-4908-90f8-ada4c926e1f9\""
                    },
                    "example": "\"01180903-6423-4908-90f8-ada4c926e1f9\""
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetDataCenter-Success1"
                },
                "example": {
                  "data-center": [
                    {
                      "state": "activated",
                      "availability": "available",
                      "data-center-name": "Data Center",
                      "profile-vector-name": "",
                      "type": "Generic"
                    }
                  ]
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-uiworkflow-data-center-types:data-center-types": {
      "get": {
        "tags": [
          "Data Center"
        ],
        "summary": "Get All Data Center Types",
        "description": "Fetches list of data center type.\n\n**Response Details**\n\n| Attribute| Description |\n|---------|------------------|\n| type | Type of data center. |",
        "operationId": "GetAllDataCenterTypes",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 07 May 2020 11:13:13 GMT"
                    },
                    "example": "Thu, 07 May 2020 11:13:13 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "29"
                    },
                    "example": "29"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetAllDataCenterTypes"
                },
                "example": {
                  "type": [
                    {
                      "type": "GENERIC"
                    }
                  ]
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-device-types:device-types": {
      "get": {
        "tags": [
          "Devices"
        ],
        "summary": "Get All Device Types",
        "description": "Fetches a list of device type information. Returns a list of attributes as a response.\n\n**Response Details**\n\n| Attribute         | Description                                                      |\n|------------------|------------------------------------------------------------------|\n| schema-version   | This represents the version of the schema of the data given in this repository to support migration. <i>Possible values: 1..4,294,967,295</i>   |\n| device-type      |\tThis represents list of device type information. |\n| device-type-id  | The identification type of this device type. It can be used for identification.     |\n| device-type-name      | A display string to show the type name of this device type. It should not be used for identification.  |\n| hardware-model-name-regex  |\tA regular expression that matches the vendor specific model name of the device hardware like in the second part of CPEs version-number or DPUs hardware model-name.       |\n| device-type-interface           |\tThis represents the interfaces of this device type.            |\n| interface-type-id      |\tThe identification type of this interface type. It can be used for identification.          |\n| interface-type-name        |\tA display string to show the type name of this interface type. It should not be used for identification.      |\n| start  |\tFirst element in the range.  <i>Possible values: 1..4,294,967,295</i>      |\n| end  |\tLast element in the range.  <i>Possible values: true, false</i>  |",
        "operationId": "GetAllDeviceTypes",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 08 May 2020 12:15:03 GMT"
                    },
                    "example": "Fri, 08 May 2020 12:15:03 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "5076"
                    },
                    "example": "5076"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "private, no-cache"
                    },
                    "example": "private, no-cache"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"2e83b6aa-56b9-4487-abea-5d7971aa1b24\""
                    },
                    "example": "\"2e83b6aa-56b9-4487-abea-5d7971aa1b24\""
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/getAlldevicetypes-success"
                },
                "example": {
                  "device-types": {
                    "device-type": [
                      {
                        "device-type-interface": [
                          {
                            "interface-type-name": "g-fast",
                            "interface-type-id": "g-fast",
                            "ports": {
                              "end": 8,
                              "start": 1
                            },
                            "slots": {
                              "end": 0,
                              "start": 0
                            }
                          },
                          {
                            "interface-type-name": "gigabit-ethernet",
                            "interface-type-id": "gigabit-ethernet",
                            "ports": {
                              "end": 2,
                              "start": 1
                            },
                            "slots": {
                              "end": 0,
                              "start": 0
                            }
                          }
                        ],
                        "device-type-model": "adtran-devices-dpu5xxg:dpu508g",
                        "device-type-tag": [
                          "DPU",
                          "GEN_1"
                        ],
                        "device-type-name": "508G Gfast DPU",
                        "device-type-id": "508G Gfast DPU"
                      },
                      {
                        "device-type-interface": [
                          {
                            "interface-type-name": "g-fast",
                            "interface-type-id": "g-fast",
                            "ports": {
                              "end": 16,
                              "start": 1
                            },
                            "slots": {
                              "end": 0,
                              "start": 0
                            }
                          },
                          {
                            "interface-type-name": "gigabit-ethernet",
                            "interface-type-id": "gigabit-ethernet",
                            "ports": {
                              "end": 2,
                              "start": 1
                            },
                            "slots": {
                              "end": 0,
                              "start": 0
                            }
                          }
                        ],
                        "device-type-model": "adtran-devices-dpu5xxg:dpu516g",
                        "device-type-tag": [
                          "DPU",
                          "GEN_1"
                        ],
                        "device-type-name": "516G Gfast DPU",
                        "device-type-id": "516G Gfast DPU"
                      },
                      {
                        "device-type-interface": [
                          {
                            "interface-type-name": "gigabit-ethernet",
                            "interface-type-id": "gigabit-ethernet",
                            "ports": {
                              "end": 1,
                              "start": 1
                            },
                            "slots": {
                              "end": 0,
                              "start": 0
                            }
                          }
                        ],
                        "device-type-model": "",
                        "device-type-tag": [
                          "CPE"
                        ],
                        "device-type-name": "Gfast CPE",
                        "device-type-id": "Gfast CPE"
                      },
                      {
                        "device-type-interface": [
                          {
                            "interface-type-name": "gigabit-ethernet",
                            "interface-type-id": "gigabit-ethernet",
                            "ports": {
                              "end": 1,
                              "start": 1
                            },
                            "slots": {
                              "end": 0,
                              "start": 0
                            }
                          }
                        ],
                        "device-type-model": "",
                        "device-type-tag": [
                          "CPE"
                        ],
                        "device-type-name": "Gfast CPE 401G",
                        "device-type-id": "Gfast CPE 401G"
                      },
                      {
                        "device-type-interface": [
                          {
                            "interface-type-name": "gigabit-ethernet",
                            "interface-type-id": "gigabit-ethernet",
                            "ports": {
                              "end": 1,
                              "start": 1
                            },
                            "slots": {
                              "end": 0,
                              "start": 0
                            }
                          }
                        ],
                        "device-type-model": "",
                        "device-type-tag": [
                          "CPE"
                        ],
                        "device-type-name": "Gfast CPE 401GC",
                        "device-type-id": "Gfast CPE 401GC"
                      },
                      {
                        "device-type-interface": [
                          {
                            "interface-type-name": "gigabit-ethernet",
                            "interface-type-id": "gigabit-ethernet",
                            "ports": {
                              "end": 1,
                              "start": 1
                            },
                            "slots": {
                              "end": 0,
                              "start": 0
                            }
                          }
                        ],
                        "device-type-model": "",
                        "device-type-tag": [
                          "CPE"
                        ],
                        "device-type-name": "Gfast CPE 412G",
                        "device-type-id": "Gfast CPE 412G"
                      },
                      {
                        "device-type-interface": [
                          {
                            "interface-type-name": "gigabit-ethernet",
                            "interface-type-id": "gigabit-ethernet",
                            "ports": {
                              "end": 1,
                              "start": 1
                            },
                            "slots": {
                              "end": 0,
                              "start": 0
                            }
                          }
                        ],
                        "device-type-model": "",
                        "device-type-tag": [
                          "CPE",
                          "EOC"
                        ],
                        "device-type-name": "Gfast CPE 422GC",
                        "device-type-id": "Gfast CPE 422GC"
                      },
                      {
                        "device-type-interface": [
                          {
                            "interface-type-name": "g-fast",
                            "interface-type-id": "g-fast",
                            "ports": {
                              "end": 4,
                              "start": 1
                            },
                            "slots": {
                              "end": 0,
                              "start": 0
                            }
                          },
                          {
                            "interface-type-name": "gigabit-ethernet",
                            "interface-type-id": "gigabit-ethernet",
                            "ports": {
                              "end": 2,
                              "start": 1
                            },
                            "slots": {
                              "end": 0,
                              "start": 0
                            }
                          }
                        ],
                        "device-type-model": "adtran-devices-sdx22xx:sdx2221-04",
                        "device-type-tag": [
                          "DPU",
                          "GEN_2",
                          "MODEL_1"
                        ],
                        "device-type-name": "SDX2221-04-TP",
                        "device-type-id": "SDX2221-04-TP"
                      },
                      {
                        "device-type-interface": [
                          {
                            "interface-type-name": "g-fast",
                            "interface-type-id": "g-fast",
                            "ports": {
                              "end": 8,
                              "start": 1
                            },
                            "slots": {
                              "end": 0,
                              "start": 0
                            }
                          },
                          {
                            "interface-type-name": "gigabit-ethernet",
                            "interface-type-id": "gigabit-ethernet",
                            "ports": {
                              "end": 2,
                              "start": 1
                            },
                            "slots": {
                              "end": 0,
                              "start": 0
                            }
                          }
                        ],
                        "device-type-model": "adtran-devices-sdx22xx:sdx2221-08",
                        "device-type-tag": [
                          "DPU",
                          "GEN_2",
                          "MODEL_1"
                        ],
                        "device-type-name": "SDX2221-08-TP",
                        "device-type-id": "SDX2221-08-TP"
                      },
                      {
                        "device-type-interface": [
                          {
                            "interface-type-name": "g-fast",
                            "interface-type-id": "g-fast",
                            "ports": {
                              "end": 16,
                              "start": 1
                            },
                            "slots": {
                              "end": 0,
                              "start": 0
                            }
                          },
                          {
                            "interface-type-name": "gigabit-ethernet",
                            "interface-type-id": "gigabit-ethernet",
                            "ports": {
                              "end": 2,
                              "start": 1
                            },
                            "slots": {
                              "end": 0,
                              "start": 0
                            }
                          }
                        ],
                        "device-type-model": "adtran-devices-sdx22xx:sdx2221-16",
                        "device-type-tag": [
                          "DPU",
                          "GEN_2",
                          "MODEL_1"
                        ],
                        "device-type-name": "SDX2221-16-TP",
                        "device-type-id": "SDX2221-16-TP"
                      },
                      {
                        "device-type-interface": [
                          {
                            "interface-type-name": "g-fast",
                            "interface-type-id": "g-fast",
                            "ports": {
                              "end": 24,
                              "start": 1
                            },
                            "slots": {
                              "end": 0,
                              "start": 0
                            }
                          },
                          {
                            "interface-type-name": "gigabit-ethernet",
                            "interface-type-id": "gigabit-ethernet",
                            "ports": {
                              "end": 2,
                              "start": 1
                            },
                            "slots": {
                              "end": 0,
                              "start": 0
                            }
                          }
                        ],
                        "device-type-model": "adtran-devices-sdx22xx:sdx2221-24",
                        "device-type-tag": [
                          "DPU",
                          "GEN_2",
                          "MODEL_1"
                        ],
                        "device-type-name": "SDX2221-24-TP",
                        "device-type-id": "SDX2221-24-TP"
                      },
                      {
                        "device-type-interface": [
                          {
                            "interface-type-name": "g-fast",
                            "interface-type-id": "g-fast",
                            "ports": {
                              "end": 48,
                              "start": 1
                            },
                            "slots": {
                              "end": 0,
                              "start": 0
                            }
                          },
                          {
                            "interface-type-name": "gigabit-ethernet",
                            "interface-type-id": "gigabit-ethernet",
                            "ports": {
                              "end": 2,
                              "start": 1
                            },
                            "slots": {
                              "end": 0,
                              "start": 0
                            }
                          }
                        ],
                        "device-type-model": "adtran-devices-sdx22xx:sdx2221-48",
                        "device-type-tag": [
                          "DPU",
                          "GEN_2",
                          "MODEL_1"
                        ],
                        "device-type-name": "SDX2221-48-TP",
                        "device-type-id": "SDX2221-48-TP"
                      },
                      {
                        "device-type-interface": [
                          {
                            "interface-type-name": "g-fast",
                            "interface-type-id": "g-fast",
                            "ports": {
                              "end": 1,
                              "start": 1
                            },
                            "slots": {
                              "end": 0,
                              "start": 0
                            }
                          },
                          {
                            "interface-type-name": "gigabit-ethernet",
                            "interface-type-id": "gigabit-ethernet",
                            "ports": {
                              "end": 1,
                              "start": 1
                            },
                            "slots": {
                              "end": 0,
                              "start": 0
                            }
                          }
                        ],
                        "device-type-model": "adtran-devices-sdx22xx:sdx2222-01",
                        "device-type-tag": [
                          "DPU",
                          "GEN_2",
                          "MODEL_2"
                        ],
                        "device-type-name": "SDX2222-01-TP",
                        "device-type-id": "SDX2222-01-TP"
                      }
                    ],
                    "schema-version": 1
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-uiworkflow-devices:devices/device=device_1": {
      "get": {
        "tags": [
          "Devices"
        ],
        "summary": "Get Device",
        "description": "Fetches details of a specific device mentioned in the url. Returns the data for a requested device as described below.\n\n**Response Details**\n\n| Attribute        | Description                                                                                                                                             |\n|------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|\n| device-name      | Name of the device.                                                                                                          |\n| model-name       | Model name of the device.                                              |\n| part-number      | Part number associated with the device.                                |\n| interface-name\t\t    | The name of an existing interface on which to deploy the device.\t\t\t\t\t\t\t\t\t\t|\n| overridden-profiles\t\t| A list of overridden profiles to be used for this device.\t\t\t\t\t\t\t\t\t|\n| base-configuration | Base configuration associated with the device                                      |\n| credentials-name    | Name of the credentials resource.                                                         |\n| profile-vector-name | Name of the device type profile vector to associate with this device.                    |\n| management-domain-context | The management domain of the device. <i>Possible Values : named, static-ipv4, external</i>                  |\n| management-domain-static-ipv4 | <b>ip-address</b>: IP Address of device. <b>mask</b>: Subnet mask of IP. <b>gateway</b>: Gateway IP.|\n|   object-parameters       | Gathering object parameters.   |\n| state  | The state of the specific device. <i>Possible Values: configured, deployed, activated</i> |",
        "operationId": "GetDevice",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Mon, 04 May 2020 13:59:01 GMT"
                    },
                    "example": "Mon, 04 May 2020 13:59:01 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "590"
                    },
                    "example": "590"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetDevice-Success-DeployedState"
                },
                "example": {
                  "device-name": "device_1",
                  "state": "deployed",
                  "base-configuration": "",
                  "object-parameters": {},
                  "part-number": "GENERIC",
                  "management-domain-context": {
                    "management-domain-type": "management-domain-static-ipv4",
                    "management-vlan-outer-tag": "untagged",
                    "management-domain-name": "static-ipv4-device_1",
                    "management-vlan-inner-tag": "none",
                    "management-domain-static-ipv4": {
                      "ip-address": "10.11.45.4",
                      "mask": "255.255.255.0",
                      "gateway": "255.255.244.255"
                    },
                    "persistency-server": []
                  },
                  "metadata": {
                    "inventory": {}
                  },
                  "profile-vector-name": "OLT Config Vector",
                  "model-name": "Generic Device",
                  "credentials-name": "OLT Cred"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Mon, 04 May 2020 14:00:05 GMT"
                    },
                    "example": "Mon, 04 May 2020 14:00:05 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "79"
                    },
                    "example": "79"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetDevice-IncorrectDeviceName1"
                },
                "example": {
                  "errors": {
                    "error-type": "application",
                    "error-message": "'device_11' not found"
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-uiworkflow-devices:devices/device": {
      "get": {
        "tags": [
          "Devices"
        ],
        "summary": "Get Devices using Query Params",
        "description": "Provides the result against given values passed for `fields` in query request URL. Request is `GET` type.\n\n<br>\nRequest Url Query Parameters -\n\n| Attribute        | Description                                                                                                                                             |\n|------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|\n| fields   | Values for fields which are specific to the object-type. In the case of devices these could be `device-name`, `state`, `model-name` etc.                                                                                                         |\n\n\n\n<br>\n\n**Response Details** \n\n<br>\nList of JSON objects returned in response with values that were passed in request URL.\n\n\n| Attribute        | Description                                                                                            |\n|------------------|---------------------------------------------------------------------------------------------------------|\n| device-name   \t| A unique name of the device.                                                                               |\n| state \t\t\t| The indicated state of the device. <i>Possible values: configured, deployed or activated</i>    |\n| model-name\t\t| Model name of the device.                                                                                   |\n\n\n<br>\n\nNOTE : One or more device attributes can be passed to request URL to query after `fields` key. The attributes are `device-name`, `state`, `model-name`, `management-domain`, `base-configuration`, `part-number`, `profile-vector-name`, `credentials-name`. \n\n<br>\nDifferent combination of requests can be made by using these attributes.",
        "operationId": "GetDevicesusingQueryParams",
        "parameters": [
          {
            "name": "fields",
            "in": "query",
            "description": "",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "example": "device-name;state;model-name"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Sat, 09 May 2020 09:22:32 GMT"
                    },
                    "example": "Sat, 09 May 2020 09:22:32 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "175"
                    },
                    "example": "175"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/DataFilterByUrl-Device-GetFilteredDatum"
                  },
                  "description": "",
                  "example": [
                    {
                      "device-name": "device_test1",
                      "state": "configured",
                      "model-name": "SDX 6310 16-port 10G OLT"
                    },
                    {
                      "device-name": "rooted-device",
                      "state": "activated",
                      "model-name": "Generic Device"
                    }
                  ]
                },
                "example": [
                  {
                    "device-name": "device_test1",
                    "state": "configured",
                    "model-name": "SDX 6310 16-port 10G OLT"
                  },
                  {
                    "device-name": "rooted-device",
                    "state": "activated",
                    "model-name": "Generic Device"
                  }
                ]
              }
            }
          },
          "404": {
            "description": "Not Found",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Sat, 09 May 2020 09:24:58 GMT"
                    },
                    "example": "Sat, 09 May 2020 09:24:58 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "84"
                    },
                    "example": "84"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/DataFilterByUrl-Device-IncorrectFieldsValue1"
                },
                "example": {
                  "errors": {
                    "error-type": "application",
                    "error-message": "'interface-name' not found"
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-cloud-platform-uiworkflow:force-delete": {
      "post": {
        "tags": [
          "Devices"
        ],
        "summary": "Force Remove Device",
        "description": "Attempts to `force delete` an exisiting device and its dependent children. Successful request returns the status of the operation, along with a transition id that can be used to verify the completion of the operation.\n\n\n<br>\nRequest Payload Details\n</br>\n\n\n\n|\tAttribute\t\t\t\t|\t\tDescription\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t|\n|---------------------------|------------------------------------------------------------------------------------------------|\n|\tdevice-name\t\t\t | **Required:** Name of the device.\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t|",
        "operationId": "ForceRemoveDevice",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ForceRemoveDeviceRequest"
              },
              "example": {
                "input": {
                  "device-context": {
                    "device-name": "{{devices-extra-dev-name}}"
                  }
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 26 Jun 2020 07:16:24 GMT"
                    },
                    "example": "Fri, 26 Jun 2020 07:16:24 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/ForceDeleteDevice-Success"
                },
                "example": {
                  "output": {
                    "trans-id": "b1524cbb-d054-4d9b-b246-550f67b1f31f",
                    "timestamp": "2020-06-26T07:16:24.560000",
                    "status": "force-deleting",
                    "completion-status": "in-progress"
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 26 Jun 2020 07:17:35 GMT"
                    },
                    "example": "Fri, 26 Jun 2020 07:17:35 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/ForceDeleteDevice-Failure1"
                },
                "example": {
                  "errors": {
                    "error-type": "rpc",
                    "error-tag": "Invalid input",
                    "error-message": "Expected message of form {\n  One of [\n    service-context : {\n      service-id : <String>\n    }\n    device-context : {\n      device-name : <String>\n    }\n    interface-context : {\n      interface-name : <String>\n    }\n  ]\n}"
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-cloud-platform-uiworkflow:retrieve-compatible-model-names": {
      "post": {
        "tags": [
          "Devices"
        ],
        "summary": "Get All Compatible Model Names",
        "description": "The compatible model-names API is used to retrieve the compatible model-names based on request model-name.\n\n<br>\nRequest Payload Details\n</br>\n\n\n| Attribute        | Description                                                                                                                                             |\n|------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|\n| input            | Input model name                                                                                                          |\n| model-name       | **Required:** Part number of the device                                              |",
        "operationId": "GetAllCompatibleModelNames",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GetAllCompatibleModelNamesRequest"
              },
              "example": {
                "input": {
                  "model-name": "DPU"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "default": {
            "description": "",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetAllCompatibleModelNames-Success"
                },
                "example": {
                  "output": {
                    "compatible-model-name": []
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-uiworkflow-interfaces:interfaces/interface=interface_1": {
      "get": {
        "tags": [
          "Interfaces"
        ],
        "summary": "Get Interface",
        "description": "Fetches details of a specific interface mentioned in the url. Returns the data for a requested interface as described below.\n\n**Response Details**\n\n| Attribute        | Description                                                                                                                                             |\n|------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|\n| device-name   | Name of upstream device with which the interface is associated.                                                                                                          |\n| interface-type   | Type of interface.                   |\n| state | The indicated state of the interface. For example state can be configured/deployed/activated.             |\n| interface-name | A unique name for the interface.             |\n| bundle-name | The bundle to associate with this interface.             |\n| interface-id | A string that identifies the interface.             |\n| subtended-device-name | Identifies the subtended host (e.g. TID) of this interface.             |\n| lower-layer-interfaces | List of the lower layer interfaces (e.g. in an EFM group).             |\n| profile-vector-name | Identifier of profile vector associated with this interface.             |\n| number-of-lower-layer-interfaces | The number of interfaces layered configured for this interface.             |",
        "operationId": "GetInterface",
        "parameters": [],
        "responses": {
          "404": {
            "description": "Not Found",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 May 2020 10:58:58 GMT"
                    },
                    "example": "Tue, 05 May 2020 10:58:58 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "73"
                    },
                    "example": "73"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetInterface-IncorrectInterfaceName1"
                },
                "example": {
                  "errors": {
                    "error-type": "application",
                    "error-message": "'xyz' not found"
                  }
                }
              }
            }
          },
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 May 2020 10:56:35 GMT"
                    },
                    "example": "Tue, 05 May 2020 10:56:35 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "353"
                    },
                    "example": "353"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetInterface-Success"
                },
                "example": {
                  "device-name": "rooted-device",
                  "interface-type": "hundred-gigabit-ethernet",
                  "state": "activated",
                  "interface-name": "interface_1",
                  "bundle-name": "ChannelPartition",
                  "interface-id": "123",
                  "subtended-device-name": "",
                  "lower-layer-interfaces": [
                    "hundred-gigabit-ethernet 0/1"
                  ],
                  "profile-vector-name": "ONU Eth UNI Profile Vector",
                  "number-of-lower-layer-interfaces": 0
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-uiworkflow-interfaces:interfaces/interface": {
      "get": {
        "tags": [
          "Interfaces"
        ],
        "summary": "Get All Interfaces",
        "description": "Fetches list of all the interfaces in the MCP. Returns the data for a each interface as described below.\n\n**Response Details**\n\n| Attribute        | Description                                                                                                                                             |\n|------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|\n| device-name   | Name of upstream device with which the interface is associated.                                                                                                          |\n| interface-type   | Type of interface.                   |\n| state | The indicated state of the interface. For example state can be configured/deployed/activated.             |\n| interface-name | A unique name for the interface.             |\n| bundle-name | The bundle to associate with this interface.             |\n| interface-id | A string that identifies the interface.             |\n| subtended-device-name | Identifies the subtended host (e.g. TID) of this interface.             |\n| lower-layer-interfaces | List of the lower layer interfaces (e.g. in an EFM group).             |\n| profile-vector-name | Identifier of profile vector associated with this interface.             |\n| number-of-lower-layer-interfaces | The number of interfaces layered configured for this interface.             |",
        "operationId": "GetAllInterfaces",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 May 2020 10:53:36 GMT"
                    },
                    "example": "Tue, 05 May 2020 10:53:36 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "694"
                    },
                    "example": "694"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/GetAllInterfaces-Success"
                  },
                  "description": "",
                  "example": [
                    {
                      "device-name": "rooted-device",
                      "interface-type": "hundred-gigabit-ethernet",
                      "state": "activated",
                      "interface-name": "interface_1",
                      "bundle-name": "ChannelPartition",
                      "interface-id": "123",
                      "subtended-device-name": "",
                      "lower-layer-interfaces": [
                        "hundred-gigabit-ethernet 0/1"
                      ],
                      "profile-vector-name": "ONU Eth UNI Profile Vector",
                      "number-of-lower-layer-interfaces": 0
                    },
                    {
                      "device-name": "rooted-device",
                      "interface-type": "ten-gigabit-ethernet",
                      "state": "activated",
                      "interface-name": "interface_2",
                      "bundle-name": "ChannelPartition",
                      "interface-id": "456",
                      "subtended-device-name": "",
                      "lower-layer-interfaces": [
                        "ten-gigabit-ethernet 0/1"
                      ],
                      "profile-vector-name": "XPON Profile Vector",
                      "number-of-lower-layer-interfaces": 0
                    }
                  ]
                },
                "example": [
                  {
                    "device-name": "rooted-device",
                    "interface-type": "hundred-gigabit-ethernet",
                    "state": "activated",
                    "interface-name": "interface_1",
                    "bundle-name": "ChannelPartition",
                    "interface-id": "123",
                    "subtended-device-name": "",
                    "lower-layer-interfaces": [
                      "hundred-gigabit-ethernet 0/1"
                    ],
                    "profile-vector-name": "ONU Eth UNI Profile Vector",
                    "number-of-lower-layer-interfaces": 0
                  },
                  {
                    "device-name": "rooted-device",
                    "interface-type": "ten-gigabit-ethernet",
                    "state": "activated",
                    "interface-name": "interface_2",
                    "bundle-name": "ChannelPartition",
                    "interface-id": "456",
                    "subtended-device-name": "",
                    "lower-layer-interfaces": [
                      "ten-gigabit-ethernet 0/1"
                    ],
                    "profile-vector-name": "XPON Profile Vector",
                    "number-of-lower-layer-interfaces": 0
                  }
                ]
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-uiworkflow-interfaces:interface-types/interface-type": {
      "get": {
        "tags": [
          "Interfaces"
        ],
        "summary": "Get All Interface Types",
        "description": "Fetches information on types of interface in the system.\n\n**Response Details**\n\n| Attribute| Description |\n|---------|------------------|\n| interface-type | Interface type. Information on type of interface. |",
        "operationId": "GetAllInterfaceTypes",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 07 May 2020 11:10:10 GMT"
                    },
                    "example": "Thu, 07 May 2020 11:10:10 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "365"
                    },
                    "example": "365"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/GetAllInterfaceType"
                  },
                  "description": "",
                  "example": [
                    {
                      "interface-type": "generic"
                    },
                    {
                      "interface-type": "hundred-gigabit-ethernet"
                    },
                    {
                      "interface-type": "ethernet"
                    },
                    {
                      "interface-type": "ten-gigabit-ethernet"
                    },
                    {
                      "interface-type": "virtual-ethernet"
                    },
                    {
                      "interface-type": "gigabit-ethernet"
                    },
                    {
                      "interface-type": "ngpon2"
                    },
                    {
                      "interface-type": "xgspon"
                    },
                    {
                      "interface-type": "gpon"
                    },
                    {
                      "interface-type": "lag-group"
                    },
                    {
                      "interface-type": "g-fast"
                    }
                  ]
                },
                "example": [
                  {
                    "interface-type": "generic"
                  },
                  {
                    "interface-type": "hundred-gigabit-ethernet"
                  },
                  {
                    "interface-type": "ethernet"
                  },
                  {
                    "interface-type": "ten-gigabit-ethernet"
                  },
                  {
                    "interface-type": "virtual-ethernet"
                  },
                  {
                    "interface-type": "gigabit-ethernet"
                  },
                  {
                    "interface-type": "ngpon2"
                  },
                  {
                    "interface-type": "xgspon"
                  },
                  {
                    "interface-type": "gpon"
                  },
                  {
                    "interface-type": "lag-group"
                  },
                  {
                    "interface-type": "g-fast"
                  }
                ]
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-interfaces:interfaces/interface=DevInf_{test_uuid}": {
      "get": {
        "tags": [
          "Inspect Interface"
        ],
        "summary": "Query Interface",
        "description": "Query the given interface.  Inspect data is not included in the response to the general interace query.  Since fetching data provided by inspect involves the communication with network elements, general queries omit the inspect tree for the sake of responsiveness.",
        "operationId": "QueryInterface",
        "parameters": [
          {
            "name": "Authorization",
            "in": "header",
            "description": "",
            "required": true,
            "style": "simple",
            "schema": {
              "type": "string",
              "example": "Basic QURNSU46UEFTU1dPUkQ="
            }
          },
          {
            "name": "Content-Type",
            "in": "header",
            "description": "",
            "required": true,
            "style": "simple",
            "schema": {
              "enum": [
                "application/json"
              ],
              "type": "string",
              "example": "application/json"
            }
          },
          {
            "name": "test_uuid",
            "in": "path",
            "description": "",
            "required": true,
            "style": "simple",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Mon, 30 Aug 2021 16:18:43 GMT"
                    },
                    "example": "Mon, 30 Aug 2021 16:18:43 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"df2503b4-58de-4df7-881e-4422cad589ac\""
                    },
                    "example": "\"df2503b4-58de-4df7-881e-4422cad589ac\""
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "private, no-cache"
                    },
                    "example": "private, no-cache"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              }
            },
            "content": {
              "application/yang.data+json+firefly; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/QueryInterface"
                },
                "example": {
                  "subtended-device-names": [
                    "orchdev_d33ba51d-5e37-4dff-af10-077d137e00c8"
                  ],
                  "device-name": "rooted-device",
                  "interface-type": "generic",
                  "state": "deployed",
                  "interface-name": "DevInf_d33ba51d-5e37-4dff-af10-077d137e00c8",
                  "interface-id": "",
                  "lower-layer-interfaces": [],
                  "profile-vector-name": "",
                  "number-of-lower-layer-interfaces": 0
                }
              }
            }
          }
        },
        "deprecated": false,
        "security": []
      }
    },
    "/data/adtran-cloud-platform-interfaces:interfaces/interface=DevInf_{test_uuid}/inspect": {
      "get": {
        "tags": [
          "Inspect Interface"
        ],
        "summary": "Query Interface Inspect",
        "description": "Show all interface inspect items. This example is for informational purposes only. The output of this example will be different to support the solution specific data.",
        "operationId": "QueryInterfaceInspect",
        "parameters": [
          {
            "name": "Authorization",
            "in": "header",
            "description": "",
            "required": true,
            "style": "simple",
            "schema": {
              "type": "string",
              "example": "Basic QURNSU46UEFTU1dPUkQ="
            }
          },
          {
            "name": "Content-Type",
            "in": "header",
            "description": "",
            "required": true,
            "style": "simple",
            "schema": {
              "enum": [
                "application/json"
              ],
              "type": "string",
              "example": "application/json"
            }
          },
          {
            "name": "test_uuid",
            "in": "path",
            "description": "",
            "required": true,
            "style": "simple",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Mon, 30 Aug 2021 16:24:30 GMT"
                    },
                    "example": "Mon, 30 Aug 2021 16:24:30 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"153826fa-e546-4f5e-9238-22f45d2c5d24\""
                    },
                    "example": "\"153826fa-e546-4f5e-9238-22f45d2c5d24\""
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "private, no-cache"
                    },
                    "example": "private, no-cache"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              }
            },
            "content": {
              "application/yang.data+json+firefly; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/QueryInterfaceInspect"
                },
                "example": {
                  "attached-gadgets": {
                    "gadgets-online": true,
                    "gadgets": [
                      "copter",
                      "cuffs"
                    ]
                  },
                  "statistics": {
                    "in-broadcast-frames": "0",
                    "out-multicast-frames": "0",
                    "in-frames": "300",
                    "out-errors": "0",
                    "out-frames": "300",
                    "in-discards": "0",
                    "out-octets": "500",
                    "in-error-undersize-frames": "0",
                    "out-broadcast-frames": "1",
                    "in-error-oversize-frames": "0",
                    "in-multicast-frames": "0",
                    "out-discards": "0",
                    "in-error-fcs-frames": "0",
                    "in-errors": "0",
                    "in-octets": "500"
                  }
                }
              }
            }
          }
        },
        "deprecated": false,
        "security": []
      }
    },
    "/data/adtran-cloud-platform-interfaces:interfaces/interface=DevInf_{test_uuid}/inspect/attached-gadgets": {
      "get": {
        "tags": [
          "Inspect Interface"
        ],
        "summary": "Query Interface Inspect attached-gadgets",
        "description": "Show interface inspect subtree items.  This example is for informational purposes only.\nFor actual applications this would be replaced with solution specific data paths.",
        "operationId": "QueryInterfaceInspectattached-gadgets",
        "parameters": [
          {
            "name": "Authorization",
            "in": "header",
            "description": "",
            "required": true,
            "style": "simple",
            "schema": {
              "type": "string",
              "example": "Basic QURNSU46UEFTU1dPUkQ="
            }
          },
          {
            "name": "Content-Type",
            "in": "header",
            "description": "",
            "required": true,
            "style": "simple",
            "schema": {
              "enum": [
                "application/json"
              ],
              "type": "string",
              "example": "application/json"
            }
          },
          {
            "name": "test_uuid",
            "in": "path",
            "description": "",
            "required": true,
            "style": "simple",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 27 Aug 2021 18:35:06 GMT"
                    },
                    "example": "Fri, 27 Aug 2021 18:35:06 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"3092fd66-2a17-4e3c-8ba8-ebcc6332e7b7\""
                    },
                    "example": "\"3092fd66-2a17-4e3c-8ba8-ebcc6332e7b7\""
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "private, no-cache"
                    },
                    "example": "private, no-cache"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              }
            },
            "content": {
              "application/yang.data+json+firefly; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/QueryInterfaceInspectattached-gadgets"
                },
                "example": {
                  "gadgets-online": true,
                  "gadgets": [
                    "copter",
                    "cuffs"
                  ]
                }
              }
            }
          }
        },
        "deprecated": false,
        "security": []
      }
    },
    "/data/adtran-cloud-platform-devices:devices/device=orchdev_{test_uuid}": {
      "get": {
        "tags": [
          "Inspect Device"
        ],
        "summary": "Query Device",
        "description": "Query the given device.  Inspect data is not included in the response to the general device query.  Since fetching data provided by inspect involves the communication with network elements, general queries omit the inspect tree for the sake of responsiveness.",
        "operationId": "QueryDevice",
        "parameters": [
          {
            "name": "Authorization",
            "in": "header",
            "description": "",
            "required": true,
            "style": "simple",
            "schema": {
              "type": "string",
              "example": "Basic QURNSU46UEFTU1dPUkQ="
            }
          },
          {
            "name": "Content-Type",
            "in": "header",
            "description": "",
            "required": true,
            "style": "simple",
            "schema": {
              "enum": [
                "application/json"
              ],
              "type": "string",
              "example": "application/json"
            }
          },
          {
            "name": "test_uuid",
            "in": "path",
            "description": "",
            "required": true,
            "style": "simple",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Mon, 30 Aug 2021 16:19:16 GMT"
                    },
                    "example": "Mon, 30 Aug 2021 16:19:16 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"a950d461-3497-47bc-8c22-64c3aa9fc2c6\""
                    },
                    "example": "\"a950d461-3497-47bc-8c22-64c3aa9fc2c6\""
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "private, no-cache"
                    },
                    "example": "private, no-cache"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              }
            },
            "content": {
              "application/yang.data+json+firefly; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/QueryDevice"
                },
                "example": {
                  "device-name": "orchdev_d33ba51d-5e37-4dff-af10-077d137e00c8",
                  "state": "deployed",
                  "management-domain": "",
                  "base-configuration": "",
                  "part-number": "GENERIC",
                  "metadata": {
                    "event-config": {
                      "event": []
                    }
                  },
                  "profile-vector-name": "",
                  "model-name": "Generic Device"
                }
              }
            }
          }
        },
        "deprecated": false,
        "security": []
      }
    },
    "/data/adtran-cloud-platform-devices:devices/device=orchdev_{test_uuid}/inspect": {
      "get": {
        "tags": [
          "Inspect Device"
        ],
        "summary": "Query Device Inspect",
        "description": "Show all device inspect items. This example is for informational purposes only. The output of this example will be different to support the solution specific data.",
        "operationId": "QueryDeviceInspect",
        "parameters": [
          {
            "name": "Authorization",
            "in": "header",
            "description": "",
            "required": true,
            "style": "simple",
            "schema": {
              "type": "string",
              "example": "Basic QURNSU46UEFTU1dPUkQ="
            }
          },
          {
            "name": "Content-Type",
            "in": "header",
            "description": "",
            "required": true,
            "style": "simple",
            "schema": {
              "enum": [
                "application/json"
              ],
              "type": "string",
              "example": "application/json"
            }
          },
          {
            "name": "test_uuid",
            "in": "path",
            "description": "",
            "required": true,
            "style": "simple",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Mon, 30 Aug 2021 16:24:25 GMT"
                    },
                    "example": "Mon, 30 Aug 2021 16:24:25 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"ac01ee13-fc32-4e7c-9f0e-cbfe0610e3a6\""
                    },
                    "example": "\"ac01ee13-fc32-4e7c-9f0e-cbfe0610e3a6\""
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "private, no-cache"
                    },
                    "example": "private, no-cache"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              }
            },
            "content": {
              "application/yang.data+json+firefly; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/QueryDeviceInspect"
                },
                "example": {
                  "gadget-info": {
                    "gadget-type": "copter",
                    "max-speed": 30,
                    "max-altitude": 10,
                    "nested-usage": [
                      {
                        "interval": 0,
                        "deployed-count": 1,
                        "error-count": 1
                      },
                      {
                        "interval": 1,
                        "deployed-count": 3,
                        "error-count": 2
                      },
                      {
                        "interval": 2,
                        "deployed-count": 5,
                        "error-count": 3
                      },
                      {
                        "interval": 3,
                        "deployed-count": 7,
                        "error-count": 4
                      },
                      {
                        "interval": 4,
                        "deployed-count": 9,
                        "error-count": 5
                      }
                    ]
                  },
                  "gadget-usage": {
                    "historic": [
                      {
                        "day": 1,
                        "deployed-count": 3,
                        "error-count": 2
                      },
                      {
                        "day": 2,
                        "deployed-count": 5,
                        "error-count": 3
                      },
                      {
                        "day": 3,
                        "deployed-count": 7,
                        "error-count": 4
                      },
                      {
                        "day": 4,
                        "deployed-count": 9,
                        "error-count": 5
                      },
                      {
                        "day": 5,
                        "deployed-count": 11,
                        "error-count": 6
                      },
                      {
                        "day": 6,
                        "deployed-count": 13,
                        "error-count": 7
                      },
                      {
                        "day": 7,
                        "deployed-count": 15,
                        "error-count": 8
                      }
                    ],
                    "current": {
                      "deployed-count": 5,
                      "error-count": 0
                    }
                  },
                  "status": {
                    "online": true
                  }
                }
              }
            }
          }
        },
        "deprecated": false,
        "security": []
      }
    },
    "/data/adtran-cloud-platform-devices:devices/device=orchdev_{test_uuid}/inspect/gadget-info": {
      "get": {
        "tags": [
          "Inspect Device"
        ],
        "summary": "Query Device Inspect Gadget-info",
        "description": "Show device inspect subtree items.  This example is for informational purposes only.\nFor actual applications this would be replaced with solution specific data paths.",
        "operationId": "QueryDeviceInspectGadget-info",
        "parameters": [
          {
            "name": "Authorization",
            "in": "header",
            "description": "",
            "required": true,
            "style": "simple",
            "schema": {
              "type": "string",
              "example": "Basic QURNSU46UEFTU1dPUkQ="
            }
          },
          {
            "name": "Content-Type",
            "in": "header",
            "description": "",
            "required": true,
            "style": "simple",
            "schema": {
              "enum": [
                "application/json"
              ],
              "type": "string",
              "example": "application/json"
            }
          },
          {
            "name": "test_uuid",
            "in": "path",
            "description": "",
            "required": true,
            "style": "simple",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Mon, 30 Aug 2021 16:22:39 GMT"
                    },
                    "example": "Mon, 30 Aug 2021 16:22:39 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"54754113-3028-455a-82fb-9c9754630278\""
                    },
                    "example": "\"54754113-3028-455a-82fb-9c9754630278\""
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "private, no-cache"
                    },
                    "example": "private, no-cache"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              }
            },
            "content": {
              "application/yang.data+json+firefly; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/QueryDeviceInspectGadget-info"
                },
                "example": {
                  "gadget-type": "copter",
                  "max-speed": 30,
                  "max-altitude": 10,
                  "nested-usage": [
                    {
                      "interval": 0,
                      "deployed-count": 1,
                      "error-count": 1
                    },
                    {
                      "interval": 1,
                      "deployed-count": 3,
                      "error-count": 2
                    },
                    {
                      "interval": 2,
                      "deployed-count": 5,
                      "error-count": 3
                    },
                    {
                      "interval": 3,
                      "deployed-count": 7,
                      "error-count": 4
                    },
                    {
                      "interval": 4,
                      "deployed-count": 9,
                      "error-count": 5
                    }
                  ]
                }
              }
            }
          }
        },
        "deprecated": false,
        "security": []
      }
    },
    "/data/adtran-cloud-platform-devices:devices/device=orchdev_{test_uuid}/inspect/gadget-usage": {
      "get": {
        "tags": [
          "Inspect Device"
        ],
        "summary": "Query Device Inspect Gadget-usage",
        "description": "Show device inspect subtree items.  This example is for informational purposes only.\nFor actual applications this would be replaced with solution specific data paths.",
        "operationId": "QueryDeviceInspectGadget-usage",
        "parameters": [
          {
            "name": "Authorization",
            "in": "header",
            "description": "",
            "required": true,
            "style": "simple",
            "schema": {
              "type": "string",
              "example": "Basic QURNSU46UEFTU1dPUkQ="
            }
          },
          {
            "name": "Content-Type",
            "in": "header",
            "description": "",
            "required": true,
            "style": "simple",
            "schema": {
              "enum": [
                "application/json"
              ],
              "type": "string",
              "example": "application/json"
            }
          },
          {
            "name": "test_uuid",
            "in": "path",
            "description": "",
            "required": true,
            "style": "simple",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Mon, 30 Aug 2021 16:22:50 GMT"
                    },
                    "example": "Mon, 30 Aug 2021 16:22:50 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"77f9a421-0184-48d9-8169-98691a61dac7\""
                    },
                    "example": "\"77f9a421-0184-48d9-8169-98691a61dac7\""
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "private, no-cache"
                    },
                    "example": "private, no-cache"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              }
            },
            "content": {
              "application/yang.data+json+firefly; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/QueryDeviceInspectGadget-usage"
                },
                "example": {
                  "historic": [
                    {
                      "day": 1,
                      "deployed-count": 3,
                      "error-count": 2
                    },
                    {
                      "day": 2,
                      "deployed-count": 5,
                      "error-count": 3
                    },
                    {
                      "day": 3,
                      "deployed-count": 7,
                      "error-count": 4
                    },
                    {
                      "day": 4,
                      "deployed-count": 9,
                      "error-count": 5
                    },
                    {
                      "day": 5,
                      "deployed-count": 11,
                      "error-count": 6
                    },
                    {
                      "day": 6,
                      "deployed-count": 13,
                      "error-count": 7
                    },
                    {
                      "day": 7,
                      "deployed-count": 15,
                      "error-count": 8
                    }
                  ],
                  "current": {
                    "deployed-count": 5,
                    "error-count": 0
                  }
                }
              }
            }
          }
        },
        "deprecated": false,
        "security": []
      }
    },
    "/data/adtran-cloud-platform-management-domains:management-domains/management-domain=Management-Domain": {
      "get": {
        "tags": [
          "Management Domain"
        ],
        "summary": "Get Management Domain",
        "description": "Gets `Management Domain` from Management Domain Name. Returns the data for a requested Management Domain as described below.\n\n**Response Details**\n\n| Attribute        | Description                                                                                                                                             |\n|------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|\n|  management-domain-name     |  Unique name of the management-domain the user wishes to assign for personalization in their management system.<i>Possible Values: string with length 1..250</i>                                                                                                      |\n| persistency-server | Unique persistency server name.            |\n| dhcp-ipv4-server    | The unique DHCP IPv4 server name. This is only applicable for management domains which are of type 'management-domain-dhcp-ipv4'.                                                  |\n| gateway | This is only applicable for management domains which are of type 'management-domain-dhcp-ipv4'. Address of a gateway for the subnet. <i>Posssible Formats: ipv4-address</i>                    |\n| subnet |  The routing prefix of the subnet represented by this IPv4 address pool. eg. `128.66.0.0/24`.|\n| first-address | The first IP address in the range. <i>Posssible Formats: ipv4-address.</i>                    |\n| last-address | The last IP address in the range. <i>Posssible Formats: ipv4-address.</i>                    |\n|\tmanagement-domain-type\t\t\t| Management domain type. <i>Possible Values: management-domain-static-ipv4, management-domain-external, management-domain-dhcp-ipv4.</i>\t\t\t\t\t\t\t\t\t\t\t|\n|\tstate\t\t|  Current state of the content provider. <i>Possible Values:  configured, deployed, activated</i>\t\t\t\t\t\t\t\t\t|\n|\tdhcp-ipv4-pool\t\t|  DHCP pool configuration parameters. <i>Containing Values:  first-address, last-address, subnet, gateway</i>\t\t\t\t\t\t\t\t\t|\n|\tcredentials-name\t\t|\tName of credentials resource.\t\t\t\t\t\t\t\t\t|\n| management-vlan-outer-tag | Outer VLAN tag for management domain. <i>Posssible Values: untagged or 0..4094</i>                  |\n| management-vlan-inner-tag | Inner VLAN tag for management domain. <i>Posssible Values: none or 0..4094</i>                    |",
        "operationId": "GetManagementDomain",
        "parameters": [],
        "responses": {
          "404": {
            "description": "Not Found",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Wed, 06 May 2020 12:01:42 GMT"
                    },
                    "example": "Wed, 06 May 2020 12:01:42 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "136"
                    },
                    "example": "136"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetManagementDomain-IncorrectManagementDomainName1"
                },
                "example": {
                  "message": "Could not find path List(adtran-cloud-platform-management-domains, management-domains, management-domain=InvalidName)"
                }
              }
            }
          },
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Wed, 06 May 2020 12:01:17 GMT"
                    },
                    "example": "Wed, 06 May 2020 12:01:17 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "426"
                    },
                    "example": "426"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "private, no-cache"
                    },
                    "example": "private, no-cache"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"83f10196-c10f-44fe-948b-331409ec851c\""
                    },
                    "example": "\"83f10196-c10f-44fe-948b-331409ec851c\""
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/yang.data+json+firefly; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetManagementDomain-Success"
                },
                "example": {
                  "management-domain-type": "management-domain-dhcp-ipv4",
                  "state": "activated",
                  "dhcp": {
                    "server-name": [
                      "DHCP Server"
                    ],
                    "dhcp-ipv4-pool": {
                      "first-address": "1.1.1.1",
                      "last-address": "5.5.5.5",
                      "gateway": "2.2.2.2",
                      "subnet": "128.66.0.0/24"
                    }
                  },
                  "management-vlan-outer-tag": "untagged",
                  "management-domain-name": "Management-Domain",
                  "management-vlan-inner-tag": "none",
                  "credentials-name": "Credentials",
                  "persistency-server": [
                    "Persistency Server"
                  ]
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-management-domains:management-domains/management-domain": {
      "get": {
        "tags": [
          "Management Domain"
        ],
        "summary": "Get All Management Domain",
        "description": "Get details of all `Management Domain`. Returns the data for a requested Management Domain as described below.\n\n**Response Details**\n\n| Attribute        | Description                                                                                                                                             |\n|------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|\n|  management-domain-name     | Unique name of the management-domain the user wishes to assign for personalization in their management system.<i>Possible Values: string with length 1..250</i>                                                                                                      |\n| persistency-server | Unique persistency server name.            |\n| dhcp-ipv4-server    | The unique DHCP IPv4 server name. This is only applicable for management domains which are of type 'management-domain-dhcp-ipv4'.                                                 |\n| gateway | This is only applicable for management domains which are of type 'management-domain-dhcp-ipv4'. Address of a gateway for the subnet. <i>Posssible Formats: ipv4-address</i>                    |\n| subnet | The routing prefix of the subnet represented by this IPv4 address pool. eg. `128.66.0.0/24`.|\n| first-address | The first IP address in the range. <i>Posssible Formats: ipv4-address</i>                    |\n| last-address | The last IP address in the range. <i>Posssible Formats: ipv4-address</i>                    |\n|\tmanagement-domain-type\t\t\t| Management domain type. <i>Possible Values: management-domain-static-ipv4, management-domain-external, management-domain-dhcp-ipv4</i>\t\t\t\t\t\t\t\t\t\t\t|\n|\tstate\t\t|  Current state of the content provider.  <i>Possible Values: configured, deployed, activated</i>\t\t\t\t\t\t\t\t\t|\n|\tdhcp-ipv4-pool\t\t|  DHCP pool configuration parameters.  <i>Containing Values:  first-address, last-address, subnet, gateway</i>\t\t\t\t\t\t\t\t\t|\n|\tcredentials-name\t\t|\tName of credentials resource.\t\t\t\t\t\t\t\t\t|\n| management-vlan-outer-tag | Outer VLAN tag for management domain.  <i>Posssible Values: untagged or 0..4094</i>                  |\n| management-vlan-inner-tag | Inner VLAN tag for management domain. <i>Posssible Values: none or 0..4094</i>                    |",
        "operationId": "GetAllManagementDomain",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Wed, 06 May 2020 11:59:52 GMT"
                    },
                    "example": "Wed, 06 May 2020 11:59:52 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "428"
                    },
                    "example": "428"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "private, no-cache"
                    },
                    "example": "private, no-cache"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"e1fd4921-c0df-480a-a571-fd05dd4e11b3\""
                    },
                    "example": "\"e1fd4921-c0df-480a-a571-fd05dd4e11b3\""
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/yang.data+json+firefly; charset=UTF-8": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/GetAllManagementDomain-Success"
                  },
                  "description": "",
                  "example": [
                    {
                      "management-domain-type": "management-domain-dhcp-ipv4",
                      "state": "activated",
                      "dhcp": {
                        "server-name": [
                          "DHCP Server"
                        ],
                        "dhcp-ipv4-pool": {
                          "first-address": "1.1.1.1",
                          "last-address": "5.5.5.5",
                          "gateway": "2.2.2.2",
                          "subnet": "128.66.0.0/24"
                        }
                      },
                      "management-vlan-outer-tag": "untagged",
                      "management-domain-name": "Management-Domain",
                      "management-vlan-inner-tag": "none",
                      "credentials-name": "Credentials",
                      "persistency-server": [
                        "Persistency Server"
                      ]
                    }
                  ]
                },
                "example": [
                  {
                    "management-domain-type": "management-domain-dhcp-ipv4",
                    "state": "activated",
                    "dhcp": {
                      "server-name": [
                        "DHCP Server"
                      ],
                      "dhcp-ipv4-pool": {
                        "first-address": "1.1.1.1",
                        "last-address": "5.5.5.5",
                        "gateway": "2.2.2.2",
                        "subnet": "128.66.0.0/24"
                      }
                    },
                    "management-vlan-outer-tag": "untagged",
                    "management-domain-name": "Management-Domain",
                    "management-vlan-inner-tag": "none",
                    "credentials-name": "Credentials",
                    "persistency-server": [
                      "Persistency Server"
                    ]
                  }
                ]
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-uiworkflow-management-domains:management-domain-types/management-domain-type": {
      "get": {
        "tags": [
          "Management Domain"
        ],
        "summary": "Get All Management Domain Types",
        "description": "Fetches list of management domain types.\n\n**Response Details**\n\n| Attribute| Description |\n|---------|------------------|\n| management-domain-type | The stated label of the management domain type. |\n|management-domain-context|The name of the field ID to use during a device create. This field is the management domain type.|\n|configurable |If true, the management domain supports the configure RPC.|",
        "operationId": "GetAllManagementDomainTypes",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 07 May 2020 11:39:26 GMT"
                    },
                    "example": "Thu, 07 May 2020 11:39:26 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "383"
                    },
                    "example": "383"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetAllManagementDomainTypes"
                },
                "example": {
                  "management-domain-type": [
                    {
                      "management-domain-type": "static-ip",
                      "management-domain-context": "management-domain-static-ip",
                      "configurable": false
                    },
                    {
                      "management-domain-type": "static-ipv4",
                      "management-domain-context": "management-domain-static-ipv4",
                      "configurable": false
                    },
                    {
                      "management-domain-type": "external",
                      "management-domain-context": "management-domain-external",
                      "configurable": false
                    },
                    {
                      "management-domain-type": "dhcp-ipv4",
                      "management-domain-context": "management-domain-dhcp-ipv4",
                      "configurable": true
                    }
                  ]
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-uiworkflow-servers:servers/server=Server": {
      "get": {
        "tags": [
          "Servers"
        ],
        "summary": "Get Server",
        "description": "Fetches details of a `server` by Server Name. Returns the data for a requested server as described below.\n\n**Response Details**\n\n| Attribute        | Description                                                                                                                                             |\n|------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|\n| server-name      |  Name of server.    <i>Possible Values: string of length 1..250</i>                                                                                                      |\n| type       | Selected types supported by this server.                                           |\n| credentials-name | Name of credentials resource.                                      |\n| host-ip | Host IP address.  <i>Posssible Formats: ipv4-address and ipv6 address</i>                |\n| port    | Port Number.  <i>Posssible Values: 1..65535</i>                                                  |\n| base-path | Base file path used when retrieving files.                  |\n|\tstate\t\t|  Current state of the content provider.  <i>Possible Values: configured, deployed, activated</i>\t\t\t\t\t\t\t\t\t|\n| data-center-name | Name of data center.",
        "operationId": "GetServer",
        "parameters": [],
        "responses": {
          "404": {
            "description": "Not Found",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Wed, 06 May 2020 08:49:02 GMT"
                    },
                    "example": "Wed, 06 May 2020 08:49:02 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "83"
                    },
                    "example": "83"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetServer-IncorrectServerNotExists1"
                },
                "example": {
                  "errors": {
                    "error-type": "application",
                    "error-message": "'InvalidServer' not found"
                  }
                }
              }
            }
          },
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Wed, 06 May 2020 07:05:20 GMT"
                    },
                    "example": "Wed, 06 May 2020 07:05:20 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "188"
                    },
                    "example": "188"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetServer-Success"
                },
                "example": {
                  "host-ip": "10.11.11.11",
                  "state": "activated",
                  "server-name": "Server",
                  "data-center-name": "Data Center",
                  "port": "1",
                  "base-path": "/home/adtran",
                  "type": [
                    "TFTP"
                  ],
                  "credentials-name": "Credentials"
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-uiworkflow-servers:servers/server": {
      "get": {
        "tags": [
          "Servers"
        ],
        "summary": "Get All Servers",
        "description": "Fetches details of all Servers. Returns the data for a requested server as described below.\n\n**Response Details**\n\n| Attribute        | Description                                                                                                                                             |\n|------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|\n| server-name      | Name of server.  <i>Possible Values: string of length 1..250</i>                                                                                                         |\n| type       | Selected types supported by this server.                                              |\n| credentials-name | Name of credentials resource.                                      |\n| host-ip | Host IP address.                  |\n| port    | Port Number.  <i>Posssible Values: 1..65535</i>                                                      |\n| base-path | Base file path used when retrieving files.                    |\n| data-center-name | Name of data center.                     |\n|\tstate\t\t|  Current state of the content provider.  <i>Possible Values: configured, deployed, activated</i>\t\t\t\t\t\t\t\t\t|",
        "operationId": "GetAllServers",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Wed, 06 May 2020 07:10:56 GMT"
                    },
                    "example": "Wed, 06 May 2020 07:10:56 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "190"
                    },
                    "example": "190"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/GetAllServers-Success"
                  },
                  "description": "",
                  "example": [
                    {
                      "host-ip": "10.11.11.11",
                      "state": "activated",
                      "server-name": "Server",
                      "data-center-name": "Data Center",
                      "port": "1",
                      "base-path": "/home/adtran",
                      "type": [
                        "TFTP"
                      ],
                      "credentials-name": "Credentials"
                    }
                  ]
                },
                "example": [
                  {
                    "host-ip": "10.11.11.11",
                    "state": "activated",
                    "server-name": "Server",
                    "data-center-name": "Data Center",
                    "port": "1",
                    "base-path": "/home/adtran",
                    "type": [
                      "TFTP"
                    ],
                    "credentials-name": "Credentials"
                  }
                ]
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-captive-portal-services:find-services": {
      "post": {
        "tags": [
          "Services"
        ],
        "summary": "Find Services",
        "description": "This RPC can be used to search for a services that satisfy the given search parameters. A list of all matching service IDs will be returned.\n\n<br>\nRequest Payload Details\n</br>\n\n|\tAttribute\t\t\t\t|\tDescription\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t|\n|---------------------------|------------------------------------------------------------------------------------------------|\n|\tuplink-endpoint\t\t| One end of the service.  Some services may not discriminate between uplink and downlink - these terms are used for clarity in identifying direction.\t\t\t\t\t\t\t\t|\n|\tdownlink-endpoint\t\t|\tOne end of the service.  Some services may not discriminate between uplink and downlink - these terms are used for clarity in identifying direction.\t\t\t\t\t\t\t|\n|\tinterface-endpoint\t\t|\tAn endpoint defined by an interface an 0, 1, or 2 VLANs.\t\t\t\t\t\t\t|\n|\touter-tag-vlan-id\t\t|\tThe service endpoint outer VLAN tag.  Untagged traffic will use the value of 'untagged'. <b>Default Value:</b> untagged\t<i>Possible Values: untagged, any (Use any VLAN ID between a valid range of 1 to 4094 for tagged traffic) or uint16 in range 0..4094</i>\t\t\t\t\t\t|\n|\tinner-tag-vlan-id\t\t|\tThe inner tag only applies when the outer tag is a specified VLAN ID. The service endpoint inner VLAN tag.  A value of 'none' indicates there is no inner tag. <b>Default Value:</b> none\t<i>Possible Values: none or uint16 in range 0..4094</i>\t\t\t\t\t\t|\n|\tservice-type\t\t|\tThe type of service.  This can affect the way in which the service will be created in the network\t\t\t\t\t\t|",
        "operationId": "FindServices",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/FindServicesRequest"
              },
              "example": {
                "input": {
                  "uplink-endpoint": {
                    "interface-endpoint": {
                      "device-name": "PON-Blade-1",
                      "interface-id": "1",
                      "outer-tag-vlan-id": 227,
                      "inner-tag-vlan-id": 2257
                    }
                  },
                  "downlink-endpoint": {
                    "interface-endpoint": {
                      "device-name": "ONU-1",
                      "interface-id": "virtual-ethernet 0/1"
                    }
                  },
                  "service-type": ""
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 07 May 2020 11:10:22 GMT"
                    },
                    "example": "Thu, 07 May 2020 11:10:22 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "36"
                    },
                    "example": "36"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/FindServices-Success"
                },
                "example": {
                  "output": {
                    "service": [
                      "Service"
                    ]
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-cloud-platform-uiworkflow:suspend": {
      "post": {
        "tags": [
          "Services"
        ],
        "summary": "Suspend Service",
        "description": "Attempts to transition an exisiting Service State from `in-service` to `suspended` state.\n\n<br>\nRequest Payload Details\n</br>\n\n|\tAttribute\t\t\t\t|\tDescription\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t|\n|---------------------------|------------------------------------------------------------------------------------------------|\n|\tservice-id\t\t\t| **Required:** Name of the service. <i>Possible Values: string of length 1..250</i>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t|",
        "operationId": "SuspendService",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SuspendServiceRequest"
              },
              "example": {
                "input": {
                  "service-context": {
                    "service-id": "Service"
                  }
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "default": {
            "description": "",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SuspendService-IncorrectServiceNotExists"
                },
                "example": {
                  "errors": {
                    "error-type": "rpc",
                    "error-tag": "Validation of precondition failed",
                    "error-message": "Service InvalidService does not exist"
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-cloud-platform-uiworkflow:resume": {
      "post": {
        "tags": [
          "Services"
        ],
        "summary": "Resume Service",
        "description": "Attempts to transition an exisiting Service State from `suspended` to `in-service` state.\n\n<br>\nRequest Payload Details\n</br>\n\n|\tAttribute\t\t\t\t|\tDescription\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t|\n|---------------------------|------------------------------------------------------------------------------------------------|\n|\tservice-id\t\t\t| **Required:** Name of the service. <i>Possible Values: string of length 1..250</i>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t|",
        "operationId": "ResumeService",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ResumeServiceRequest"
              },
              "example": {
                "input": {
                  "service-context": {
                    "service-id": "Service"
                  }
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "default": {
            "description": "",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ResumeService-Success"
                },
                "example": {
                  "output": {
                    "timestamp": "2020-05-07T08:08:28.726000",
                    "service-id": "Service",
                    "status": "resuming",
                    "trans-id": "5a167a40-c2d8-4a29-8388-0a8f201e39d1",
                    "completion-status": "in-progress"
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-uiworkflow-services:services/service=Service": {
      "get": {
        "tags": [
          "Services"
        ],
        "summary": "Get Service",
        "description": "Gets a `Service` by Service Name.\n\n**Response Details**\n\n|\tAttribute\t\t\t\t|\tDescription\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t|\n|---------------------------|------------------------------------------------------------------------------------------------|\n|\tservice-id\t\t\t| Name of the service. <i>Possible Values: string of length 1..250</i>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t|\n|\tuplink-endpoint\t\t| One end of the service.  Some services may not discriminate between uplink and downlink - these terms are used for clarity in identifying direction.\t\t\t\t\t\t\t\t|\n|\tdownlink-endpoint\t\t|\tOne end of the service.  Some services may not discriminate between uplink and downlink - these terms are used for clarity in identifying direction.\t\t\t\t\t\t\t|\n|\tinterface-endpoint\t\t|\tAn endpoint defined by an interface an 0, 1, or 2 VLANs.\t\t\t\t\t\t\t|\n|\tcontent-provider-name\t\t|\tThe name of the content provider for the endpoint.\t\t\t\t\t\t\t|\n|\touter-tag-vlan-id\t\t|\tThe service endpoint outer VLAN tag.  Untagged traffic will use the value of 'untagged'. <b>Default Value:</b> untagged\t<i>Possible Values: untagged, any (Use any VLAN ID between a valid range of 1 to 4094 for tagged traffic) or uint16 in range 0..4094</i>\t\t\t\t\t\t|\n|\tinner-tag-vlan-id\t\t|\tThe inner tag only applies when the outer tag is a specified VLAN ID. The service endpoint inner VLAN tag.  A value of 'none' indicates there is no inner tag. <b>Default Value:</b> none\t<i>Possible Values: none or uint16 in range 0..4094</i>\t\t\t\t\t\t|\n|\tipv4-address\t\t|The IPv4 address for the subscriber.\t<i>Possible Formats: none or uint16 in range 0..4094</i>\t\t\t\t\t\t|\n|\tinterface-name\t\t|The name of the interface for the endpoint.\t\t\t\t\t\t|\n|\tstate\t\t|  Current state of the content provider.  <i>Possible Values: configured, deployed, activated</i>\t\t\t\t\t\t\t\t\t|\n|\tservice-type\t\t|  The type of service.  This can affect the way in which the service will be created in the network.\t\t\t\t\t\t\t\t\t|\n|\tdown-sla\t\t|  The Service Level Agreement to apply to the service in the uplink-to-downlink direction.\t\t\t\t\t\t\t\t\t|\n|\tup-sla\t\t|  The Service Level Agreement to apply to the service in the downlink-to-uplink direction.\t\t\t\t\t\t\t\t|\n|\tdevice-name\t\t|  The sysname of the device hosting the interface.\t\t\t\t\t\t\t\t|",
        "operationId": "GetService",
        "parameters": [],
        "responses": {
          "404": {
            "description": "Not Found",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 07 May 2020 09:47:13 GMT"
                    },
                    "example": "Thu, 07 May 2020 09:47:13 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "84"
                    },
                    "example": "84"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetService-IncorrectServiceNotExists1"
                },
                "example": {
                  "errors": {
                    "error-type": "application",
                    "error-message": "'InvalidService' not found"
                  }
                }
              }
            }
          },
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 07 May 2020 09:44:49 GMT"
                    },
                    "example": "Thu, 07 May 2020 09:44:49 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "803"
                    },
                    "example": "803"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetService-Success"
                },
                "example": {
                  "success": "true",
                  "timestamp": "2020-05-07T09:44:49.020Z",
                  "state": "activated",
                  "service-type": "",
                  "minor-code": "",
                  "major-code": "none",
                  "error-description": "",
                  "profile-name": "SDX Service1 100M",
                  "down-sla": "",
                  "service-id": "Service",
                  "up-sla": "",
                  "status": "activated",
                  "uplink-endpoint": {
                    "interface-endpoint": {
                      "device-name": "PON-Blade-1",
                      "outer-tag-vlan-id": 227,
                      "interface-name": "PON-Blade-1-Provider-Interface",
                      "ipv4-address": "2.2.2.2",
                      "interface-id": "1",
                      "content-provider-name": "Content-Provider",
                      "inner-tag-vlan-id": 2257
                    }
                  },
                  "downlink-endpoint": {
                    "interface-endpoint": {
                      "device-name": "ONU-1",
                      "outer-tag-vlan-id": "untagged",
                      "interface-name": "ONU-1-to-Subscriber",
                      "ipv4-address": "3.3.3.3",
                      "interface-id": "virtual-ethernet 0/1",
                      "inner-tag-vlan-id": "none"
                    }
                  },
                  "remote-id": "12",
                  "content-provider-name": "Content-Provider"
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-uiworkflow-services:service-profiles/service-profile": {
      "get": {
        "tags": [
          "Services"
        ],
        "summary": "Get Service Profiles",
        "description": "Fetches information of profiles being used for service configuration.\n\n**Response Details**\n\n| Attribute| Description |\n|---------|------------------|\n| service-profile-name | The profile to associate with this service. |\n| service-type \t| The type of service.  This can affect the way in which the service will be created in the network. |\n| down-sla | The Service Level Agreement to apply to the service in the uplink-to-downlink direction.   |\n| up-sla | The Service Level Agreement to apply to the service in the downlink-to-uplink direction.|",
        "operationId": "GetServiceProfiles",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 07 May 2020 10:37:35 GMT"
                    },
                    "example": "Thu, 07 May 2020 10:37:35 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "2071"
                    },
                    "example": "2071"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/GetServiceProfile"
                  },
                  "description": "",
                  "example": [
                    {
                      "service-profile-name": "LCI Service Profile Vector",
                      "service-type": "data",
                      "up-sla": "",
                      "down-sla": ""
                    },
                    {
                      "service-profile-name": "Residential Data Service",
                      "service-type": "data",
                      "up-sla": "",
                      "down-sla": ""
                    },
                    {
                      "service-profile-name": "Residential Video Service",
                      "service-type": "data",
                      "up-sla": "",
                      "down-sla": ""
                    },
                    {
                      "service-profile-name": "SDX Service1 100M",
                      "service-type": "data",
                      "up-sla": "",
                      "down-sla": ""
                    },
                    {
                      "service-profile-name": "SDX Service1 100M DHCP",
                      "service-type": "data",
                      "up-sla": "",
                      "down-sla": ""
                    },
                    {
                      "service-profile-name": "SDX Service1 100M PPPoE",
                      "service-type": "data",
                      "up-sla": "",
                      "down-sla": ""
                    },
                    {
                      "service-profile-name": "SDX Service1 Enable AES 100M",
                      "service-type": "data",
                      "up-sla": "",
                      "down-sla": ""
                    },
                    {
                      "service-profile-name": "SDX Service2 100M",
                      "service-type": "data",
                      "up-sla": "",
                      "down-sla": ""
                    },
                    {
                      "service-profile-name": "SDX Service2 100M ANCP",
                      "service-type": "data",
                      "up-sla": "",
                      "down-sla": ""
                    },
                    {
                      "service-profile-name": "SDX Service2 100M DHCP",
                      "service-type": "data",
                      "up-sla": "",
                      "down-sla": ""
                    },
                    {
                      "service-profile-name": "SDX Service2 100M DHCP and ANCP",
                      "service-type": "data",
                      "up-sla": "",
                      "down-sla": ""
                    },
                    {
                      "service-profile-name": "SDX Service2 100M PPPoE",
                      "service-type": "data",
                      "up-sla": "",
                      "down-sla": ""
                    },
                    {
                      "service-profile-name": "SDX Service2 100M PPPoE and ANCP",
                      "service-type": "data",
                      "up-sla": "",
                      "down-sla": ""
                    },
                    {
                      "service-profile-name": "SDX Service2 Scheduler",
                      "service-type": "data",
                      "up-sla": "",
                      "down-sla": ""
                    },
                    {
                      "service-profile-name": "SDX Service3 500M",
                      "service-type": "data",
                      "up-sla": "",
                      "down-sla": ""
                    },
                    {
                      "service-profile-name": "SDX Service3 500M DHCP",
                      "service-type": "data",
                      "up-sla": "",
                      "down-sla": ""
                    },
                    {
                      "service-profile-name": "SDX Service3 500M PPPoE",
                      "service-type": "data",
                      "up-sla": "",
                      "down-sla": ""
                    },
                    {
                      "service-profile-name": "SDX Service3 Scheduler",
                      "service-type": "data",
                      "up-sla": "",
                      "down-sla": ""
                    },
                    {
                      "service-profile-name": "SDX Service4 1G",
                      "service-type": "data",
                      "up-sla": "",
                      "down-sla": ""
                    },
                    {
                      "service-profile-name": "SDX Service4 1G DHCP",
                      "service-type": "data",
                      "up-sla": "",
                      "down-sla": ""
                    },
                    {
                      "service-profile-name": "SDX Service4 1G PPPoE",
                      "service-type": "data",
                      "up-sla": "",
                      "down-sla": ""
                    }
                  ]
                },
                "example": [
                  {
                    "service-profile-name": "LCI Service Profile Vector",
                    "service-type": "data",
                    "up-sla": "",
                    "down-sla": ""
                  },
                  {
                    "service-profile-name": "Residential Data Service",
                    "service-type": "data",
                    "up-sla": "",
                    "down-sla": ""
                  },
                  {
                    "service-profile-name": "Residential Video Service",
                    "service-type": "data",
                    "up-sla": "",
                    "down-sla": ""
                  },
                  {
                    "service-profile-name": "SDX Service1 100M",
                    "service-type": "data",
                    "up-sla": "",
                    "down-sla": ""
                  },
                  {
                    "service-profile-name": "SDX Service1 100M DHCP",
                    "service-type": "data",
                    "up-sla": "",
                    "down-sla": ""
                  },
                  {
                    "service-profile-name": "SDX Service1 100M PPPoE",
                    "service-type": "data",
                    "up-sla": "",
                    "down-sla": ""
                  },
                  {
                    "service-profile-name": "SDX Service1 Enable AES 100M",
                    "service-type": "data",
                    "up-sla": "",
                    "down-sla": ""
                  },
                  {
                    "service-profile-name": "SDX Service2 100M",
                    "service-type": "data",
                    "up-sla": "",
                    "down-sla": ""
                  },
                  {
                    "service-profile-name": "SDX Service2 100M ANCP",
                    "service-type": "data",
                    "up-sla": "",
                    "down-sla": ""
                  },
                  {
                    "service-profile-name": "SDX Service2 100M DHCP",
                    "service-type": "data",
                    "up-sla": "",
                    "down-sla": ""
                  },
                  {
                    "service-profile-name": "SDX Service2 100M DHCP and ANCP",
                    "service-type": "data",
                    "up-sla": "",
                    "down-sla": ""
                  },
                  {
                    "service-profile-name": "SDX Service2 100M PPPoE",
                    "service-type": "data",
                    "up-sla": "",
                    "down-sla": ""
                  },
                  {
                    "service-profile-name": "SDX Service2 100M PPPoE and ANCP",
                    "service-type": "data",
                    "up-sla": "",
                    "down-sla": ""
                  },
                  {
                    "service-profile-name": "SDX Service2 Scheduler",
                    "service-type": "data",
                    "up-sla": "",
                    "down-sla": ""
                  },
                  {
                    "service-profile-name": "SDX Service3 500M",
                    "service-type": "data",
                    "up-sla": "",
                    "down-sla": ""
                  },
                  {
                    "service-profile-name": "SDX Service3 500M DHCP",
                    "service-type": "data",
                    "up-sla": "",
                    "down-sla": ""
                  },
                  {
                    "service-profile-name": "SDX Service3 500M PPPoE",
                    "service-type": "data",
                    "up-sla": "",
                    "down-sla": ""
                  },
                  {
                    "service-profile-name": "SDX Service3 Scheduler",
                    "service-type": "data",
                    "up-sla": "",
                    "down-sla": ""
                  },
                  {
                    "service-profile-name": "SDX Service4 1G",
                    "service-type": "data",
                    "up-sla": "",
                    "down-sla": ""
                  },
                  {
                    "service-profile-name": "SDX Service4 1G DHCP",
                    "service-type": "data",
                    "up-sla": "",
                    "down-sla": ""
                  },
                  {
                    "service-profile-name": "SDX Service4 1G PPPoE",
                    "service-type": "data",
                    "up-sla": "",
                    "down-sla": ""
                  }
                ]
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-services:services": {
      "get": {
        "tags": [
          "Services"
        ],
        "summary": "Get Services",
        "description": "Fetches list of all the services in the MCP. Returns the data for each service as described below.\n\n**Response Details**\n\n| Attribute | Description |\n| --- | --- |\n| service-id | Name of the service. <i>Possible Values: string of length 1..250</i> |\n| uplink-endpoint | One end of the service. Some services may not discriminate between uplink and downlink - these terms are used for clarity in identifying direction. |\n| downlink-endpoint | One end of the service. Some services may not discriminate between uplink and downlink - these terms are used for clarity in identifying direction. |\n| interface-endpoint | An endpoint defined by an interface an 0, 1, or 2 VLANs. |\n| content-provider-name | The name of the content provider for the endpoint. |\n| outer-tag-vlan-id | The service endpoint outer VLAN tag. Untagged traffic will use the value of 'untagged'. <b>Default Value:</b> untagged <i>Possible Values: untagged, any (Use any VLAN ID between a valid range of 1 to 4094 for tagged traffic) or uint16 in range 0..4094</i> |\n| inner-tag-vlan-id | The inner tag only applies when the outer tag is a specified VLAN ID. The service endpoint inner VLAN tag. A value of 'none' indicates there is no inner tag. <b>Default Value:</b> none <i>Possible Values: none or uint16 in range 0..4094</i> |\n| ipv4-address | The IPv4 address for the subscriber. <i>Possible Formats: none or uint16 in range 0..4094</i> |\n| interface-name | The name of the interface for the endpoint. |\n| state | Current state of the content provider. <i>Possible Values: configured, deployed, activated</i> |\n| service-type | The type of service. This can affect the way in which the service will be created in the network. |\n| down-sla | The Service Level Agreement to apply to the service in the uplink-to-downlink direction. |\n| up-sla | The Service Level Agreement to apply to the service in the downlink-to-uplink direction. |\n| device-name | The sysname of the device hosting the interface. |\n| remote-id | The remote ID associated with the service. |\n| agent-circuit-id | The agent circuit ID associated with the service. |",
        "operationId": "GetServices",
        "parameters": [],
        "responses": {
          "200": {
            "description": "",
            "headers": {}
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-cloud-platform-uiworkflow:resolve-profiles": {
      "post": {
        "tags": [
          "Resolving Profiles"
        ],
        "summary": "Resolve Profiles for Device",
        "description": "Returns a list of profiles that are associated with a specific device.\n\n<br>\nRequest Payload Details\n</br>\n\n| Attribute | Description |\n| --- | --- |\n| device-name | **Required:** A unique name for the device. |\n| include-overrides | <b>Default Value:</b> true. Setting to 'true' will ensure resolution of profiles that respects the profile overrides for the specified object. Setting to 'false' will ignore configured profile overrides and cause resolution to select profiles as if the overrides didn't exist. |\n\n<br>\nResponse Details\n</br>\n\n| Attribute | Description |\n| --- | --- |\n| name | Unique name of the profile. |\n| type | Type of the profile. |",
        "operationId": "ResolveProfilesforDevice",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ResolveProfilesforDeviceRequest"
              },
              "example": {
                "input": {
                  "device-context": {
                    "device-name": "{{profiles-device-name}}"
                  }
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 20 Aug 2020 23:23:24 GMT"
                    },
                    "example": "Thu, 20 Aug 2020 23:23:24 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/ResolveProfilesforDevice"
                },
                "example": {
                  "output": {
                    "profile": [
                      {
                        "type": "file-transfer-server-profile",
                        "name": "file-transfer-2"
                      }
                    ]
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-profiles:profiles": {
      "get": {
        "tags": [
          "Profiles"
        ],
        "summary": "Get All Profiles",
        "description": "Get Details of all Profiles in MCP. Returns the data for a requested profile as described below.\n\n**Response Details**\n\n|\tAttribute\t\t\t|\t\tDescription\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t |\n|-----------------------|------------------------------------------------------------------------------------------------|\n|\tname\t\t|Unique name of the profile.\t\t\t\t\t|\n| parameters\t\t| Collection of profile parameters in key-value pairs. <b>name:</b> Defines name of the parameter in a profile. <b>value:</b> Defines value of the profile parameter. <b>hint:</b> A textual short description of applicable values and its unit of measure. <b>format:</b> Defines format of the value in regular expressions. This may be used for validation of input data.|\n| state | State of the profile vector and profiles. <i>Possible Values : configured, deployed, activated</i>",
        "operationId": "GetAllProfiles",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 01 Sep 2020 19:09:38 GMT"
                    },
                    "example": "Tue, 01 Sep 2020 19:09:38 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "W/\"efe6ee32-a7fe-4721-9fd4-9b594423c943\""
                    },
                    "example": "W/\"efe6ee32-a7fe-4721-9fd4-9b594423c943\""
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "private, no-cache"
                    },
                    "example": "private, no-cache"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "235"
                    },
                    "example": "235"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetAllProfiles"
                },
                "example": {
                  "profiles": {
                    "profile-type": [],
                    "profile": [
                      {
                        "name": "ANCP DSL Topology",
                        "state": "activated",
                        "type": "ancp-profile-type",
                        "parameters": {
                          "parameter": [
                            {
                              "name": "autoupgrade",
                              "value": "false"
                            },
                            {
                              "name": "filename",
                              "value": "cpe_firmware.bin"
                            },
                            {
                              "name": "reboot-timeout",
                              "value": "600"
                            },
                            {
                              "name": "version",
                              "value": "1.2.3.0"
                            }
                          ]
                        }
                      },
                      {
                        "name": "ANCP DSL Topology Original",
                        "state": "activated",
                        "type": "ancp-profile-type",
                        "parameters": {
                          "parameter": [
                            {
                              "name": "autoupgrade",
                              "value": "false"
                            },
                            {
                              "name": "filename",
                              "value": "cpe_firmware.bin"
                            },
                            {
                              "name": "reboot-timeout",
                              "value": "600"
                            },
                            {
                              "name": "version",
                              "value": "1.2.3.0"
                            }
                          ]
                        }
                      },
                      {
                        "name": "conditional",
                        "state": "activated",
                        "type": "conditional-profile-type",
                        "condition": {
                          "profile-name": "file-transfer-2",
                          "profile-type": "file-transfer-server-profile",
                          "device-condition": {
                            "default": true
                          }
                        }
                      },
                      {
                        "name": "ONU Ethernet UNI Profile",
                        "state": "activated",
                        "type": "ethernet-interface-type"
                      },
                      {
                        "name": "ONU Ethernet UNI Profile Original",
                        "state": "activated",
                        "type": "ethernet-interface-type"
                      },
                      {
                        "name": "another-profile",
                        "state": "activated",
                        "type": "ethernet-interface-type"
                      },
                      {
                        "name": "file-transfer-1",
                        "state": "activated",
                        "type": "file-transfer-server-profile"
                      },
                      {
                        "name": "file-transfer-2",
                        "state": "activated",
                        "type": "file-transfer-server-profile"
                      },
                      {
                        "name": "grouping",
                        "state": "activated",
                        "type": "grouping-profile-type",
                        "references": {
                          "reference": [
                            {
                              "profile-name": "another-profile",
                              "profile-type": "ethernet-interface-type"
                            },
                            {
                              "profile-name": "file-transfer-2",
                              "profile-type": "file-transfer-server-profile"
                            }
                          ]
                        }
                      },
                      {
                        "name": "tpid-1",
                        "state": "activated",
                        "type": "tpid-profile-type"
                      }
                    ],
                    "vectors": {
                      "vector": [
                        {
                          "name": "Device Config Vector",
                          "state": "activated",
                          "profile": [
                            {
                              "name": "ANCP DSL Topology Original",
                              "type": "ancp-profile-type"
                            }
                          ],
                          "type": "device"
                        },
                        {
                          "name": "ONU Eth UNI Profile Vector",
                          "state": "activated",
                          "profile": [
                            {
                              "name": "ONU Ethernet UNI Profile Original",
                              "type": "ethernet-interface-type"
                            }
                          ],
                          "type": "interface"
                        },
                        {
                          "profile": [],
                          "name": "SDX Service1 100M",
                          "state": "activated",
                          "type": "service"
                        },
                        {
                          "profile": [],
                          "name": "SDX Service1 100M DHCP",
                          "state": "activated",
                          "type": "service"
                        },
                        {
                          "profile": [],
                          "name": "Sample Bundle Vector",
                          "state": "activated",
                          "type": "bundle"
                        },
                        {
                          "name": "SimpleInterfaceVector",
                          "state": "activated",
                          "profile": [
                            {
                              "name": "file-transfer-2",
                              "type": "file-transfer-server-profile"
                            }
                          ],
                          "type": "interface"
                        },
                        {
                          "name": "SimpleVector",
                          "state": "activated",
                          "profile": [
                            {
                              "name": "file-transfer-2",
                              "type": "file-transfer-server-profile"
                            }
                          ],
                          "type": "device"
                        }
                      ]
                    }
                  }
                }
              },
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetAllProfiles-Success"
                },
                "example": {
                  "profile": [
                    {
                      "name": "gold-profile",
                      "state": "configured"
                    },
                    {
                      "name": "profile-1",
                      "state": "activated",
                      "parameters": {
                        "parameter": [
                          {
                            "format": "^[a-z]$",
                            "name": "parameter-name",
                            "hint": "an excellent letter lower-cased from a-z",
                            "value": "g"
                          }
                        ]
                      }
                    }
                  ]
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-profiles:profiles/profile": {
      "post": {
        "tags": [
          "Profiles"
        ],
        "summary": "Add a Profile",
        "description": "Creates a new profile and sends it straight to the `activated` state. This API replaces the deprecated `Create Profile`, `Configure Profile`, `Deploy Profile`, and `Activate Profile` APIs.\n\n<br>\nRequest Payload Details\n</br>\n\n| Attribute        | Description                                                                                                                                             |\n|------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|\n| name      |**Required:** Unique name of the profile the user wishes to assign for personalization in their management system.   |\n|type       |**Required:** Type of the profile.                                             |\n|state      |**Required:** State of the profile - set to `activated` to be able to add the profile in one API call |\n|*other*    |Profile data schema depends on type and will be specified in solution specific documentation. |",
        "operationId": "AddaProfile",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AddaProfileRequest"
              },
              "example": {
                "name": "tpid-profile-1",
                "state": "activated",
                "type": "tpid-profile-type",
                "tpid-profile": {
                  "stag-tpid": 8100,
                  "ctag-tpid": 8200
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "409": {
            "description": "Conflict",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Mon, 31 Aug 2020 18:50:37 GMT"
                    },
                    "example": "Mon, 31 Aug 2020 18:50:37 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/AddaProfileConflict1"
                },
                "example": {
                  "message": "Cannot overwrite path List(adtran-cloud-platform-profiles, profiles, profile=tpid-profile-type,tpid-profile-1)"
                }
              }
            }
          },
          "201": {
            "description": "Created",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Mon, 31 Aug 2020 18:50:24 GMT"
                    },
                    "example": "Mon, 31 Aug 2020 18:50:24 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"33e05e91-0a81-418a-883d-28f2c8cceff5\""
                    },
                    "example": "\"33e05e91-0a81-418a-883d-28f2c8cceff5\""
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "no-store"
                    },
                    "example": "no-store"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {}
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-profiles:profiles/profile=tpid-profile-type,tpid-profile-1": {
      "get": {
        "tags": [
          "Profiles"
        ],
        "summary": "Get Profile",
        "description": "Get details for a particular profile in Mosaic CP. Returns the contents of the profile. Each type of profile is YANG modeled and is documented in solution specific documentation.\n\n**Request URI Details**\n\n| Attribute    | Description                 |\n|--------------|-----------------------------|\n| profile      | Unique name of the profile. |\n| profile-type | Type of the profile         |\n\n**Response Payload Details**\n\n| Attribute | Description |\n|-----------|-------------|\n| name | Unique name of the profile. |\n| type | Type of the profile. |\n| parameters | Collection of profile parameters in key-value pairs. <b>name</b>:  Defines name of the parameter in a profile. <b>value</b>: Defines value of the profile parameter. <b>hint</b>: A textual short description of applicable values and its unit of measure. <b>format</b>: Defines format of the value in regular expressions. This may be used for validation of input data.|\n| state | State of the profiles. <i>Possible Values : configured, deployed, activated</i> |",
        "operationId": "GetProfile",
        "parameters": [],
        "responses": {
          "404": {
            "description": "Not Found",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 01 Sep 2020 19:04:29 GMT"
                    },
                    "example": "Tue, 01 Sep 2020 19:04:29 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetProfileCantfindprofile1"
                },
                "example": {
                  "message": "Could not find path List(adtran-cloud-platform-profiles, profiles, profile=tpid-profile-type,tpid-profile-1)"
                }
              }
            }
          },
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 01 Sep 2020 19:03:33 GMT"
                    },
                    "example": "Tue, 01 Sep 2020 19:03:33 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "W/\"207ae31a-28a7-4355-bb4c-077c30285591\""
                    },
                    "example": "W/\"207ae31a-28a7-4355-bb4c-077c30285591\""
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "private, no-cache"
                    },
                    "example": "private, no-cache"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetProfile"
                },
                "example": {
                  "name": "tpid-profile-1",
                  "state": "activated",
                  "type": "tpid-profile-type",
                  "tpid-profile": {
                    "stag-tpid": 8100,
                    "ctag-tpid": 8200
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      },
      "put": {
        "tags": [
          "Profiles"
        ],
        "summary": "Update a Profile",
        "description": "Updates an existing profile ignoring its current state. This API replaces the deprecated `Create Profile`, `Configure Profile`, `Deploy Profile`, and `Activate Profile` APIs.\n\n<br>\nRequest Payload Details\n</br>\n\n| Attribute        | Description                                                                                                                                             |\n|------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|\n| name      |**Required:** Unique name of the profile the user wishes to assign for personalization in their management system.   |\n|type       |**Required:** Type of the profile.                                             |\n|state      |**Required:** State of the profile - set to `activated` to be able to add the profile in one API call |\n|*other*    |Profile data schema depends on type and will be specified in solution specific documentation. YANG models delivered alongside Mosaic CP contain the formal schema. |",
        "operationId": "UpdateaProfile",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateaProfileRequest"
              },
              "example": {
                "name": "tpid-profile-1",
                "state": "activated",
                "type": "tpid-profile-type",
                "tpid-profile": {
                  "stag-tpid": 8101,
                  "ctag-tpid": 8200
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "204": {
            "description": "No Content",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Mon, 31 Aug 2020 21:36:18 GMT"
                    },
                    "example": "Mon, 31 Aug 2020 21:36:18 GMT"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"632b906d-3736-4405-8b96-239328ba087b\""
                    },
                    "example": "\"632b906d-3736-4405-8b96-239328ba087b\""
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "no-store"
                    },
                    "example": "no-store"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {}
          }
        },
        "deprecated": false
      },
      "delete": {
        "tags": [
          "Profiles"
        ],
        "summary": "Remove a Profile",
        "description": "Deletes an existing profile, disregarding the current state of the profile. If the profile is currently in use by a profile vector, this request is expected to fail with a `400 Bad Request` error. In this case, remove the profile from the vector before deleting it.\n<br><br>\n**Request URI Details**\n\n| Attribute    | Description                 |\n|--------------|-----------------------------|\n| profile      | Unique name of the profile. |\n| profile-type | Type of the profile         |",
        "operationId": "RemoveaProfile",
        "parameters": [],
        "responses": {
          "204": {
            "description": "No Content",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Mon, 31 Aug 2020 19:26:49 GMT"
                    },
                    "example": "Mon, 31 Aug 2020 19:26:49 GMT"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"cb879c90-37e2-47aa-8077-09f394782a31\""
                    },
                    "example": "\"cb879c90-37e2-47aa-8077-09f394782a31\""
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "no-store"
                    },
                    "example": "no-store"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {}
          },
          "404": {
            "description": "Not Found",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Mon, 31 Aug 2020 19:27:06 GMT"
                    },
                    "example": "Mon, 31 Aug 2020 19:27:06 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/RemoveaProfiledoesntexist1"
                },
                "example": {
                  "message": "Could not find path List(adtran-cloud-platform-profiles, profiles, profile=tpid-profile-type,tpid-profile-1)"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Mon, 31 Aug 2020 22:19:28 GMT"
                    },
                    "example": "Mon, 31 Aug 2020 22:19:28 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/RemoveaProfileConnectedtoanexistingprofilevector1"
                },
                "example": {
                  "message": "Cannot remove path 'adtran-cloud-platform-profiles:profiles/profile=tpid-profile-type,tpid-profile-1' due to reference from 'adtran-cloud-platform-profiles:profiles/vectors/vector=chris-test/profile=tpid-profile-type,tpid-profile-1'}"
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-overrides:overrides": {
      "get": {
        "tags": [
          "Profiles"
        ],
        "summary": "Get Overridden Profiles List for All MCP Objects",
        "description": "A list of objects with a list of overridden profiles for that object.\n\n**Response Details**\n\n| Attributes | Description |\n|---|---|\n|device-override|A list of devices with a list of its overridden profiles.|\n|interface-override|A list of interfaces with a list of its overridden profiles.|\n|name|A name that uniquely identifies the profile name.|\n|type|A name that uniquely identifies the profile type.|",
        "operationId": "GetOverriddenProfilesListforAllMCPObjects",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Sat, 09 May 2020 02:06:21 GMT"
                    },
                    "example": "Sat, 09 May 2020 02:06:21 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "425"
                    },
                    "example": "425"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "private, no-cache"
                    },
                    "example": "private, no-cache"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"50c4712b-2cdf-4182-8ba6-3c10b2c14593\""
                    },
                    "example": "\"50c4712b-2cdf-4182-8ba6-3c10b2c14593\""
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetOverriddenProfilesListforAllMCPObjects"
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-profiles:profiles/vectors": {
      "get": {
        "tags": [
          "Profile Vectors"
        ],
        "summary": "Get All Profile Vectors",
        "description": "Get Details of all Profile Vectors in MCP. Returns the data for a requested profile vector as described below.\n\n**Response Details**\n\n| Attribute        | Description                                                                                                                                             |\n|------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|\n| name   |Unique name of the profile vector.|\n| profile        |Contains profiles and their types. <b>name</b>: Name that uniquely identifies the profile. <b>type</b>: Type of the profile.    <i>Possible Values : generic</i>|                                    |\n| state | State of the profile vector. <i>Possible Values : configured, deployed, activated</i> |\n|type      | Profile vector type. <i>Possible Values: device, interface, service, content-provider, bundle</i>.                                       |",
        "operationId": "GetAllProfileVectors",
        "parameters": [],
        "responses": {
          "200": {
            "description": "",
            "headers": {}
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-profiles:profiles/vectors/vector=NewProfileVector": {
      "post": {
        "tags": [
          "Profile Vectors"
        ],
        "summary": "Add a Profile Vector",
        "description": "Creates a new profile vector in the `activated` state using the profiles listed.\n\n\n<br>\nRequest Payload Details\n</br>\n\n| Attribute        | Description                                                                                                                                             |\n|------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|\n| name   |Unique name of the profile vector.|\n| profile        |Contains profiles and their types. <b>name</b>: Name that uniquely identifies the profile. <b>type</b>: Type of the profile.    <i>Possible Values : generic</i>|                                    |\n| state | State of the profile vector. <i>Possible Values: configured, deployed, activated</i> |\n|type      | Profile vector type. <i>Possible Values : device, interface, service, content-provider, bundle</i>.                                       |",
        "operationId": "AddaProfileVector",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AddaProfileVectorRequest"
              },
              "example": {
                "name": "NewProfileVector",
                "profile": [
                  {
                    "name": "{{pv-profile-name-1}}",
                    "type": "tpid-profile-type"
                  },
                  {
                    "name": "{{pv-profile-name-2}}",
                    "type": "vectoring-profile-type"
                  }
                ],
                "state": "activated",
                "type": "device"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "description": "Created",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 11 Sep 2020 19:54:30 GMT"
                    },
                    "example": "Fri, 11 Sep 2020 19:54:30 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"b5a98367-8725-4ed2-8a8e-028741019be7\""
                    },
                    "example": "\"b5a98367-8725-4ed2-8a8e-028741019be7\""
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "no-store"
                    },
                    "example": "no-store"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {}
          }
        },
        "deprecated": false
      },
      "get": {
        "tags": [
          "Profile Vectors"
        ],
        "summary": "Get Profile Vector",
        "description": "Get a specific profile vector as described below.\n\n**Response Details**\n\n| Attribute        | Description                                                                                                                                             |\n|------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|\n| name   |Unique name of the profile vector.|\n| profile        |Contains profiles and their types. <b>name</b>: Name that uniquely identifies the profile. <b>type</b>: Type of the profile.    <i>Possible Values: generic</i>|                                    |\n| state | State of the profile vector. <i>Possible Values: configured, deployed, activated</i> |\n|type      | Profile vector type. <i>Possible Values : device, interface, service, content-provider, bundle</i>.                                       |",
        "operationId": "GetProfileVector",
        "parameters": [],
        "responses": {
          "200": {
            "description": "",
            "headers": {}
          }
        },
        "deprecated": false
      },
      "put": {
        "tags": [
          "Profile Vectors"
        ],
        "summary": "Update a Profile Vector",
        "description": "Updates an existing profile vector.\n\n\n<br>\nRequest Payload Details\n</br>\n\n| Attribute        | Description                                                                                                                                             |\n|------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|\n| name   |Unique name of the profile vector.|\n| profile        |Contains profiles and their types. <b>name</b>: Name that uniquely identifies the profile. <b>type</b>: Type of the profile.    <i>Possible Values: generic</i>|                                    |\n| state | State of the profile vector. <i>Possible Values: configured, deployed, activated</i> |\n|type      | Profile vector type. <i>Possible Values: device, interface, service, content-provider, bundle</i>.                                       |",
        "operationId": "UpdateaProfileVector",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateaProfileVectorRequest"
              },
              "example": {
                "name": "NewProfileVector",
                "profile": [
                  {
                    "name": "{{pv-profile-name-1}}",
                    "type": "tpid-profile-type"
                  }
                ],
                "state": "activated",
                "type": "device"
              }
            }
          },
          "required": true
        },
        "responses": {
          "204": {
            "description": "No Content",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 11 Sep 2020 19:55:04 GMT"
                    },
                    "example": "Fri, 11 Sep 2020 19:55:04 GMT"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"56584f7e-734b-4686-aad6-261430453b1a\""
                    },
                    "example": "\"56584f7e-734b-4686-aad6-261430453b1a\""
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "no-store"
                    },
                    "example": "no-store"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {}
          }
        },
        "deprecated": false
      },
      "delete": {
        "tags": [
          "Profile Vectors"
        ],
        "summary": "Remove a Profile Vector",
        "description": "Deletes an existing profile vector, regardless of current state.",
        "operationId": "RemoveaProfileVector",
        "parameters": [],
        "responses": {
          "204": {
            "description": "No Content",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 11 Sep 2020 19:56:05 GMT"
                    },
                    "example": "Fri, 11 Sep 2020 19:56:05 GMT"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"db3f314e-c72f-4e16-874d-309651d97bca\""
                    },
                    "example": "\"db3f314e-c72f-4e16-874d-309651d97bca\""
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "no-store"
                    },
                    "example": "no-store"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {}
          },
          "400": {
            "description": "Bad Request",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 11 Sep 2020 20:01:04 GMT"
                    },
                    "example": "Fri, 11 Sep 2020 20:01:04 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/RemoveaProfileVectorinUsebyAnotherObject1"
                },
                "example": {
                  "message": "Cannot remove path 'adtran-cloud-platform-profiles:profiles/vectors/vector=NewProfileVector' due to reference from 'adtran-cloud-platform-devices:devices/device=device-to-resolve'}"
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-profiles:profiles/profile=conditional-profile-type,ExampleDeviceConditional": {
      "delete": {
        "tags": [
          "Conditional Profiles (Behaviors)"
        ],
        "summary": "Delete Conditional Profile (Device Condition)",
        "description": "Removes the conditional profile.\n\n|URI Attributes|Description|\n|----------|-----------|\n|type|`conditional-profile-type`|\n|name|Name of the conditional profile.|",
        "operationId": "DeleteConditionalProfile(DeviceCondition)",
        "parameters": [],
        "responses": {
          "204": {
            "description": "No Content",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Wed, 16 Dec 2020 20:28:48 GMT"
                    },
                    "example": "Wed, 16 Dec 2020 20:28:48 GMT"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"a9823ff2-386e-42f1-84e0-efe1436dab89\""
                    },
                    "example": "\"a9823ff2-386e-42f1-84e0-efe1436dab89\""
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "no-store"
                    },
                    "example": "no-store"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              }
            },
            "content": {}
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-profiles:profiles/profile=conditional-profile-type,ExampleInterfaceConditional": {
      "delete": {
        "tags": [
          "Conditional Profiles (Behaviors)"
        ],
        "summary": "Delete Conditional Profile (Interface Condition)",
        "description": "Removes the conditional profile.\n\n|URI Attributes|Description|\n|----------|-----------|\n|type|`conditional-profile-type`|\n|name|Name of the conditional profile.|",
        "operationId": "DeleteConditionalProfile(InterfaceCondition)",
        "parameters": [],
        "responses": {
          "204": {
            "description": "No Content",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Wed, 16 Dec 2020 20:29:18 GMT"
                    },
                    "example": "Wed, 16 Dec 2020 20:29:18 GMT"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"315bfa31-c590-4fa2-8e62-043c1ebe4f77\""
                    },
                    "example": "\"315bfa31-c590-4fa2-8e62-043c1ebe4f77\""
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "no-store"
                    },
                    "example": "no-store"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              }
            },
            "content": {}
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-cloud-platform-uiworkflow:select-behavior": {
      "post": {
        "tags": [
          "Interface Name (Highest Priority)"
        ],
        "summary": "Select By Interface Name",
        "description": "Add interfaces by their name to a behavior. If using only a single interface name here instead of a list, consider using profile overrides instead which are better targeted to one-off type of changes and are supported in the Mosaic CP GUI as well as via API.\n\n|Attributes|Description|\n|----------|-----------|\n|behavior-group|Name of a behavior group (name matches a grouping profile which has `selectable` set to true).|\n|behavior|Name of a behavior in selected behavior group (name matches a conditional profile which is included in the above named `behavior-group` grouping profile). |\n|interface-name|Specified set of user interface names that, when any are matched, determines reference behavior to select.|",
        "operationId": "SelectByInterfaceName",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SelectByInterfaceNameRequest"
              },
              "example": {
                "input": {
                  "behavior-context": {
                    "behavior-group": "{{select-behavior-tpid}}",
                    "behavior": "{{select-behavior-cp-site-a}}",
                    "interface-context": {
                      "interface-name": [
                        "{{select-behavior-sim-int-name}}"
                      ]
                    }
                  }
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 15 Dec 2020 17:10:56 GMT"
                    },
                    "example": "Tue, 15 Dec 2020 17:10:56 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/SelectByInterfaceName"
                },
                "example": {
                  "output": {
                    "timestamp": "2020-12-15T17:10:56.022834",
                    "status": "select-behavior",
                    "trans-id": "683c3293-6f25-4184-8eb9-b8d936c560eb",
                    "completion-status": "in-progress",
                    "select-behavior": "sb-tpid-behavior"
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-cloud-platform-uiworkflow:deselect-behavior": {
      "post": {
        "tags": [
          "Interface Name (Highest Priority)"
        ],
        "summary": "Deselect Interface Name",
        "description": "Remove a named interface behavior.\n\n|Attributes|Description|\n|----------|-----------|\n|behavior-group|Name of a behavior group.|\n|behavior|Name of a behavior in selected behavior group.|\n|interface-name|Specified set of user interface names that, when any are matched, determines reference behavior to deselect.|",
        "operationId": "DeselectInterfaceName",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DeselectInterfaceNameRequest"
              },
              "example": {
                "input": {
                  "behavior-context": {
                    "behavior-group": "{{select-behavior-tpid}}",
                    "behavior": "{{select-behavior-cp-site-a}}",
                    "interface-context": {
                      "interface-name": [
                        "{{select-behavior-sim-int-name}}"
                      ]
                    }
                  }
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 15 Dec 2020 17:11:26 GMT"
                    },
                    "example": "Tue, 15 Dec 2020 17:11:26 GMT"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/DeselectIncludeInterfaceBehavior"
                },
                "example": {
                  "output": {
                    "deselect-behavior": "sb-tpid-behavior",
                    "timestamp": "2020-12-15T17:11:25.999794",
                    "status": "deselect-behavior",
                    "trans-id": "c5a561e2-0b77-4028-b4e5-fe2065ae9e58",
                    "completion-status": "in-progress"
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-profiles:profiles/profile=grouping-profile-type,example-behavior-group": {
      "delete": {
        "tags": [
          "Behavioral Intent"
        ],
        "summary": "Delete Grouping Profile (Behavior Group)",
        "description": "Removes a selectable behavior group.\n\n|URI Attributes|Description|\n|----------|-----------|\n|type|`grouping-profile-type` for a behavior group.|\n|name|Name of the behavior group.|",
        "operationId": "DeleteGroupingProfile(BehaviorGroup)",
        "parameters": [],
        "responses": {
          "200": {
            "description": "",
            "headers": {}
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-uiworkflow-behaviors:behaviors": {
      "get": {
        "tags": [
          "Behavioral Intent"
        ],
        "summary": "Get All Behavior Groups",
        "description": "Fetches all the Behavior Groups and respective behaviors.\n\n<br>\nResponse Details\n</br>\n\n|Attributes|Description|\n|----------|-----------|\n|name| Name of behavior group.|\n|behavior|List of associated behaviors of the behavior group.|",
        "operationId": "GetAllBehaviorGroups",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 12 May 2020 18:50:51 GMT"
                    },
                    "example": "Tue, 12 May 2020 18:50:51 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "4532"
                    },
                    "example": "4532"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              },
              "Transfer-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "chunked"
                    },
                    "example": "chunked"
                  }
                }
              },
              "Vary": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Accept-Encoding"
                    },
                    "example": "Accept-Encoding"
                  }
                }
              },
              "Strict-Transport-Security": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "max-age=63072000"
                    },
                    "example": "max-age=63072000"
                  }
                }
              },
              "Content-Encoding": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "gzip"
                    },
                    "example": "gzip"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetAllBehaviors"
                },
                "example": {
                  "behaviors": {
                    "behavior-group": [
                      {
                        "name": "LCI Group",
                        "behavior": [
                          {
                            "name": "OLT LCI Condition"
                          }
                        ]
                      },
                      {
                        "name": "LCI OLT Group",
                        "behavior": []
                      },
                      {
                        "name": "OLT Upgrade Profile Group",
                        "behavior": [
                          {
                            "name": "SDX 6010 OLT Upgrade Conditional Profile"
                          },
                          {
                            "name": "SDX 6310 OLT Upgrade Conditional Profile"
                          },
                          {
                            "name": "SDX 6312 OLT Upgrade Conditional Profile"
                          },
                          {
                            "name": "SDX 6320 OLT Upgrade Conditional Profile"
                          }
                        ]
                      },
                      {
                        "name": "ONU Upgrade Group",
                        "behavior": [
                          {
                            "name": "401 GPON ONU Upgrade Conditional Profile"
                          },
                          {
                            "name": "411 GPON ONU Upgrade Conditional Profile"
                          },
                          {
                            "name": "SDX 602V Upgrade Conditional Profile"
                          },
                          {
                            "name": "SDX 602X Upgrade Conditional Profile"
                          },
                          {
                            "name": "SDX 611 GPON ONU Upgrade Conditional Profile"
                          },
                          {
                            "name": "SDX 621V Upgrade Conditional Profile"
                          },
                          {
                            "name": "SDX 621X Upgrade Conditional Profile"
                          }
                        ]
                      },
                      {
                        "name": "Residential Data Service Group",
                        "behavior": [
                          {
                            "name": "OLT Residential Data Service Condition"
                          },
                          {
                            "name": "ONU Residential Data Service Condition"
                          }
                        ]
                      },
                      {
                        "name": "Residential Data Service OLT Group",
                        "behavior": []
                      },
                      {
                        "name": "Residential Data Service ONU Group",
                        "behavior": []
                      },
                      {
                        "name": "Residential Video Service Group",
                        "behavior": [
                          {
                            "name": "OLT Residential Video Service Condition"
                          },
                          {
                            "name": "ONU Residential Video Service Condition"
                          }
                        ]
                      },
                      {
                        "name": "Residential Video Service OLT Group",
                        "behavior": []
                      },
                      {
                        "name": "Residential Video Service ONU Group",
                        "behavior": []
                      },
                      {
                        "name": "SDX Service1 Group",
                        "behavior": [
                          {
                            "name": "OLT Service1 Condition"
                          },
                          {
                            "name": "ONU Service1 Condition"
                          }
                        ]
                      },
                      {
                        "name": "SDX Service1 Group DHCP",
                        "behavior": [
                          {
                            "name": "OLT Service1 Condition DHCP"
                          },
                          {
                            "name": "ONU Service1 Condition"
                          }
                        ]
                      },
                      {
                        "name": "SDX Service1 Group PPPoE",
                        "behavior": [
                          {
                            "name": "OLT Service1 Condition PPPoE"
                          },
                          {
                            "name": "ONU Service1 Condition"
                          }
                        ]
                      },
                      {
                        "name": "SDX Service1 OLT Group",
                        "behavior": []
                      },
                      {
                        "name": "SDX Service1 OLT Group DHCP",
                        "behavior": []
                      },
                      {
                        "name": "SDX Service1 OLT Group PPPoE",
                        "behavior": []
                      },
                      {
                        "name": "SDX Service1 ONU Group",
                        "behavior": []
                      },
                      {
                        "name": "SDX Service2 Group",
                        "behavior": [
                          {
                            "name": "OLT Service2 Condition"
                          },
                          {
                            "name": "ONU Service2 Condition"
                          }
                        ]
                      },
                      {
                        "name": "SDX Service2 Group ANCP",
                        "behavior": [
                          {
                            "name": "OLT Service2 Condition ANCP"
                          },
                          {
                            "name": "ONU Service2 Condition"
                          }
                        ]
                      },
                      {
                        "name": "SDX Service2 Group DHCP",
                        "behavior": [
                          {
                            "name": "OLT Service2 Condition DHCP"
                          },
                          {
                            "name": "ONU Service2 Condition"
                          }
                        ]
                      },
                      {
                        "name": "SDX Service2 Group DHCP and ANCP",
                        "behavior": [
                          {
                            "name": "OLT Service2 Condition DHCP and ANCP"
                          },
                          {
                            "name": "ONU Service2 Condition"
                          }
                        ]
                      },
                      {
                        "name": "SDX Service2 Group PPPoE",
                        "behavior": [
                          {
                            "name": "OLT Service2 Condition PPPoE"
                          },
                          {
                            "name": "ONU Service2 Condition"
                          }
                        ]
                      },
                      {
                        "name": "SDX Service2 Group PPPoE and ANCP",
                        "behavior": [
                          {
                            "name": "OLT Service2 Condition PPPoE and ANCP"
                          },
                          {
                            "name": "ONU Service2 Condition"
                          }
                        ]
                      },
                      {
                        "name": "SDX Service2 Group Scheduler",
                        "behavior": [
                          {
                            "name": "OLT Service2 Condition Scheduler"
                          },
                          {
                            "name": "ONU Service2 Condition"
                          }
                        ]
                      },
                      {
                        "name": "SDX Service2 OLT Group",
                        "behavior": []
                      },
                      {
                        "name": "SDX Service2 OLT Group ANCP",
                        "behavior": []
                      },
                      {
                        "name": "SDX Service2 OLT Group DHCP",
                        "behavior": []
                      },
                      {
                        "name": "SDX Service2 OLT Group DHCP and ANCP",
                        "behavior": []
                      },
                      {
                        "name": "SDX Service2 OLT Group PPPoE",
                        "behavior": []
                      },
                      {
                        "name": "SDX Service2 OLT Group PPPoE and ANCP",
                        "behavior": []
                      },
                      {
                        "name": "SDX Service2 OLT Group Scheduler",
                        "behavior": []
                      },
                      {
                        "name": "SDX Service2 ONU Group",
                        "behavior": []
                      },
                      {
                        "name": "SDX Service3 Group",
                        "behavior": [
                          {
                            "name": "OLT Service3 Condition"
                          },
                          {
                            "name": "ONU Service3 Condition"
                          }
                        ]
                      },
                      {
                        "name": "SDX Service3 Group DHCP",
                        "behavior": [
                          {
                            "name": "OLT Service3 Condition DHCP"
                          },
                          {
                            "name": "ONU Service3 Condition"
                          }
                        ]
                      },
                      {
                        "name": "SDX Service3 Group PPPoE",
                        "behavior": [
                          {
                            "name": "OLT Service3 Condition PPPoE"
                          },
                          {
                            "name": "ONU Service3 Condition"
                          }
                        ]
                      },
                      {
                        "name": "SDX Service3 Group Scheduler",
                        "behavior": [
                          {
                            "name": "OLT Service3 Condition Scheduler"
                          },
                          {
                            "name": "ONU Service3 Condition"
                          }
                        ]
                      },
                      {
                        "name": "SDX Service3 OLT Group",
                        "behavior": []
                      },
                      {
                        "name": "SDX Service3 OLT Group DHCP",
                        "behavior": []
                      },
                      {
                        "name": "SDX Service3 OLT Group PPPoE",
                        "behavior": []
                      },
                      {
                        "name": "SDX Service3 OLT Group Scheduler",
                        "behavior": []
                      },
                      {
                        "name": "SDX Service3 ONU Group",
                        "behavior": []
                      },
                      {
                        "name": "SDX Service4 Group",
                        "behavior": [
                          {
                            "name": "OLT Service4 Condition"
                          },
                          {
                            "name": "ONU Service4 Condition"
                          }
                        ]
                      },
                      {
                        "name": "SDX Service4 Group DHCP",
                        "behavior": [
                          {
                            "name": "OLT Service4 Condition DHCP"
                          },
                          {
                            "name": "ONU Service4 Condition"
                          }
                        ]
                      },
                      {
                        "name": "SDX Service4 Group PPPoE",
                        "behavior": [
                          {
                            "name": "OLT Service4 Condition PPPoE"
                          },
                          {
                            "name": "ONU Service4 Condition"
                          }
                        ]
                      },
                      {
                        "name": "SDX Service4 OLT Group",
                        "behavior": []
                      },
                      {
                        "name": "SDX Service4 OLT Group DHCP",
                        "behavior": []
                      },
                      {
                        "name": "SDX Service4 OLT Group PPPoE",
                        "behavior": []
                      },
                      {
                        "name": "SDX Service4 ONU Group",
                        "behavior": []
                      }
                    ]
                  }
                }
              },
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetAllBehaviors1"
                },
                "example": {
                  "behaviors": {
                    "behavior-group": [
                      {
                        "name": "sb-tpid-behavior",
                        "behavior": [
                          {
                            "name": "sb-dev-cp-site-a"
                          },
                          {
                            "name": "sb-dev-cp-site-b"
                          }
                        ]
                      }
                    ]
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-labels:labels/label": {
      "post": {
        "tags": [
          "Labels"
        ],
        "summary": "Add Label",
        "description": "Creates and add a new label or add an existing label to the referenced object(s). Multiple labels can be added to same referenced object(s).\n\n<br>\nRequest Payload Details -\n\n| Attribute | Description |\n| --- | --- |\n| name | **Required**: The name of the label. |\n| referenced-objects | **Required**: A list of objects referenced by the label.<br>**name**: The name of the object being referenced.<br>**object-type**: The type of object being referenced. e.g. `device` or `interface` |",
        "operationId": "AddLabel",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AddLabelRequest"
              },
              "example": {
                "name": "label_1",
                "referenced-objects": [
                  {
                    "name": "device_test1",
                    "object-type": "device"
                  }
                ]
              }
            }
          },
          "required": true
        },
        "responses": {
          "400": {
            "description": "Bad Request",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 08 May 2020 11:17:44 GMT"
                    },
                    "example": "Fri, 08 May 2020 11:17:44 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "252"
                    },
                    "example": "252"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/AddLabel-DeviceNotExists1"
                },
                "example": {
                  "message": "Cannot insert path 'adtran-cloud-platform-labels:labels/label=label_4/referenced-objects=device,unknown device' due non-existing reference to 'adtran-cloud-platform-devices:devices/device=unknown device'"
                }
              }
            }
          },
          "409": {
            "description": "Conflict",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 08 May 2020 11:15:50 GMT"
                    },
                    "example": "Fri, 08 May 2020 11:15:50 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "98"
                    },
                    "example": "98"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/AddLabel-LabelAlreadyExists1"
                },
                "example": {
                  "message": "Cannot overwrite path List(adtran-cloud-platform-labels, labels, label=label_1)"
                }
              }
            }
          },
          "201": {
            "description": "Created",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 08 May 2020 11:13:01 GMT"
                    },
                    "example": "Fri, 08 May 2020 11:13:01 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "0"
                    },
                    "example": "0"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "no-store"
                    },
                    "example": "no-store"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"665f6071-f7d9-4dd5-aecf-c1e7e882941f\""
                    },
                    "example": "\"665f6071-f7d9-4dd5-aecf-c1e7e882941f\""
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {}
          }
        },
        "deprecated": false
      }
    },
    "/data-filter/adtran-cloud-platform-labels:labels/label": {
      "post": {
        "tags": [
          "Labels"
        ],
        "summary": "Data Filter For Label",
        "description": "Search for labels based on objects. Provides the result against given `referenced-objects` values passed.\n\n<br>\nRequest Payload Details -\n\n| Attribute |Description |\n| --- | --- |\n| referenced-objects | **Required:** A list of objects referenced by the label.<br>**name**: The name of the object being referenced.<br>**object-type**: The type of object being referenced. e.g. `device` or `interface` |\n\n<br>\nResponse Data -\n\n| Attribute | Description |\n| --- | --- |\n| label | A list of objects containing each label. Contains lists of labels and referenced-objects:|\n| name | The name of the label. |\n| referenced-objects | A list of objects referenced by the label.<br>**name**: The name of the object being referenced.<br>**object-type**: The type of object being referenced. e.g. `device` or `interface` |",
        "operationId": "DataFilterForLabel",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DataFilterForLabelRequest"
              },
              "example": {
                "referenced-objects": {
                  "name": "device_test1",
                  "object-type": "device"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 08 May 2020 12:23:51 GMT"
                    },
                    "example": "Fri, 08 May 2020 12:23:51 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "12"
                    },
                    "example": "12"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "no-store"
                    },
                    "example": "no-store"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"2e874c7e-d570-4ffb-a7d5-79cae055a0e6\""
                    },
                    "example": "\"2e874c7e-d570-4ffb-a7d5-79cae055a0e6\""
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/DataFilterForLabel-IncorrectDeviceName"
                },
                "example": {
                  "label": []
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-cloud-platform-search:search": {
      "post": {
        "tags": [
          "Labels"
        ],
        "summary": "Search Label",
        "description": "Search a list of labels or search a specific label associated to the objects.\n\n<br>\nRequest Payload Details -\n\n| Attribute | Description |\n| --- | --- |\n| type | **Required:** Specify the type of search to be performed.<br>e.g. `search-global` |\n| cursor | **Required:** Returns cursor with the next value in order to complete a paginated response.<br/><b>Default value: </b><i>0</i> |\n| search-term | **Required:** String or substring of name of the label to be searched for. |\n| object-type | **Required:** Type of object to be retrieved.<br>e.g. `label` |\n| search-field | Filter all data based on the search field.<br>e.g. `name` |\n| result-size | Size of records to be returned in a single query.<br/><b>Possible values: </b><i>0..1000</i><br/><b>Default value: </b><i>25</i> |\n\n\n<br>\nResponse Data Details -\n\n| Attribute | Description |\n| --- | --- |\n| count | Count of matching objects returned. |\n| cursor | Returns cursor with the next value in order to complete a paginated response. |\n| matching-object | A list of objects found which match the supplied term. |\n| name | The name of the label that was found. |\n| label/referenced-objects | The entry or entires found for the label.<br>**name**: The name of the object.<br>**object-type**: The type of the object. e.g. `device` or `interface` |\n| type | Represents the type of search that was performed. |",
        "operationId": "SearchLabel",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SearchLabelRequest"
              },
              "example": {
                "input": {
                  "type": "search-global",
                  "related-objects-term": {
                    "cursor": 0,
                    "result-size": 25,
                    "search-term": "label_1",
                    "object-type": "label",
                    "search-field": "name"
                  }
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 08 May 2020 11:34:20 GMT"
                    },
                    "example": "Fri, 08 May 2020 11:34:20 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "338"
                    },
                    "example": "338"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/SearchLabels-SearchAllLabels"
                },
                "example": {
                  "output": {
                    "related-object-results": {
                      "count": 2,
                      "cursor": 2,
                      "matching-object": [
                        {
                          "name": "label_1",
                          "label": {
                            "referenced-objects": [
                              {
                                "object-type": "device",
                                "name": "device_test1"
                              },
                              {
                                "object-type": "interface",
                                "name": "interface_1"
                              }
                            ],
                            "name": "label_1"
                          }
                        },
                        {
                          "name": "label_2",
                          "label": {
                            "referenced-objects": [],
                            "name": "label_2"
                          }
                        }
                      ]
                    },
                    "type": "search-global"
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-labels:labels/label=label_1": {
      "delete": {
        "tags": [
          "Labels"
        ],
        "summary": "Delete Label",
        "description": "Deletes the label with respect to passed query parameters in request URL. Request type is `DELETE` in this case.\n\n<br>\nRequest Url Query Data Details -\n\n| Attribute | Description |\n| --- | --- |\n| label | **Required** Name of the label to be deleted. |\n| referenced-objects | Comma-separated type and name of the referenced object from where the label is to be deleted. <br>e.g. `interface,interface_1` |",
        "operationId": "DeleteLabel",
        "parameters": [],
        "responses": {
          "404": {
            "description": "Not Found",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 08 May 2020 11:30:49 GMT"
                    },
                    "example": "Fri, 08 May 2020 11:30:49 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "149"
                    },
                    "example": "149"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/DeleteLabel-InterfaceNotExists1"
                },
                "example": {
                  "message": "Could not find path List(adtran-cloud-platform-labels, labels, label=label_1, referenced-objects=interface,unknown_interface)"
                }
              }
            }
          },
          "204": {
            "description": "No Content",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Fri, 08 May 2020 11:26:43 GMT"
                    },
                    "example": "Fri, 08 May 2020 11:26:43 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "0"
                    },
                    "example": "0"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "no-store"
                    },
                    "example": "no-store"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"4fe453a0-a514-45ea-8680-2159fe25ef5a\""
                    },
                    "example": "\"4fe453a0-a514-45ea-8680-2159fe25ef5a\""
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {}
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-cloud-platform-uiworkflow:onboard-device": {
      "post": {
        "tags": [
          "Create Device Using Port Pattern"
        ],
        "summary": "Onboard Device Using Port Pattern",
        "description": "RPC to perform configure and deploy steps of a device by using the new port pattern and its associated interfaces and an optional bundle.\n\n<br>\nRequest Payload Details\n</br>\n\n| Attribute | Description |\n|---|---|\n| rollback-on-failure | Optional: If true, and when device-onboard fails at a certain object, deletes all of its previously created objects.<br/> <b> Default value </b> : <i> true</i> <br/> |\n| device-context | Context information to configure and deploy device. |\n| management-domain-context | The management domain of the device                     |\n| interface-context\t| Context information to configure and deploy interface. |\n| bundle-context | Optional: Context information to configure and deploy the bundle. |\n| device-name      | **Required:** A unique name for the device.                    |\n| model-name       | **Required:** Part name of the device.                                              |\n|interface-name-pattern| **Required:** Unique naming pattern of the interface.The user wishes to assign for personalization in their management system. This leaf holds interface pattern that supports below variables.<br/> \n|bundle-id-pattern| This leaf holds bundle ID pattern that supports below variables.<ul><li>counter</li><li>port</li></ul>These variables, when used, start and end with $. The $port$ can also contain a pattern to enforce length of port number such as $port%2$ will enforce a port number to be two digit by prepending 0 to port if port is single digit. Example if port is 1 $port%2$ will make it 01. Static strings can be part of the pattern if used along with variables. Example Patterns:<ul><li>$counter$/$port%2$</li><li>4321/$port%2$</li><li>bundle-1</li></ul>Some solutions require the bundle IDs to follow a specific format. In such cases, the bundle-id-pattern should be specified accordingly. The only special characters supported in patterns are hyphen (-) and slash (/).|\n| base-configuration | Base configuration associated with the device                                      |\n| part-number | The part number (either ADTRAN or other vendor) of the device.                   |\n| credentials-name    | Name of the credentials resource                                                         |\n| profile-vector-name | Name of the device type profile vector to associate with this device.                    |\n| interface-id-pattern | This leaf holds interface ID pattern that supports below variables. <br/><ul><li>interface-type</li><li>slot(always zero when mentioned in pattern)</li><li>port</li></ul> These variables, when used, start and end with $. The port can additionally contain a pattern to enforce length of port by specifying %n where n stands for port length where n is a a number greater than 0. Static strings can be part of the pattern if used along with variables.Example Patterns:<ul><li>gfast $slot$/$por%2$</li><li>gigabit-ethernet $slot$/$port%2$</li><li>eth $port%2$; </li></ul>Wrong Patterns:<ul><li> gfast</li><li>gfast $slot</li></ul>The only special characters supported in patterns are hyphen (-), slash (/) and space.  |\n| lower-layer-interfaces | List of the lower layer interfaces. e.g. in an EFM group|\n|shelf-range|Select shelf range between from and to.<br/> **from** Start shelf of the range.<br/> **to** End shelf of the range. |\n|slot-range|Select slot range between from and to.<br/> **from** Start slot of the range.<br/> **to** End slot of the range.|\n|port-range|Select port range between from and to.<br/> **from** Start port of the range.<br/> **to** End port of the range.|\n|bundle-name-pattern|This leaf holds bundle name pattern that supports below variables.<ul><li>device-name</li><li>slot</li><li>port</li></ul>These variables, when used, start and end with $. Static strings can be part of the pattern if used along with variables. The port can also hold a pattern such as $port%2$ which enforces the port to become double digit by appending leading 0 if port is single digit.Example Patterns:<ul><li>bundle-$device-name$/$port%2$</li><li>$device-name$-$port%2$</li><li>bundle-$port%2$</li></ul>Wrong Patterns:<ul><li>bundle</li><li>bundle $port</li></ul>The only special characters supported in patterns are hyphen (-), slash (/) and space.|\n|counter-start|Counter value to be used in bundle id pattern field. Its value is implicitly incremented and used by the application to keep the value unique in all bundles created. <br/> In GPON applications, the system ID must be less than or equal to 1048575. If using the counter to represent a GPON system ID, ensure the counter-start value is selected to keep the system ID within this range.|",
        "operationId": "OnboardDeviceUsingPortPattern",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OnboardDeviceUsingPortPatternRequest"
              },
              "example": {
                "input": {
                  "device-context": {
                    "object-parameters": {},
                    "interface-names": [
                      "{{int-for-port-pattern}}"
                    ],
                    "device-name": "device_123",
                    "model-name": "Generic Device",
                    "management-domain-context": {
                      "management-domain-static-ipv4": {
                        "ip-address": "10.27.115.15",
                        "mask": "255.255.255.0",
                        "gateway": "10.27.115.10"
                      }
                    },
                    "base-configuration": ""
                  },
                  "interface-context": {
                    "lower-layer-interfaces": [],
                    "interface-id-pattern": "gpon 0/$port%2$",
                    "interface-name-pattern": "{{int-for-port-pattern}}-$port%2$",
                    "interface-type": "generic",
                    "port-range": {
                      "from": 1,
                      "to": 1
                    }
                  },
                  "bundle-context": {
                    "counter-start": 1,
                    "bundle-id-pattern": "10$port$/1",
                    "bundle-name-pattern": "bundle_1$port$",
                    "bundle-type": "",
                    "profile-vector-name": ""
                  }
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "",
            "headers": {}
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-uiworkflow:transitions/transition={trans-id}": {
      "get": {
        "tags": [
          "Check Transitions"
        ],
        "summary": "Check Transitions",
        "description": "Information on uiworkflow transitions.\n\n**Response Details**\n\n| Attribute | Description |\n|---|---|\n| trans-id | The unique ID associated with this object state transition. |\n| timestamp \t| Formatted date/time string that this state transition was started. <br/> <b>Date Time Format : </b><i>yyyy MM dd'T'HH:mm:ssZZZZZ eg.2020-05-05T11:15:43.860000 </i> |\n| status | The current state transition of the object. <br/> <b>Possible Values:</b> <i>configuring, deploying, activating, deactivating, undeploying, deleting</i>   |\n| completion-status | The overall status of the state transition.  <br/> <b>Possible Values:</b> <i>in-progress, completed-ok, failure</i>|\n| success-message | The success message for an onboard-device operation |\n| failure-message | The failure message for an onboard-device operation |\n| rollback-success-message | The success message for an onboard-device rollback operation |\n| rollback-failure-message | The failure message for an onboard-device rollback operation |",
        "operationId": "CheckTransitions",
        "parameters": [
          {
            "name": "trans-id",
            "in": "path",
            "description": "",
            "required": true,
            "style": "simple",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 May 2020 11:16:17 GMT"
                    },
                    "example": "Tue, 05 May 2020 11:16:17 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "175"
                    },
                    "example": "175"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/CheckTransitions-Success"
                },
                "example": {
                  "device-name": "device_1",
                  "timestamp": "2020-05-05T11:15:43.860000",
                  "status": "configuring",
                  "trans-id": "4040da10-9c3c-492a-9bbe-8cfa4d4d81f4",
                  "completion-status": "completed-ok"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 05 May 2020 11:17:16 GMT"
                    },
                    "example": "Tue, 05 May 2020 11:17:16 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "164"
                    },
                    "example": "164"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/CheckTransitions-IncorrectTransitionId1"
                },
                "example": {
                  "errors": {
                    "error-type": "transaction",
                    "error-tag": "Transaction Not Found",
                    "error-message": "Result for transaction-id=4040da10-9c3c-492a-9bbe-cfa4d4d81f41 missing"
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-uiworkflow-profiles:profiles/vectors/vector=profile-vector-1": {
      "get": {
        "tags": [
          "Deprecated"
        ],
        "summary": "Get a Profile Vector",
        "description": "Get the Details of specific Profile Vector in MCP whose name is 'profile-vector-1'. Returns the data for a requested profile vector as described below.\n\n\n**Response Details**\n\n| Attribute        | Description                                                                                                                                             |\n|------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|\n| profile-vector-name   |Unique name of the profile vector.|\n| profile        |Contains profiles and their types. <b>name</b>: Name that uniquely identifies the profile. <b>type</b>: Type of the profile.    <i>Possible Values: generic</i>|                                    |\n| state | State of the profile vector. <i>Possible Values: configured, deployed, activated</i> |\n|type      | Profile vector type. <i>Possible Values: device, interface, service, content-provider, bundle</i>.                                       |",
        "operationId": "GetaProfileVector",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 07 May 2020 04:22:25 GMT"
                    },
                    "example": "Thu, 07 May 2020 04:22:25 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "201"
                    },
                    "example": "201"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetProfileVector-Success"
                },
                "example": {
                  "vector": [
                    {
                      "profile-vector-name": "profile-vector-1",
                      "type": "interface",
                      "profile": [
                        {
                          "name": "gold-profile",
                          "type": "generic-profile"
                        },
                        {
                          "name": "profile-1",
                          "type": "generic-profile"
                        }
                      ],
                      "state": "activated"
                    }
                  ]
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 07 May 2020 04:24:32 GMT"
                    },
                    "example": "Thu, 07 May 2020 04:24:32 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "94"
                    },
                    "example": "94"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetProfileVector-IncorrectProfilevector1"
                },
                "example": {
                  "errors": {
                    "error-type": "application",
                    "error-message": "'Incorrect profile vector' not found"
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-uiworkflow-profiles:profiles/vectors": {
      "get": {
        "tags": [
          "Deprecated"
        ],
        "summary": "Get All the Profile Vectors",
        "description": "Get the Details of All Profile Vector in MCP. Returns the data for a requested profile vector as described below.\n\n<br>\nRequest Payload Details\n</br>\n\n| Attribute        | Description                                                                                                                                             |\n|------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|\n| type   | Profile vector type. <i>Possible Values: device, interface, service, content-provider, bundle</i>.|\n\n<br>\nResponse Details\n</br>\n\n| Attribute        | Description                                                                                                                                             |\n|------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|\n| profile-vector-name   |Unique name of the profile vector.|\n| profile        |Contains profiles and their types. <b>name</b>: Name that uniquely identifies the profile. <b>type</b>: Type of the profile.    <i>Possible Values: generic</i>|                                    |\n| state | State of the profile vector. <i>Possible Values: configured, deployed, activated</i> |\n|type      |Profile vector type. <i>Possible Values: device, interface, service, content-provider, bundle</i>.                                       |",
        "operationId": "GetAlltheProfileVectors",
        "parameters": [],
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Thu, 07 May 2020 04:28:58 GMT"
                    },
                    "example": "Thu, 07 May 2020 04:28:58 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "531"
                    },
                    "example": "531"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/GetAllProfileVectors-Specifictype"
                },
                "example": {
                  "vector": [
                    {
                      "profile-vector-name": "ONU Eth UNI Profile Vector",
                      "type": "interface",
                      "profile": [
                        {
                          "name": "ONU Ethernet UNI Profile",
                          "type": "ethernet-interface-type"
                        }
                      ],
                      "state": "activated"
                    },
                    {
                      "profile-vector-name": "XPON Profile Vector",
                      "type": "interface",
                      "profile": [
                        {
                          "name": "PON Port with FEC",
                          "type": "pon-port-profile-type"
                        }
                      ],
                      "state": "activated"
                    },
                    {
                      "profile-vector-name": "profile-vector-1",
                      "type": "interface",
                      "profile": [
                        {
                          "name": "gold-profile",
                          "type": "generic-profile"
                        },
                        {
                          "name": "profile-1",
                          "type": "generic-profile"
                        }
                      ],
                      "state": "activated"
                    }
                  ]
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-cloud-platform-mcp-inventory-status:get-inventory-tree": {
      "post": {
        "tags": [
          "Get Inventory Tree"
        ],
        "summary": "Get Inventory Tree",
        "operationId": "GetInventoryTree",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GetInventoryTreeRequest"
              },
              "example": {
                "input": {
                  "cursor": 0,
                  "result-size": 25,
                  "order-by": "desc"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetInventoryTree-ForRootedDevice"
                },
                "example": {
                  "output": {
                    "object-list": [
                      {
                        "name": "OLT-1",
                        "type": "device",
                        "is-expandable": false,
                        "slot-number": ""
                      },
                      {
                        "name": "TestDevice",
                        "type": "device",
                        "is-expandable": false,
                        "slot-number": ""
                      },
                      {
                        "name": "TestDevice-2",
                        "type": "device",
                        "is-expandable": false,
                        "slot-number": ""
                      },
                      {
                        "name": "TestDevice-3",
                        "type": "device",
                        "is-expandable": false,
                        "slot-number": ""
                      }
                    ],
                    "total-count": 4
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetInventoryTree-WithResult-SizeandMissingCursor1"
                },
                "example": {
                  "message": "Missing cursor parameter, both cursor and result-size parameter are required"
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-cloud-platform-mcp-inventory-status:get-inventory-status": {
      "post": {
        "tags": [
          "Get Inventory Status"
        ],
        "summary": "Get Inventory Status",
        "operationId": "GetInventoryStatus",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GetInventoryStatusRequest"
              },
              "example": {
                "input": {
                  "object-list": [
                    {
                      "name": "OLT-1",
                      "type": "device"
                    },
                    {
                      "name": "OLT-2",
                      "type": "device"
                    }
                  ]
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetInventoryStatus-Success"
                },
                "example": {
                  "output": {
                    "transaction-id": "fcda19db-6224-4612-9e59-65442e638b49",
                    "timestamp": "2021-12-03T13:43:19.120024",
                    "completion-status": "in-progress"
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetInventoryStatus-MissingObjectList1"
                },
                "example": {
                  "message": "MCP objects list is missing"
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-cloud-platform-mcp-inventory-status:get-inventory-status-result": {
      "post": {
        "tags": [
          "Get Inventory Status Result"
        ],
        "summary": "Get Inventory Status Result",
        "operationId": "GetInventoryStatusResult",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GetInventoryStatusResultRequest"
              },
              "example": {
                "input": {
                  "transaction-id": "{{trans-id}}"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetInventoryStatusResult-Success"
                },
                "example": {
                  "output": {
                    "transaction-id": "fcda19db-6224-4612-9e59-65442e638b49",
                    "timestamp": "2021-12-03T13:43:19.120024",
                    "completion-status": "completed-ok",
                    "object-list": [
                      {
                        "object-state": "unknown",
                        "name": "OLT-1",
                        "type": "device",
                        "slot-number": ""
                      },
                      {
                        "name": "OLT-2",
                        "admin-status": "up",
                        "type": "device",
                        "slot-number": ""
                      }
                    ]
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetInventoryStatusResult-MissingTransaction-id1"
                },
                "example": {
                  "message": "'transaction-id' is missing"
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-profiles:profiles/vectors/vector=Device%20Profile%20Vector%20GPON%20OLT": {
      "post": {
        "tags": [
          "Create Device Profile Vector For Onboarding"
        ],
        "summary": "Create Device Profile Vector For Onboarding",
        "operationId": "CreateDeviceProfileVectorForOnboarding",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateDeviceProfileVectorForOnboardingRequest"
              },
              "example": {
                "name": "Device Profile Vector GPON OLT",
                "profile": [],
                "state": "activated",
                "type": "device"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "description": "Created",
            "headers": {},
            "content": {}
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-profiles:profiles/vectors/vector=Gigabit%20Interface%20Profile%20Vector": {
      "post": {
        "tags": [
          "Create Interface Profile Vector For Onboarding"
        ],
        "summary": "Create Interface Profile Vector For Onboarding",
        "operationId": "CreateInterfaceProfileVectorForOnboarding",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateInterfaceProfileVectorForOnboardingRequest"
              },
              "example": {
                "name": "Gigabit Interface Profile Vector",
                "profile": [
                  {
                    "name": "P1",
                    "type": "aes-encryption-profile-type"
                  }
                ],
                "state": "activated",
                "type": "interface"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "description": "Created",
            "headers": {},
            "content": {}
          }
        },
        "deprecated": false
      }
    },
    "/data/adtran-cloud-platform-profiles:profiles/vectors/vector=Bundle%20Profile%20Vector": {
      "post": {
        "tags": [
          "Create Bundle Profile Vector For Onboarding"
        ],
        "summary": "Create Bundle Profile Vector For Onboarding",
        "operationId": "CreateBundleProfileVectorForOnboarding",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateBundleProfileVectorForOnboardingRequest"
              },
              "example": {
                "name": "Bundle Profile Vector",
                "profile": [],
                "state": "activated",
                "type": "bundle"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "description": "Created",
            "headers": {},
            "content": {}
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-cloud-platform-device-onboarding:get-onboarding-template-interfaces": {
      "post": {
        "tags": [
          "Component API"
        ],
        "summary": "Component API",
        "operationId": "ComponentAPI",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ComponentAPIRequest"
              },
              "example": {
                "input": {
                  "device-name": "OLT",
                  "model-name": "Generic Device"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ComponentAPI-BothDevicenameandmodelnamepresent"
                },
                "example": {
                  "output": {
                    "device-template": {
                      "device-model-name": "Generic Device",
                      "device-profile-vector": "Device Profile Vector GPON OLT",
                      "default-credential-name": "OLT",
                      "interface-to-connect-to": {
                        "interface-name": "rooted-interface",
                        "device-name": "rooted-device",
                        "interface-type": "generic"
                      }
                    },
                    "onboarding-template-interfaces": [
                      {
                        "profile-overrides": [
                          {
                            "profile-type": "aes-encryption-profile-type",
                            "profile-name": "AES Override Profile"
                          }
                        ],
                        "optional-parameters": {
                          "access-node-id": 101,
                          "ancp-own-ip": 90
                        },
                        "interface-type": "gpon",
                        "interface-name": "OLT/0/1",
                        "bundle-name": "OLT-gpon-0",
                        "interface-id": "gigabit-ethernet 0/1",
                        "profile-vector-name": "Gigabit Interface Profile Vector"
                      },
                      {
                        "profile-overrides": [
                          {
                            "profile-type": "aes-encryption-profile-type",
                            "profile-name": "AES Override Profile"
                          }
                        ],
                        "optional-parameters": {
                          "access-node-id": 101,
                          "ancp-own-ip": 90
                        },
                        "interface-type": "gpon",
                        "interface-name": "OLT/0/2",
                        "bundle-name": "OLT-gpon-1",
                        "interface-id": "gigabit-ethernet 0/2",
                        "profile-vector-name": "Gigabit Interface Profile Vector"
                      }
                    ]
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ComponentAPI-Devicenotpresent1"
                },
                "example": {
                  "message": "Invalid Payload: Device Name is required"
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-cloud-platform-device-onboarding:onboard-device-by-template": {
      "post": {
        "tags": [
          "Onboarding API"
        ],
        "summary": "Onboarding API",
        "operationId": "OnboardingAPI",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OnboardingAPIRequest"
              },
              "example": {
                "input": {
                  "model-name": "Generic Device",
                  "device-name": "Test-Device-1",
                  "ip-address": "10.20.30.40",
                  "credential-name": "Device Credential",
                  "mask": "255.0.0.0",
                  "gateway": "10.20.30.40"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "400": {
            "description": "Bad Request",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OnboardingAPI-Oneormoremandatoryparametersarekeptempty1"
                },
                "example": {
                  "message": "Invalid Payload: Device Name, Model Name or IP cannot be empty"
                }
              }
            }
          },
          "200": {
            "description": "OK",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OnboardingAPI-withdefaultinterfaceanddefaultcredentials"
                },
                "example": {
                  "output": {
                    "state": "creating",
                    "completion-status": "in-progress",
                    "transaction-id": "5c6ddea1-ba53-4095-ad2b-99602c92a6ac",
                    "error-description": "",
                    "object-onboarding-detail": [
                      {
                        "object-name": "Test-Device-1",
                        "state": "creating",
                        "completion-status": "completed-ok",
                        "error-description": "",
                        "object-type": "device"
                      },
                      {
                        "object-name": "Test-Device-1/0/1",
                        "state": "creating",
                        "completion-status": "in-progress",
                        "error-description": "",
                        "object-type": "interface"
                      },
                      {
                        "object-name": "Test-Device-1/0/2",
                        "state": "creating",
                        "completion-status": "in-progress",
                        "error-description": "",
                        "object-type": "interface"
                      },
                      {
                        "object-name": "Test-Device-1-gpon-0",
                        "state": "creating",
                        "completion-status": "completed-ok",
                        "error-description": "",
                        "object-type": "bundle"
                      },
                      {
                        "object-name": "Test-Device-1-gpon-1",
                        "state": "creating",
                        "completion-status": "completed-ok",
                        "error-description": "",
                        "object-type": "bundle"
                      }
                    ]
                  }
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OnboardingAPI-uplinkinterfacenotpresent1"
                },
                "example": {
                  "message": "Interface-2 does not exist"
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/operations/adtran-cloud-platform-device-onboarding:get-onboarding-status": {
      "post": {
        "tags": [
          "Status API"
        ],
        "summary": "Status API",
        "operationId": "StatusAPI",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/StatusAPIRequest"
              },
              "example": {
                "input": {
                  "transaction-id": "{{trans-id}}"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "404": {
            "description": "Not Found",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/StatusAPI-OveralltransactionIDnotfound1"
                },
                "example": {
                  "message": "Result for overall trans-id 5c6ddea1-ba53-4095-ad2b-99602c92a6ad not found "
                }
              }
            }
          },
          "200": {
            "description": "OK",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/StatusAPI-ObjectscorrespondingtotheoverallIDarepresent"
                },
                "example": {
                  "output": {
                    "state": "creating",
                    "completion-status": "completed-ok",
                    "transaction-id": "5c6ddea1-ba53-4095-ad2b-99602c92a6ac",
                    "error-description": "",
                    "object-onboarding-detail": [
                      {
                        "object-name": "Test-Device-1",
                        "state": "creating",
                        "completion-status": "completed-ok",
                        "error-description": "",
                        "object-type": "device"
                      },
                      {
                        "object-name": "Test-Device-1/0/1",
                        "state": "creating",
                        "completion-status": "completed-ok",
                        "error-description": "",
                        "object-type": "interface"
                      },
                      {
                        "object-name": "Test-Device-1/0/2",
                        "state": "creating",
                        "completion-status": "completed-ok",
                        "error-description": "",
                        "object-type": "interface"
                      },
                      {
                        "object-name": "Test-Device-1-gpon-0",
                        "state": "creating",
                        "completion-status": "completed-ok",
                        "error-description": "",
                        "object-type": "bundle"
                      },
                      {
                        "object-name": "Test-Device-1-gpon-1",
                        "state": "creating",
                        "completion-status": "completed-ok",
                        "error-description": "",
                        "object-type": "bundle"
                      }
                    ]
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data-filter/adtran-cloud-platform-bundles:bundles/bundle": {
      "post": {
        "tags": [
          "Data Filter"
        ],
        "summary": "Data Filter By Payload - Bundle",
        "description": "Provides the result of generic query filtering by matching a subset of the list elements given in a POST /restconf/data-filter/... body request.\n\n<br>\nRequest Data Details -\n\n<br>\nA JSON object is required in request payload containing selected attributes and its value of the bundle. Creating request payload of mismatch attributes will result an empty list in response.\n\n<br>\n\n| Attribute | Description |\n|---|---|\n| bundle-name | A unique name of the bundle. |\n| bundle-type | Type of the bundle. |\n\n\n<br>\n<br>\nResponse Data - \n<br>\nList of bundle objects returned with its details on the basis of filtered request payload.\n\n<br>\n\n| Attribute | Description |\n|---|---|\n| bundle-name | A unique name of the bundle. |\n| state | The state of the bundle. <br/> <b> Possible values: </b><i> configured, deployed or activated</i> |\n| bundle-type | Type of the bundle. |\n| bundle-id | ID of bundle. Format of ID string depends on type of bundle. |\n| profile-vector-name | The profile vector of the bundle. |\n\n\n<br>\n\nNOTE : One or more bundle attributes can be added to create a request payload. The attributes are `bundle-name`, `state`, `bundle-id`, `bundle-type`, `profile-vector-name`. \n\n<br>\nDifferent combination of request payload can be made by using these attributes and get a list of the details for each bundle in response as a result.",
        "operationId": "DataFilterByPayload-Bundle",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DataFilterByPayload-BundleRequest"
              },
              "example": {
                "bundle-name": "{{interfaces-bundle-name}}",
                "bundle-type": "Generic Bundle"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Sat, 09 May 2020 11:25:04 GMT"
                    },
                    "example": "Sat, 09 May 2020 11:25:04 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "146"
                    },
                    "example": "146"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "no-store"
                    },
                    "example": "no-store"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"662d605d-0804-4ea3-ab5a-d3d14bac1e88\""
                    },
                    "example": "\"662d605d-0804-4ea3-ab5a-d3d14bac1e88\""
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/DataFilterByPayload-Bundle-GetFilteredData"
                },
                "example": {
                  "bundle": [
                    {
                      "state": "deployed",
                      "bundle-name": "ChannelPartition",
                      "bundle-id": "4391/1",
                      "profile-vector-name": "",
                      "bundle-type": "channel-partition"
                    }
                  ]
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data-filter/adtran-cloud-platform-uiworkflow-interfaces:interfaces/interface": {
      "post": {
        "tags": [
          "Data Filter"
        ],
        "summary": "Data Filter By Payload - Interface",
        "description": "Provides the result of generic query filtering by matching a subset of the list elements given in a POST /restconf/data-filter/... body request.\n\n<br>\nRequest Data Details -\n\n<br>\nA JSON object is required in request payload containing selected attributes and its value of the interface. Creating request payload of mismatch attributes will result an empty list in response.\n\n<br>\n\n| Attribute | Description |\n|---|---|\n| interface-name | A unique name for the interface. |\n| state | The indicated state of the interface. <br/> <b> Possible values: </b><i> configured, deployed or activated</i> |\n\n\n<br>\n<br>\nResponse Data - \n<br>\nList of interface objects returned with its details on the basis of filtered request payload.\n\n<br>\n\n| Attribute | Description |\n|---|---|\n| interface-name | A unique name of the interface. |\n| state | The indicated state of the interface. <br/> <b> Possible values: </b><i> configured, deployed or activated</i> |\n| interface-type | A string specifying the interface type. |\n| interface-id | A string that identifies the interface. |\n| device-name | Identifies the device associated with this interface. |\n| bundle-name | The bundle that is associated with this interface. |\n| subtended-device-name | Identifies the subtended host (e.g. TID) of this interface. |\n| lower-layer-interfaces | List of the lower layer interfaces (e.g. in an EFM group). |\n| profile-vector-name | Identifier of profile vector associated with this interface. |\n| number-of-lower-layer-interfaces | The number of interfaces layered configured for this interface. |\n\n\n<br>\n\nNOTE : One or more interface attributes can be added to create a request payload. The attributes are `interface-name`, `state`, `interface-type`, `interface-id`, `device-name`, `bundle-name`, `subtented-device-name`, `lower-layer-interfaces`, `profile-vector-name`, `number-of-lower-layer-interfaces`. \n\n<br>\nDifferent combination of request payload can be made by using these attributes and get a list of the details for each interface in response as a result.",
        "operationId": "DataFilterByPayload-Interface",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DataFilterByPayload-InterfaceRequest"
              },
              "example": {
                "interface-name": "{{devices-int-name}}",
                "state": "activated"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Sat, 09 May 2020 11:22:39 GMT"
                    },
                    "example": "Sat, 09 May 2020 11:22:39 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "355"
                    },
                    "example": "355"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/DataFilterByPayload-Interface-GetFilteredDatum"
                  },
                  "description": "",
                  "example": [
                    {
                      "device-name": "rooted-device",
                      "interface-type": "hundred-gigabit-ethernet",
                      "state": "activated",
                      "interface-name": "interface_1",
                      "bundle-name": "ChannelPartition",
                      "interface-id": "123",
                      "subtended-device-name": "",
                      "lower-layer-interfaces": [
                        "hundred-gigabit-ethernet 0/1"
                      ],
                      "profile-vector-name": "ONU Eth UNI Profile Vector",
                      "number-of-lower-layer-interfaces": 0
                    }
                  ]
                },
                "example": [
                  {
                    "device-name": "rooted-device",
                    "interface-type": "hundred-gigabit-ethernet",
                    "state": "activated",
                    "interface-name": "interface_1",
                    "bundle-name": "ChannelPartition",
                    "interface-id": "123",
                    "subtended-device-name": "",
                    "lower-layer-interfaces": [
                      "hundred-gigabit-ethernet 0/1"
                    ],
                    "profile-vector-name": "ONU Eth UNI Profile Vector",
                    "number-of-lower-layer-interfaces": 0
                  }
                ]
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data-filter/adtran-cloud-platform-devices:devices/device": {
      "post": {
        "tags": [
          "Data Filter"
        ],
        "summary": "Data Filter By Payload - Device",
        "description": "Provides the result of generic query filtering by matching a subset of the list elements given in a POST /restconf/data-filter/... body request.\n\n<br>\nRequest Data Details -\n\n<br>\nA JSON object is required in request payload containing selected attributes and its value of the device. Creating request payload of mismatch attributes will result an empty list in response.\n\n<br>\n\n| Attribute | Description |\n|---|---|\n| device-name | A unique name of the device. |\n| state | The indicated state of the device. <br/> <b> Possible values: </b><i> configured, deployed or activated</i> |\n| model-name | Model name of the device. |\n\n\n<br>\n<br>\nResponse Data - \n<br>\nList of device objects returned with its details on the basis of filtered request payload.\n\n<br>\n\n| Attribute | Description |\n|---|---|\n| device-name | A unique name of the device. |\n| state | The indicated state of the device. <br/> <b> Possible values: </b><i> configured, deployed or activated</i> |\n| model-name | Model name of the device. |\n| management-domain | The management domain of the device. |\n| base-configuration | The base configuration of the device. |\n| part-number | The part number (either ADTRAN or other vendor) of the device. |\n| profile-vector-name | The profile vector of the device. |\n| credentials-name | Name of credentials resource. |\n\n\n<br>\n\nNOTE : One or more device attributes can be added to create a request payload. The attributes are `device-name`, `state`, `model-name`, `management-domain`, `base-configuration`, `part-number`, `profile-vector-name`, `credentials-name`. \n\n<br>\nDifferent combination of request payload can be made by using these attributes and get a list of the details for each device in response as a result.",
        "operationId": "DataFilterByPayload-Device",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DataFilterByPayload-DeviceRequest"
              },
              "example": {
                "device-name": "device_test1",
                "state": "configured",
                "model-name": "Generic Device"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Sat, 09 May 2020 11:19:20 GMT"
                    },
                    "example": "Sat, 09 May 2020 11:19:20 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "267"
                    },
                    "example": "267"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "no-store"
                    },
                    "example": "no-store"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"48433e6d-c12c-4079-a127-0eaefc3934f2\""
                    },
                    "example": "\"48433e6d-c12c-4079-a127-0eaefc3934f2\""
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/yang.data+json+firefly; charset=UTF-8": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/DataFilterByPayload-Device-GetFilteredDatum"
                  },
                  "description": "",
                  "example": [
                    {
                      "device-name": "device_test1",
                      "state": "configured",
                      "management-domain": "static-ipv4-device_test1",
                      "base-configuration": "",
                      "part-number": "11971320F1",
                      "profile-vector-name": "OLT Config Vector",
                      "model-name": "SDX 6310 16-port 10G OLT",
                      "credentials-name": "pmaa-default"
                    }
                  ]
                },
                "example": [
                  {
                    "device-name": "device_test1",
                    "state": "configured",
                    "management-domain": "static-ipv4-device_test1",
                    "base-configuration": "",
                    "part-number": "11971320F1",
                    "profile-vector-name": "OLT Config Vector",
                    "model-name": "SDX 6310 16-port 10G OLT",
                    "credentials-name": "pmaa-default"
                  }
                ]
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data-filter/adtran-cloud-platform-interfaces:interfaces/interface": {
      "post": {
        "tags": [
          "Data Filter"
        ],
        "summary": "Data Filter - contains operator",
        "description": "The contains operator (**#contains**) returns results which meet the following criteria:\n\n1. The named field is contained in the result.\n2. The named field refers to a list of values.\n3. The provided literal is contained within the list of values.",
        "operationId": "DataFilter-containsoperator",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DataFilter-containsoperatorRequest"
              },
              "example": {
                "metadata": {
                  "device-scoped-interface-name#contains": "channel-termination 0/2"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 12 May 2020 20:19:30 GMT"
                    },
                    "example": "Tue, 12 May 2020 20:19:30 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "811"
                    },
                    "example": "811"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "no-store"
                    },
                    "example": "no-store"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"c7a0e9d4-3994-4058-b06f-2522f0e3dbc1\""
                    },
                    "example": "\"c7a0e9d4-3994-4058-b06f-2522f0e3dbc1\""
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/yang.data+json+firefly; charset=UTF-8": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/DataFilter-containsoperator"
                  },
                  "description": "",
                  "example": [
                    {
                      "subtended-device-names": [
                        "ONU-0"
                      ],
                      "device-name": "OLT-1",
                      "interface-type": "gpon",
                      "state": "activated",
                      "interface-name": "XPON2-OLT-1",
                      "bundle-name": "CP-4391-1",
                      "interface-id": "gpon 0/2",
                      "lower-layer-interfaces": [
                        "channel 15"
                      ],
                      "metadata": {
                        "device-scoped-interface-name": [
                          "channel-pair 4391.1.15",
                          "channel-termination 0/2"
                        ]
                      },
                      "profile-vector-name": "XPON Profile Vector",
                      "number-of-lower-layer-interfaces": 1
                    },
                    {
                      "subtended-device-names": [
                        "ONU-0"
                      ],
                      "device-name": "OLT-11",
                      "interface-type": "gpon",
                      "state": "activated",
                      "interface-name": "XPON2-OLT-11",
                      "bundle-name": "CP-4391-2",
                      "interface-id": "gpon 0/2",
                      "lower-layer-interfaces": [
                        "channel 15"
                      ],
                      "metadata": {
                        "device-scoped-interface-name": [
                          "channel-pair 4391.2.15",
                          "channel-termination 0/2"
                        ]
                      },
                      "profile-vector-name": "XPON Profile Vector",
                      "number-of-lower-layer-interfaces": 1
                    }
                  ]
                },
                "example": [
                  {
                    "subtended-device-names": [
                      "ONU-0"
                    ],
                    "device-name": "OLT-1",
                    "interface-type": "gpon",
                    "state": "activated",
                    "interface-name": "XPON2-OLT-1",
                    "bundle-name": "CP-4391-1",
                    "interface-id": "gpon 0/2",
                    "lower-layer-interfaces": [
                      "channel 15"
                    ],
                    "metadata": {
                      "device-scoped-interface-name": [
                        "channel-pair 4391.1.15",
                        "channel-termination 0/2"
                      ]
                    },
                    "profile-vector-name": "XPON Profile Vector",
                    "number-of-lower-layer-interfaces": 1
                  },
                  {
                    "subtended-device-names": [
                      "ONU-0"
                    ],
                    "device-name": "OLT-11",
                    "interface-type": "gpon",
                    "state": "activated",
                    "interface-name": "XPON2-OLT-11",
                    "bundle-name": "CP-4391-2",
                    "interface-id": "gpon 0/2",
                    "lower-layer-interfaces": [
                      "channel 15"
                    ],
                    "metadata": {
                      "device-scoped-interface-name": [
                        "channel-pair 4391.2.15",
                        "channel-termination 0/2"
                      ]
                    },
                    "profile-vector-name": "XPON Profile Vector",
                    "number-of-lower-layer-interfaces": 1
                  }
                ]
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data-filter/adtran-cloud-platform-profiles:profiles/vectors": {
      "post": {
        "tags": [
          "Data Filter"
        ],
        "summary": "Data Filter - like operator",
        "description": "The like operator (**#like**) performs fuzzy matching of results by accumulating the values of all leaves within a subtree and providing a normalized score (between 0.0 and 1.0) describing the similarity of that subtree to a keyword. A threshold is also provided to allow removal of entries whose resulting score is below the supplied threshold. Sort uses the following parameters:\n\n- **keyword** - The input keyword which will be matched against list entries to find a likeness match.\n- **threshold** - Sets a score threshold for valid results. Scores above this threshold will be returned, all others will be removed from the result.\n- **target** - Sets the name used in the response JSON in which match score will be provided.\n- **field** - (optional) When provided selects the JSON field that will be used for matching (rather than a whole JSON document).\n\n*Note*: This is by far the **most expensive operator** available in data-filter. Always be sure to test your queries against a realistic data set and try to tune them for optimal performance. For performance reasons it is recommended that the following limits are observed:\n\n1. A threshold greater than 0.1 should be selected.\n2. A field should be selected which matches the exact information you are interested in matching.",
        "operationId": "DataFilter-likeoperator",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DataFilter-likeoperatorRequest"
              },
              "example": {
                "vector#like": {
                  "keyword": "bundle",
                  "threshold": 0.1,
                  "target": "score",
                  "field": "name"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 12 May 2020 20:45:23 GMT"
                    },
                    "example": "Tue, 12 May 2020 20:45:23 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "934"
                    },
                    "example": "934"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "no-store"
                    },
                    "example": "no-store"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"1741b920-3145-403f-998d-678ac150f513\""
                    },
                    "example": "\"1741b920-3145-403f-998d-678ac150f513\""
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/json; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/DataFilter-likeoperator"
                },
                "example": {
                  "vectors": {
                    "vector": [
                      {
                        "name": "SDX Service1 100M PPPoE",
                        "state": "activated",
                        "score": 0.30124223602484473,
                        "profile": [
                          {
                            "name": "SDX Service1 Group PPPoE",
                            "type": "grouping-profile-type"
                          }
                        ],
                        "type": "service"
                      },
                      {
                        "name": "SDX Service2 100M PPPoE",
                        "state": "activated",
                        "score": 0.30124223602484473,
                        "profile": [
                          {
                            "name": "SDX Service2 Group PPPoE",
                            "type": "grouping-profile-type"
                          }
                        ],
                        "type": "service"
                      },
                      {
                        "name": "SDX Service2 100M PPPoE and ANCP",
                        "state": "activated",
                        "score": 0.9598214285714286,
                        "profile": [
                          {
                            "name": "SDX Service2 Group PPPoE and ANCP",
                            "type": "grouping-profile-type"
                          }
                        ],
                        "type": "service"
                      },
                      {
                        "name": "SDX Service3 500M PPPoE",
                        "state": "activated",
                        "score": 0.30124223602484473,
                        "profile": [
                          {
                            "name": "SDX Service3 Group PPPoE",
                            "type": "grouping-profile-type"
                          }
                        ],
                        "type": "service"
                      },
                      {
                        "name": "SDX Service4 1G PPPoE",
                        "state": "activated",
                        "score": 0.30272108843537415,
                        "profile": [
                          {
                            "name": "SDX Service4 Group PPPoE",
                            "type": "grouping-profile-type"
                          }
                        ],
                        "type": "service"
                      }
                    ]
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data-filter/adtran-cloud-platform-interfaces:interfaces": {
      "post": {
        "tags": [
          "Data Filter"
        ],
        "summary": "Data Filter - join operator",
        "description": "The join operator modifies results by inserting data referenced by a record but contained in another part of the model. This is similar in nature to foreign key joins in SQL databases.",
        "operationId": "DataFilter-joinoperator",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DataFilter-joinoperatorRequest"
              },
              "example": {
                "interface": {
                  "device#join": {
                    "path": "adtran-cloud-platform-devices:devices/device",
                    "keys": "device-name"
                  },
                  "interface-name": "gen-interface-gen-device-00000-uplink"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Tue, 12 May 2020 20:54:22 GMT"
                    },
                    "example": "Tue, 12 May 2020 20:54:22 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "2970"
                    },
                    "example": "2970"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "no-store"
                    },
                    "example": "no-store"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"c7a0e9d4-3994-4058-b06f-2522f0e3dbc1\""
                    },
                    "example": "\"c7a0e9d4-3994-4058-b06f-2522f0e3dbc1\""
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/yang.data+json+firefly; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/Getallinterfaceswithparentdevicedata"
                },
                "example": {
                  "interface": [
                    {
                      "device-name": "ONU-0",
                      "interface-type": "virtual-ethernet",
                      "state": "activated",
                      "interface-name": "ONU-0-to-Subscriber",
                      "interface-id": "virtual-ethernet 0/1",
                      "subtended-device-name": "",
                      "lower-layer-interfaces": [],
                      "metadata": {
                        "device-scoped-interface-name": [
                          "onu-subscr-if-4391.1.0.0.eth.1.phy"
                        ]
                      },
                      "profile-vector-name": "",
                      "number-of-lower-layer-interfaces": 1,
                      "device": {
                        "device-name": "ONU-0",
                        "state": "activated",
                        "management-domain": "",
                        "base-configuration": "",
                        "object-parameters": {
                          "serial-number": "ADTN18070FB9",
                          "onu-id": "0"
                        },
                        "part-number": "1287833F1",
                        "metadata": {
                          "event-config": {
                            "event": []
                          },
                          "inventory": {}
                        },
                        "profile-vector-name": "",
                        "model-name": "SDX 611 GPON ONU"
                      }
                    },
                    {
                      "device-name": "rooted-device",
                      "interface-type": "generic",
                      "state": "activated",
                      "interface-name": "Root-to-OLT-1",
                      "interface-id": "Lag-1",
                      "subtended-device-name": "OLT-1",
                      "lower-layer-interfaces": [],
                      "profile-vector-name": "",
                      "number-of-lower-layer-interfaces": 0,
                      "device": {
                        "device-name": "rooted-device",
                        "state": "activated",
                        "management-domain": "",
                        "base-configuration": "",
                        "part-number": "GENERIC",
                        "model-name": "Generic Device"
                      }
                    },
                    {
                      "device-name": "rooted-device",
                      "interface-type": "generic",
                      "state": "activated",
                      "interface-name": "Root-to-OLT-11",
                      "interface-id": "Lag-11",
                      "subtended-device-name": "OLT-11",
                      "lower-layer-interfaces": [],
                      "profile-vector-name": "",
                      "number-of-lower-layer-interfaces": 0,
                      "device": {
                        "device-name": "rooted-device",
                        "state": "activated",
                        "management-domain": "",
                        "base-configuration": "",
                        "part-number": "GENERIC",
                        "model-name": "Generic Device"
                      }
                    },
                    {
                      "subtended-device-names": [
                        "ONU-0"
                      ],
                      "device-name": "OLT-1",
                      "interface-type": "gpon",
                      "state": "activated",
                      "interface-name": "XPON2-OLT-1",
                      "bundle-name": "CP-4391-1",
                      "interface-id": "gpon 0/2",
                      "lower-layer-interfaces": [
                        "channel 15"
                      ],
                      "metadata": {
                        "device-scoped-interface-name": [
                          "channel-pair 4391.1.15",
                          "channel-termination 0/2"
                        ]
                      },
                      "profile-vector-name": "XPON Profile Vector",
                      "number-of-lower-layer-interfaces": 1,
                      "device": {
                        "device-name": "OLT-1",
                        "state": "activated",
                        "management-domain": "static-ipv4-OLT-1",
                        "base-configuration": "",
                        "part-number": "11971305Fx",
                        "metadata": {
                          "event-config": {
                            "event": []
                          },
                          "inventory": {}
                        },
                        "profile-vector-name": "OLT Config Vector",
                        "model-name": "SDX 6010 16-port GPON OLT",
                        "credentials-name": "OLT Credentials"
                      }
                    },
                    {
                      "subtended-device-names": [
                        "ONU-0"
                      ],
                      "device-name": "OLT-11",
                      "interface-type": "gpon",
                      "state": "activated",
                      "interface-name": "XPON2-OLT-11",
                      "bundle-name": "CP-4391-2",
                      "interface-id": "gpon 0/2",
                      "lower-layer-interfaces": [
                        "channel 15"
                      ],
                      "metadata": {
                        "device-scoped-interface-name": [
                          "channel-pair 4391.2.15",
                          "channel-termination 0/2"
                        ]
                      },
                      "profile-vector-name": "XPON Profile Vector",
                      "number-of-lower-layer-interfaces": 1,
                      "device": {
                        "device-name": "OLT-11",
                        "state": "activated",
                        "management-domain": "static-ipv4-OLT-11",
                        "base-configuration": "",
                        "part-number": "11971305Fx",
                        "metadata": {
                          "event-config": {
                            "event": []
                          },
                          "inventory": {}
                        },
                        "profile-vector-name": "OLT Config Vector",
                        "model-name": "SDX 6010 16-port GPON OLT",
                        "credentials-name": "OLT Credentials"
                      }
                    }
                  ]
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data-filter/adtran-cloud-platform-interfaces:interfaces/interface={single-action-svc-int-name}": {
      "post": {
        "tags": [
          "Data Filter"
        ],
        "summary": "Data Filter - depth-first operator",
        "description": "The `#depth-first` operator returns a list of related vertices in the relationship index as discovered by performing a depth-first traversal. This can be used, crucially, to inspect how inter-related an object is. By reversing the returned list, a client can also determine the safe order to delete datastore contents without triggering any relationship constraint violations.\n\n\n|Attribute | Description|\n|---|---|\n|max-result | When specifying a depth-first traversal operator a limit is always in place which controls how long the operator will traverse before topping. By default this operator will traverse up to 1000 entries, but that can be changed by using the `max-results` configuration in your request.|\n\n\n\nResponse For each returned element a small bit of metadata will be tagged onto the element to provide some context for the result. In particular:\n\n|Attribute | Description|\n|---|---|\n|_meta.from| denotes the path which referenced this entry (e.g. the outbound edge side).|\n|_meta.to | denotes the path which was referenced (e.g. the inbound edge side).|\n|_meta.path| denotes the path to the entry in the result. Is equal to _meta.to for the forward traversal direction and _meta.from for the reverse traversal direction.|\n|_meta.via | records how this entry was related to the element previous in the traversal. It is a list of property names that were used to define the relationship.|\n|_meta.depth| records the depth at which an entry was encountered during traversal.|",
        "operationId": "DataFilter-depth-firstoperator",
        "parameters": [
          {
            "name": "single-action-svc-int-name",
            "in": "path",
            "description": "",
            "required": true,
            "style": "simple",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DataFilter-depth-firstoperatorRequest"
              },
              "example": {
                "references#depth-first": {
                  "max-results": 2
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Wed, 13 May 2020 08:34:30 GMT"
                    },
                    "example": "Wed, 13 May 2020 08:34:30 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "279"
                    },
                    "example": "279"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "no-store"
                    },
                    "example": "no-store"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"fa94045c-2d3e-4b45-9190-684af077f55b\""
                    },
                    "example": "\"fa94045c-2d3e-4b45-9190-684af077f55b\""
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/yang.data+json+firefly; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/DepthFirst-MaxResult0"
                },
                "example": {
                  "device-name": "rooted-device",
                  "interface-type": "ethernet",
                  "state": "activated",
                  "interface-name": "Root-to-OLT",
                  "interface-id": "lag 0/2",
                  "subtended-device-name": "PON-Blade-1",
                  "references": [],
                  "lower-layer-interfaces": [],
                  "profile-vector-name": "",
                  "number-of-lower-layer-interfaces": 0
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/data-filter/adtran-cloud-platform-devices:devices/device=rooted-device": {
      "post": {
        "tags": [
          "Data Filter"
        ],
        "summary": "Data Filter - count operator",
        "description": "The `#count` operator allows a user to retrieve a count of list items or filter result items. This is useful when a list of some kind contains results coming from a variety of YANG reference paths (e.g. as the result of a depth-first might be) and you would like to see counts of various types of items contained within that result.\n\n<br/>\nIn the following example we will count the number of `interface` and `device` within the result of a `#depth-first` operation.",
        "operationId": "DataFilter-countoperator",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DataFilter-countoperatorRequest"
              },
              "example": {
                "references#depth-first": {},
                "references#paginate": {
                  "from": 0,
                  "size": 0,
                  "target": "_page"
                },
                "references#count": {
                  "target": "count",
                  "counter-prefixes": {
                    "adtran-cloud-platform-interfaces:interfaces": "interface",
                    "adtran-cloud-platform-devices:devices": "device"
                  }
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "Date": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "Wed, 13 May 2020 07:35:32 GMT"
                    },
                    "example": "Wed, 13 May 2020 07:35:32 GMT"
                  }
                }
              },
              "Content-Length": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "353"
                    },
                    "example": "353"
                  }
                }
              },
              "Connection": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "keep-alive"
                    },
                    "example": "keep-alive"
                  }
                }
              },
              "Cache-Control": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "no-store"
                    },
                    "example": "no-store"
                  }
                }
              },
              "ETag": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "\"fa94045c-2d3e-4b45-9190-684af077f55b\""
                    },
                    "example": "\"fa94045c-2d3e-4b45-9190-684af077f55b\""
                  }
                }
              },
              "Access-Control-Allow-Origin": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "*"
                    },
                    "example": "*"
                  }
                }
              },
              "X-Frame-Options": {
                "content": {
                  "text/plain": {
                    "schema": {
                      "type": "string",
                      "example": "sameorigin"
                    },
                    "example": "sameorigin"
                  }
                }
              }
            },
            "content": {
              "application/yang.data+json+firefly; charset=UTF-8": {
                "schema": {
                  "$ref": "#/components/schemas/DataFilter-countoperator-Root-to-OLTInterface"
                },
                "example": {
                  "count": {
                    "interface": 3,
                    "device": 2
                  },
                  "device-name": "rooted-device",
                  "interface-type": "ethernet",
                  "state": "activated",
                  "interface-name": "Root-to-OLT",
                  "_page": {
                    "from": 0,
                    "size": 0,
                    "total": 10
                  },
                  "interface-id": "lag 0/2",
                  "subtended-device-name": "PON-Blade-1",
                  "references": [],
                  "lower-layer-interfaces": [],
                  "profile-vector-name": "",
                  "number-of-lower-layer-interfaces": 0
                }
              }
            }
          }
        },
        "deprecated": false
      }
    }
  },
  "components": {
    "schemas": {
      "RequestaSessionTokenRequest": {
        "title": "RequestaSessionTokenRequest",
        "required": [
          "username",
          "password"
        ],
        "type": "object",
        "properties": {
          "username": {
            "type": "string"
          },
          "password": {
            "type": "string"
          }
        },
        "example": {
          "username": "{{basic-auth-username}}",
          "password": "{{basic-auth-password}}"
        }
      },
      "RequestaSessionToken-Success": {
        "title": "RequestaSessionToken-Success",
        "required": [
          "token"
        ],
        "type": "object",
        "properties": {
          "token": {
            "type": "string"
          }
        },
        "example": {
          "token": "832e64d6097515d558464ec0f776149645812ac8ffeaf63a04d130fadb117f91"
        }
      },
      "RequestaSessionToken-InvalidPassword1": {
        "title": "RequestaSessionToken-InvalidPassword1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Supplied username or password is incorrect. Please try again. Multiple failed login attempts may result in your account being temporarily locked."
        }
      },
      "RequestaSessionTokenforNonAdminUserRequest": {
        "title": "RequestaSessionTokenforNonAdminUserRequest",
        "required": [
          "username",
          "password"
        ],
        "type": "object",
        "properties": {
          "username": {
            "type": "string"
          },
          "password": {
            "type": "string"
          }
        },
        "example": {
          "username": "SampleUser",
          "password": "P@ssw1rd"
        }
      },
      "ReleaseaSessionTokenRequest": {
        "title": "ReleaseaSessionTokenRequest",
        "required": [
          "token"
        ],
        "type": "object",
        "properties": {
          "token": {
            "type": "string"
          }
        },
        "example": {
          "token": "f3302885cff780987cebfaa6be0ad283619b7a3be42df4f4546fbd47b9ae2a6b"
        }
      },
      "ModifyingPasswordSecuritySettingRequest": {
        "title": "ModifyingPasswordSecuritySettingRequest",
        "required": [
          "password-expiry-days",
          "expiration-mode"
        ],
        "type": "object",
        "properties": {
          "password-expiry-days": {
            "type": "integer",
            "format": "int32"
          },
          "expiration-mode": {
            "type": "string"
          }
        },
        "example": {
          "password-expiry-days": 90,
          "expiration-mode": "expire-now"
        }
      },
      "ModifyingPasswordSecuritySetting-UnauthorisedUser1": {
        "title": "ModifyingPasswordSecuritySetting-UnauthorisedUser1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Anonymous access not authorized"
        }
      },
      "RetrievePasswordSecuritySetting-Success": {
        "title": "RetrievePasswordSecuritySetting-Success",
        "required": [
          "expiration-mode",
          "password-uppercase-min-len",
          "password-history-days",
          "password-min-len",
          "password-expiry-days",
          "password-max-len",
          "max-failed-logins",
          "password-min-digits",
          "password-notice-days",
          "password-history-length",
          "account-lock-period",
          "authorization-mode",
          "password-username-allowed",
          "password-min-special-char",
          "password-valid-char-set",
          "authentication-mode"
        ],
        "type": "object",
        "properties": {
          "expiration-mode": {
            "type": "string"
          },
          "password-uppercase-min-len": {
            "type": "integer",
            "format": "int32"
          },
          "password-history-days": {
            "type": "integer",
            "format": "int32"
          },
          "password-min-len": {
            "type": "integer",
            "format": "int32"
          },
          "password-expiry-days": {
            "type": "integer",
            "format": "int32"
          },
          "password-max-len": {
            "type": "integer",
            "format": "int32"
          },
          "max-failed-logins": {
            "type": "integer",
            "format": "int32"
          },
          "password-min-digits": {
            "type": "integer",
            "format": "int32"
          },
          "password-notice-days": {
            "type": "integer",
            "format": "int32"
          },
          "password-history-length": {
            "type": "integer",
            "format": "int32"
          },
          "account-lock-period": {
            "type": "integer",
            "format": "int32"
          },
          "authorization-mode": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "password-username-allowed": {
            "type": "boolean"
          },
          "password-min-special-char": {
            "type": "integer",
            "format": "int32"
          },
          "password-valid-char-set": {
            "type": "string"
          },
          "authentication-mode": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "expiration-mode": "expire-now",
          "password-uppercase-min-len": 1,
          "password-history-days": 180,
          "password-min-len": 8,
          "password-expiry-days": 90,
          "password-max-len": 128,
          "max-failed-logins": 5,
          "password-min-digits": 1,
          "password-notice-days": 5,
          "password-history-length": 5,
          "account-lock-period": 5,
          "authorization-mode": [
            "internal"
          ],
          "password-username-allowed": false,
          "password-min-special-char": 1,
          "password-valid-char-set": "[0-9a-zA-Z!@#$%^&*]",
          "authentication-mode": [
            "internal"
          ]
        }
      },
      "CreateGroupRequest": {
        "title": "CreateGroupRequest",
        "required": [
          "name",
          "permissions",
          "domains"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "permissions": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "domains": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "name": "read-only",
          "permissions": [
            "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions"
          ],
          "domains": []
        }
      },
      "GetGroup-Success": {
        "title": "GetGroup-Success",
        "required": [
          "domains",
          "name",
          "permissions"
        ],
        "type": "object",
        "properties": {
          "domains": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "name": {
            "type": "string"
          },
          "permissions": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "domains": [],
          "name": "read-only-user",
          "permissions": [
            "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions"
          ]
        }
      },
      "GetAllGroups-Success": {
        "title": "GetAllGroups-Success",
        "required": [
          "domains",
          "name",
          "permissions"
        ],
        "type": "object",
        "properties": {
          "domains": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "name": {
            "type": "string"
          },
          "permissions": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "domains": [],
          "name": "activate-device-user",
          "permissions": [
            "adtran-cloud-platform-search:execute-search",
            "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
            "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
            "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
            "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices",
            "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
            "adtran-cloud-platform-labels:read-labels",
            "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls",
            "adtran-auth-permission:all",
            "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
            "adtran-cloud-platform-management-domains:read-adtn-cld-pfrm-md",
            "adtran-cloud-platform-profiles:read-profile",
            "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interfaces",
            "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domain-types",
            "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domains",
            "adtran-cloud-platform-uiworkflow-part-numbers:read-uiworkflow-part-number",
            "adtran-cloud-platform-uiworkflow-profiles:read-profile"
          ]
        }
      },
      "RetrieveModulePermissions-Success": {
        "title": "RetrieveModulePermissions-Success",
        "required": [
          "module"
        ],
        "type": "object",
        "properties": {
          "module": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Module"
            },
            "description": ""
          }
        },
        "example": {
          "module": [
            {
              "name": "adtran-cloud-platform-uiworkflow",
              "permission": [
                "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
                "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
                "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
                "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy",
                "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
                "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
                "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
                "adtran-cloud-platform-uiworkflow:run-uiworkflow-notify",
                "adtran-cloud-platform-uiworkflow:read-uiworkflow-catalog",
                "adtran-cloud-platform-uiworkflow:run-uiworkflow-onboard-device",
                "adtran-cloud-platform-uiworkflow:force-delete"
              ]
            },
            {
              "name": "adtran-auth-permission",
              "permission": [
                "adtran-auth-permission:all",
                "adtran-auth-permission:anonymous"
              ]
            },
            {
              "name": "adtran-export-data-service",
              "permission": [
                "adtran-export-data-service:export-data-service"
              ]
            },
            {
              "name": "adtran-cloud-platform-profiles-gfast-types",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-profiles-service",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-topics",
              "permission": [
                "adtran-cloud-platform-topics:configure-topics",
                "adtran-cloud-platform-topics:read-topics"
              ]
            },
            {
              "name": "adtran-captive-portal-aoe",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-profiles-voice-protocol",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-profiles-multicast",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-jobs",
              "permission": [
                "adtran-cloud-platform-jobs:read-adtn-cld-pfrm-job",
                "adtran-cloud-platform-jobs:modify-adtn-cld-pfrm-job"
              ]
            },
            {
              "name": "adtran-cxui-vqm-data",
              "permission": []
            },
            {
              "name": "adtran-cp-profiles-gfast-channel-threshold-profile-body",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-software-upgrade-service",
              "permission": [
                "adtran-cloud-platform-software-upgrade-service:download-software",
                "adtran-cloud-platform-software-upgrade-service:commit-software",
                "adtran-cloud-platform-software-upgrade-service:activate-software",
                "adtran-cloud-platform-software-upgrade-service:commit-and-activate-software",
                "adtran-cloud-platform-software-upgrade-service:reboot-device"
              ]
            },
            {
              "name": "adtran-ffui-settings",
              "permission": [
                "adtran-ffui-settings:modify-settings",
                "adtran-ffui-settings:read-settings"
              ]
            },
            {
              "name": "adtran-cloud-platform-server-coordination",
              "permission": [
                "adtran-cloud-platform-server-coordination:config-servers",
                "adtran-cloud-platform-server-coordination:deploy-servers",
                "adtran-cloud-platform-server-coordination:activate-servers",
                "adtran-cloud-platform-server-coordination:undeploy-servers",
                "adtran-cloud-platform-server-coordination:deactivate-servers",
                "adtran-cloud-platform-server-coordination:delete-servers",
                "adtran-cloud-platform-server-coordination:communicate-servers"
              ]
            },
            {
              "name": "adtran-cloud-platform-job-upgrade",
              "permission": []
            },
            {
              "name": "adtran-captive-portal-service-work",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-uiworkflow-services-types",
              "permission": []
            },
            {
              "name": "adtran-captive-portal-service-profiles",
              "permission": []
            },
            {
              "name": "adtran-cp-profiles-gfast-handshake-profile-body",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-profiles-voice-dialing",
              "permission": []
            },
            {
              "name": "adtran-auth-tech-support",
              "permission": [
                "adtran-auth-tech-support:generate-tech-support-challenges"
              ]
            },
            {
              "name": "adtran-cloud-platform-profiles-sip-trunk",
              "permission": []
            },
            {
              "name": "adtran-captive-portal-etos",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-profiles-diameter-route",
              "permission": []
            },
            {
              "name": "adtran-captive-portal-user-actions",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-profiles-pon-igmp",
              "permission": []
            },
            {
              "name": "adtran-auth-domain",
              "permission": [
                "adtran-auth-domain:modify-domains"
              ]
            },
            {
              "name": "adtran-cloud-platform-settings-gfast",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-uiworkflow-topology",
              "permission": [
                "adtran-cloud-platform-uiworkflow-topology:read-uiworkflow-topology",
                "adtran-cloud-platform-uiworkflow-topology:run-uiworkflow-topology"
              ]
            },
            {
              "name": "adtran-cloud-platform-profiles-gfast",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-search-object-status",
              "permission": []
            },
            {
              "name": "adtran-device-proxy-notifications",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-management-domains",
              "permission": [
                "adtran-cloud-platform-management-domains:read-adtn-cld-pfrm-md",
                "adtran-cloud-platform-management-domains:modify-adtn-cld-pfrm-md"
              ]
            },
            {
              "name": "adtran-captive-portal-server-credentials",
              "permission": []
            },
            {
              "name": "adtran-dpoe-node",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-profiles-venet-interface",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-elasticsearch-rollover-indices",
              "permission": [
                "adtran-cloud-platform-elasticsearch-rollover-indices:rollover-cron-update",
                "adtran-cloud-platform-elasticsearch-rollover-indices:read-adtn-cld-pfrm-es-rlvr-indcs",
                "adtran-cloud-platform-elasticsearch-rollover-indices:modify-adtn-cld-pfrm-es-rlvr-indcs"
              ]
            },
            {
              "name": "adtran-nms-inventory",
              "permission": [
                "adtran-nms-inventory:read-inventory"
              ]
            },
            {
              "name": "adtran-cloud-platform-profiles-ethernet",
              "permission": []
            },
            {
              "name": "adtran-captive-portal-policers",
              "permission": [
                "adtran-captive-portal-policers:read-policer",
                "adtran-captive-portal-policers:modify-policer"
              ]
            },
            {
              "name": "adtran-cloud-platform-uiworkflow-management-domains-types",
              "permission": []
            },
            {
              "name": "adtran-ffui-workboards-yds",
              "permission": [
                "adtran-ffui-workboards-yds:modify-workboards",
                "adtran-ffui-workboards-yds:read-workboards"
              ]
            },
            {
              "name": "adtran-cloud-platform-event-workflow",
              "permission": [
                "adtran-cloud-platform-event-workflow:event-read",
                "adtran-cloud-platform-event-workflow:event-write",
                "adtran-cloud-platform-event-workflow:event-clear",
                "adtran-cloud-platform-event-workflow:read-event-workflow-transitions"
              ]
            },
            {
              "name": "adtran-cloud-platform-connections-yds",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-hardware",
              "permission": [
                "adtran-cloud-platform-hardware:read-profile"
              ]
            },
            {
              "name": "adtran-yang-datastore",
              "permission": [
                "adtran-yang-datastore:read-yang-model",
                "adtran-yang-datastore:write-yang-model"
              ]
            },
            {
              "name": "adtran-vssm-gx-subscriber-data",
              "permission": [
                "adtran-vssm-gx-subscriber-data:read-subscriber-data"
              ]
            },
            {
              "name": "adtran-cloud-platform-dhcp-config",
              "permission": [
                "adtran-cloud-platform-dhcp-config:dhcp-config"
              ]
            },
            {
              "name": "adtran-cloud-platform-uiworkflow-jobs",
              "permission": [
                "adtran-cloud-platform-uiworkflow-jobs:read-job",
                "adtran-cloud-platform-uiworkflow-jobs:read-trigger",
                "adtran-cloud-platform-uiworkflow-jobs:read-action",
                "adtran-cloud-platform-uiworkflow-jobs:get-job-context",
                "adtran-cloud-platform-uiworkflow-jobs:run-job",
                "adtran-cloud-platform-uiworkflow-jobs:run-job-with-parameters",
                "adtran-cloud-platform-uiworkflow-jobs:read-run-job-transitions"
              ]
            },
            {
              "name": "adtran-cloud-platform-services",
              "permission": [
                "adtran-cloud-platform-services:read-service",
                "adtran-cloud-platform-services:modify-service"
              ]
            },
            {
              "name": "adtran-cloud-platform-software-upgrade-maintenance-service",
              "permission": [
                "adtran-cloud-platform-software-upgrade-maintenance-service:initiate-upgrade",
                "adtran-cloud-platform-software-upgrade-maintenance-service:get-upgrade-status",
                "adtran-cloud-platform-software-upgrade-maintenance-service:get-upgrade-summary-status"
              ]
            },
            {
              "name": "adtran-cloud-platform-dhcp-subscriber-profile-mapping",
              "permission": [
                "adtran-cloud-platform-dhcp-subscriber-profile-mapping:modify-subscriber-profile-mapping",
                "adtran-cloud-platform-dhcp-subscriber-profile-mapping:read-subscriber-profile-mapping"
              ]
            },
            {
              "name": "adtran-cloud-platform-maintenance-service-work",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-profiles-pools",
              "permission": [
                "adtran-cloud-platform-profiles-pools:read-profile-pool",
                "adtran-cloud-platform-profiles-pools:modify-profile-pools"
              ]
            },
            {
              "name": "adtran-cloud-platform-y1731-session-measurement-report",
              "permission": [
                "adtran-cloud-platform-y1731-session-measurement-report:read-report"
              ]
            },
            {
              "name": "adtran-cloud-platform-entity-transformation-gfast-types",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-uiworkflow-force-actions",
              "permission": []
            },
            {
              "name": "adtran-cp-profiles-gfast-vectoring-profile-body",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-profiles-voice-codec",
              "permission": []
            },
            {
              "name": "adtran-auth-user",
              "permission": [
                "adtran-auth-user:modify-users",
                "adtran-auth-user:administer-users"
              ]
            },
            {
              "name": "adtran-cloud-platform-bundles",
              "permission": [
                "adtran-cloud-platform-bundles:read-adtn-cld-pfrm-bndl",
                "adtran-cloud-platform-bundles:modify-adtn-cld-pfrm-bndl"
              ]
            },
            {
              "name": "adtran-cloud-platform-service-test-rfc2544",
              "permission": [
                "adtran-cloud-platform-service-test-rfc2544:read-rfc2544-tests",
                "adtran-cloud-platform-service-test-rfc2544:run-test-rfc2544"
              ]
            },
            {
              "name": "adtran-vssm-gx-handler",
              "permission": [
                "adtran-vssm-gx-handler:gx-handler"
              ]
            },
            {
              "name": "adtran-cloud-platform-profiles-y1731-meg",
              "permission": []
            },
            {
              "name": "adtran-cxui-sip-stats",
              "permission": []
            },
            {
              "name": "adtran-device-proxy-snmp",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-profiles-ethernet-cfm",
              "permission": []
            },
            {
              "name": "adtran-nms-inventory-synchronization",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-profiles-device-connectivity",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-deferred-intents",
              "permission": [
                "adtran-cloud-platform-deferred-intents:read-deferred-intents"
              ]
            },
            {
              "name": "adtran-cloud-platform-servers",
              "permission": [
                "adtran-cloud-platform-servers:read-adtn-cld-pfrm-srvr",
                "adtran-cloud-platform-servers:modify-adtn-cld-pfrm-srvr"
              ]
            },
            {
              "name": "adtran-cloud-platform-data-centers",
              "permission": [
                "adtran-cloud-platform-data-centers:read-adtn-cld-pfrm-data-ctr",
                "adtran-cloud-platform-data-centers:modify-adtn-cld-pfrm-data-ctr"
              ]
            },
            {
              "name": "adtran-cloud-platform-profiles-snmp",
              "permission": []
            },
            {
              "name": "adtran-captive-portal-activation-logs",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-profiles-vdsl",
              "permission": []
            },
            {
              "name": "adtran-dhcp-autoprov-info",
              "permission": [
                "adtran-dhcp-autoprov-info:read-adtn-dhcp-ap-info"
              ]
            },
            {
              "name": "adtran-cloud-platform-business-service-management",
              "permission": [
                "adtran-cloud-platform-business-service-management:service-read",
                "adtran-cloud-platform-business-service-management:service-write"
              ]
            },
            {
              "name": "adtran-cloud-platform-profiles-service-segment",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-search-alarms",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-profiles-common-types",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-search-global-types",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-profiles-ancp",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-uiworkflow-credentials",
              "permission": [
                "adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls"
              ]
            },
            {
              "name": "adtran-cloud-platform-plugin-ta5k-fttp-segment-data",
              "permission": []
            },
            {
              "name": "adtran-auth-config",
              "permission": [
                "adtran-auth-config:modify-config"
              ]
            },
            {
              "name": "adtran-aoe-access",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-uiworkflow-servers",
              "permission": [
                "adtran-cloud-platform-uiworkflow-servers:read-uiworkflow-servers"
              ]
            },
            {
              "name": "adtran-cloud-platform-devices-ngpon2",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-uiworkflow-interface-types",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-search-accounting-logs",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-search",
              "permission": [
                "adtran-cloud-platform-search:execute-search",
                "adtran-cloud-platform-search:administer-search"
              ]
            },
            {
              "name": "adtran-cp-profiles-gfast-retransmission-profile-body",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-profiles-scoped-policing",
              "permission": []
            },
            {
              "name": "adtran-manifests",
              "permission": [
                "adtran-manifests:read-adtn-manif"
              ]
            },
            {
              "name": "adtran-cloud-platform-uiworkflow-bundles-types",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-profiles-entity-transformation",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-vssm-diameter-statistics",
              "permission": [
                "adtran-cloud-platform-vssm-diameter-statistics:diameter-stats-perm"
              ]
            },
            {
              "name": "adtran-cloud-platform-table",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-services-sip",
              "permission": []
            },
            {
              "name": "adtran-captive-portal-sla-profiles",
              "permission": [
                "adtran-captive-portal-sla-profiles:read-sla-profile",
                "adtran-captive-portal-sla-profiles:modify-sla-profile"
              ]
            },
            {
              "name": "adtran-cloud-platform-ancp",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-uiworkflow-data-center-types",
              "permission": [
                "adtran-cloud-platform-uiworkflow-data-center-types:read-uiworkflow-data-center-type"
              ]
            },
            {
              "name": "adtran-cloud-platform-diagnostic-data-maintenance-service",
              "permission": [
                "adtran-cloud-platform-diagnostic-data-maintenance-service:get-diagnostic-job-info"
              ]
            },
            {
              "name": "adtran-cloud-platform-uiworkflow-management-domains",
              "permission": [
                "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domain-types",
                "adtran-cloud-platform-uiworkflow-management-domains:read-uiworkflow-management-domains"
              ]
            },
            {
              "name": "adtran-captive-portal-wholesale-activations",
              "permission": []
            },
            {
              "name": "adtran-auth-token",
              "permission": []
            },
            {
              "name": "adtran-auth-config-external",
              "permission": [
                "adtran-auth-config-external:modify-config-ext"
              ]
            },
            {
              "name": "adtran-cloud-platform-trap-hosts",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-uiworkflow-subscribers",
              "permission": [
                "adtran-cloud-platform-uiworkflow-subscribers:read-uiworkflow-subscribers",
                "adtran-cloud-platform-uiworkflow-subscribers:filter-uiworkflow-subscriber-resources"
              ]
            },
            {
              "name": "adtran-auth-accounting",
              "permission": [
                "adtran-auth-accounting:read-accounting-logs"
              ]
            },
            {
              "name": "adtran-cloud-platform-uiworkflow-devices-gfast",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-profiles-tcont-name",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-subscriber-policy",
              "permission": [
                "adtran-cloud-platform-subscriber-policy:modify-subs-policy",
                "adtran-cloud-platform-subscriber-policy:read-subs-policy"
              ]
            },
            {
              "name": "adtran-captive-portal-content-providers",
              "permission": [
                "adtran-captive-portal-content-providers:read-content-provider",
                "adtran-captive-portal-content-providers:modify-content-provider"
              ]
            },
            {
              "name": "adtran-cloud-platform-device-upgrade",
              "permission": []
            },
            {
              "name": "adtran-captive-portal-ncommand",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-devices",
              "permission": [
                "adtran-cloud-platform-devices:read-adtn-cld-pfrm-dev",
                "adtran-cloud-platform-devices:modify-adtn-cld-pfrm-dev"
              ]
            },
            {
              "name": "adtran-cp-profiles-gfast-rfi-profile-body",
              "permission": []
            },
            {
              "name": "adtran-nbi-pm",
              "permission": [
                "adtran-nbi-pm:pm-config",
                "adtran-nbi-pm:pm-read"
              ]
            },
            {
              "name": "adtran-cloud-platform-profiles-system",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-subscribers",
              "permission": [
                "adtran-cloud-platform-subscribers:read-adtn-cld-pfrm-subs",
                "adtran-cloud-platform-subscribers:modify-adtn-cld-pfrm-subs"
              ]
            },
            {
              "name": "adtran-cloud-platform-search-usage-tracking-data",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-profiles",
              "permission": [
                "adtran-cloud-platform-profiles:config-profile",
                "adtran-cloud-platform-profiles:read-profile"
              ]
            },
            {
              "name": "adtran-cloud-platform-profiles-aes-config",
              "permission": []
            },
            {
              "name": "adtran-cp-profiles-gfast-tdd-profile-body",
              "permission": []
            },
            {
              "name": "adtran-cassandra-manager",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-ui-inspect",
              "permission": [
                "adtran-cloud-platform-ui-inspect:run-request",
                "adtran-cloud-platform-ui-inspect:run-action"
              ]
            },
            {
              "name": "adtran-cloud-platform-mqtt-yds",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-devices-gfast",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-profiles-custom-index",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-alarm-logger",
              "permission": [
                "adtran-cloud-platform-alarm-logger:read-alarm-logs"
              ]
            },
            {
              "name": "adtran-server-proxy-by-name",
              "permission": [
                "adtran-server-proxy-by-name:server-read"
              ]
            },
            {
              "name": "adtran-cloud-platform-labels",
              "permission": [
                "adtran-cloud-platform-labels:read-labels",
                "adtran-cloud-platform-labels:modify-labels"
              ]
            },
            {
              "name": "adtran-cloud-platform-profiles-default-host-interface",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-profiles-allocation",
              "permission": []
            },
            {
              "name": "adtran-device-proxy-snmp-transactions",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-profiles-traffic-management",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-uiworkflow-devices-ngpon2",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-event-description",
              "permission": [
                "adtran-cloud-platform-event-description:configure-event-description",
                "adtran-cloud-platform-event-description:read-event-description"
              ]
            },
            {
              "name": "adtran-cloud-platform-proxy-service",
              "permission": [
                "adtran-cloud-platform-proxy-service:device-read",
                "adtran-cloud-platform-proxy-service:device-write",
                "adtran-cloud-platform-proxy-service:mount-point-read",
                "adtran-cloud-platform-proxy-service:server-read",
                "adtran-cloud-platform-proxy-service:server-write"
              ]
            },
            {
              "name": "adtran-cloud-platform-plugin",
              "permission": [
                "adtran-cloud-platform-plugin:reload-plugins",
                "adtran-cloud-platform-plugin:get-plugins"
              ]
            },
            {
              "name": "adtran-cloud-platform-information",
              "permission": [
                "adtran-cloud-platform-information:read-information"
              ]
            },
            {
              "name": "adtran-cloud-platform-uiworkflow-jobs-types",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-interfaces",
              "permission": [
                "adtran-cloud-platform-interfaces:read-adtn-cld-pfrm-int",
                "adtran-cloud-platform-interfaces:modify-adtn-cld-pfrm-int"
              ]
            },
            {
              "name": "adtran-cloud-platform-profiles-user",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-search-all-labels",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-profiles-legacy-gpon",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-uiworkflow-interfaces",
              "permission": [
                "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interface-type",
                "adtran-cloud-platform-uiworkflow-interfaces:read-uiworkflow-interfaces",
                "adtran-cloud-platform-uiworkflow-interfaces:filter-uiworkflow-interface-resources",
                "adtran-cloud-platform-uiworkflow-interfaces:filter-uiworkflow-physical-resources"
              ]
            },
            {
              "name": "adtran-cloud-platform-profiles-melt",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-profiles-lci-policy",
              "permission": []
            },
            {
              "name": "adtran-automation-portal-residential-activation",
              "permission": []
            },
            {
              "name": "adtran-cp-profiles-gfast-upstream-power-back-off-profile-body",
              "permission": []
            },
            {
              "name": "adtran-cp-profiles-gfast-data-rate-profile-body",
              "permission": []
            },
            {
              "name": "adtran-captive-portal-dpus",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-connection-monitor",
              "permission": [
                "adtran-cloud-platform-connection-monitor:aggregate-sessions-count"
              ]
            },
            {
              "name": "adtran-cloud-platform-system-monitor",
              "permission": [
                "adtran-cloud-platform-system-monitor:read-system-monitor-node-status"
              ]
            },
            {
              "name": "adtran-cp-profiles-gfast-line-spectrum-profile-body",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-dfn-route-configuration",
              "permission": [
                "adtran-cloud-platform-dfn-route-configuration:modify-dfn-rt-configuration",
                "adtran-cloud-platform-dfn-route-configuration:read-dfn-rt-configuration"
              ]
            },
            {
              "name": "adtran-cloud-platform-uiworkflow-inspect",
              "permission": [
                "adtran-cloud-platform-uiworkflow-inspect:inspect-uiworkflow-devices",
                "adtran-cloud-platform-uiworkflow-inspect:inspect-uiworkflow-profiles",
                "adtran-cloud-platform-uiworkflow-inspect:inspect-uiworkflow-interfaces",
                "adtran-cloud-platform-uiworkflow-inspect:inspect-uiworkflow-server",
                "adtran-cloud-platform-uiworkflow-inspect:manage-uiworkflow-dpu"
              ]
            },
            {
              "name": "adtran-cloud-platform-profiles-traffic-management-types",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-uiworkflow-devices",
              "permission": [
                "adtran-cloud-platform-uiworkflow-devices:read-uiworkflow-devices"
              ]
            },
            {
              "name": "adtran-cloud-platform-uiworkflow-behaviors",
              "permission": [
                "adtran-cloud-platform-uiworkflow-behaviors:run-uiworkflow-behavior",
                "adtran-cloud-platform-uiworkflow-behaviors:read-uiworkflow-behavior"
              ]
            },
            {
              "name": "adtran-cloud-platform-base-configurations",
              "permission": [
                "adtran-cloud-platform-base-configurations:read-adtn-cld-pfrm-bc",
                "adtran-cloud-platform-base-configurations:modify-adtn-cld-pfrm-bc"
              ]
            },
            {
              "name": "adtran-captive-portal-wholesale-helpers",
              "permission": [
                "adtran-captive-portal-wholesale-helpers:configure-interface",
                "adtran-captive-portal-wholesale-helpers:create-dpu-mgmt-svcs-for-l2s",
                "adtran-captive-portal-wholesale-helpers:delete-dpu-mgmt-svcs-for-l2s",
                "adtran-captive-portal-wholesale-helpers:commission-dpu",
                "adtran-captive-portal-wholesale-helpers:decommission-dpu",
                "adtran-captive-portal-wholesale-helpers:create-l2s-device-mgmt-svcs",
                "adtran-captive-portal-wholesale-helpers:delete-l2s-device-mgmt-svcs",
                "adtran-captive-portal-wholesale-helpers:commission-l2s-device",
                "adtran-captive-portal-wholesale-helpers:decommission-l2s-device",
                "adtran-captive-portal-wholesale-helpers:create-content-provider",
                "adtran-captive-portal-wholesale-helpers:delete-content-provider",
                "adtran-captive-portal-wholesale-helpers:create-l2s-service",
                "adtran-captive-portal-wholesale-helpers:delete-l2s-service",
                "adtran-captive-portal-wholesale-helpers:create-dpu-service",
                "adtran-captive-portal-wholesale-helpers:delete-dpu-service",
                "adtran-captive-portal-wholesale-helpers:activate-service",
                "adtran-captive-portal-wholesale-helpers:deactivate-service",
                "adtran-captive-portal-wholesale-helpers:add-ont",
                "adtran-captive-portal-wholesale-helpers:modify-ont",
                "adtran-captive-portal-wholesale-helpers:remove-ont",
                "adtran-captive-portal-wholesale-helpers:replace-ont",
                "adtran-captive-portal-wholesale-helpers:create-ses-service",
                "adtran-captive-portal-wholesale-helpers:delete-ses-service",
                "adtran-captive-portal-wholesale-helpers:create-pon-system",
                "adtran-captive-portal-wholesale-helpers:update-pon-system",
                "adtran-captive-portal-wholesale-helpers:update-pon",
                "adtran-captive-portal-wholesale-helpers:delete-pon-system",
                "adtran-captive-portal-wholesale-helpers:delete-channel-partition",
                "adtran-captive-portal-wholesale-helpers:get-pons-of-channel-partition"
              ]
            },
            {
              "name": "adtran-cp-profiles-gfast-reinitialization-policy-profile-body",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-subscriber-accounting",
              "permission": [
                "adtran-cloud-platform-subscriber-accounting:write-config",
                "adtran-cloud-platform-subscriber-accounting:read-config"
              ]
            },
            {
              "name": "adtran-cloud-platform-profiles-file-transfer-server",
              "permission": []
            },
            {
              "name": "adtran-cp-profiles-gfast-fast-retrain-policy-profile-body",
              "permission": []
            },
            {
              "name": "adtran-nbi-ipaa-ssh",
              "permission": [
                "adtran-nbi-ipaa-ssh:ipaa-config-ssh"
              ]
            },
            {
              "name": "adtran-system-config",
              "permission": [
                "adtran-system-config:modify-config"
              ]
            },
            {
              "name": "adtran-cloud-platform-profiles-voice-media",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-search-by-label",
              "permission": []
            },
            {
              "name": "adtran-cp-profiles-gfast-fast-rate-adaptation-profile-body",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-profiles-device-software-upgrade",
              "permission": []
            },
            {
              "name": "adtran-vssm-gx-session",
              "permission": [
                "adtran-vssm-gx-session:gx-session"
              ]
            },
            {
              "name": "adtran-cloud-platform-uiworkflow-services-sip",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-restconf-streams",
              "permission": [
                "adtran-cloud-platform-restconf-streams:stream-read"
              ]
            },
            {
              "name": "adtran-cloud-platform-dhcp-lease",
              "permission": [
                "adtran-cloud-platform-dhcp-lease:read-dhcp-lease"
              ]
            },
            {
              "name": "adtran-cloud-platform-uiworkflow-inventory",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-plugin-adtn-1u-olt-yds-data",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-profiles-melt-types",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-profiles-alarm",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-device-credentials",
              "permission": [
                "adtran-cloud-platform-device-credentials:read-adtn-cld-pfrm-dev-crdls",
                "adtran-cloud-platform-device-credentials:modify-adtn-cld-pfrm-dev-crdls"
              ]
            },
            {
              "name": "adtran-cloud-platform-uiworkflow-services",
              "permission": [
                "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-service-profiles",
                "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-services",
                "adtran-cloud-platform-uiworkflow-services:read-uiworkflow-content-providers"
              ]
            },
            {
              "name": "adtran-cloud-platform-search-object-filter",
              "permission": []
            },
            {
              "name": "adtran-cp-profiles-gfast-vdsl-crosstalk-detection-profile-body",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-uiworkflow-servers-types",
              "permission": []
            },
            {
              "name": "adtran-trap-forwarder",
              "permission": [
                "adtran-trap-forwarder:trap-config-read",
                "adtran-trap-forwarder:trap-config-write"
              ]
            },
            {
              "name": "adtran-cloud-platform-plugin-service-segment-data",
              "permission": []
            },
            {
              "name": "adtran-device-proxy",
              "permission": [
                "adtran-device-proxy:device-read",
                "adtran-device-proxy:device-write",
                "adtran-device-proxy:device-execute",
                "adtran-device-proxy:server-write"
              ]
            },
            {
              "name": "adtran-cloud-platform-device-backup",
              "permission": [
                "adtran-cloud-platform-device-backup:read-adtn-cld-pfrm-dev-bkup",
                "adtran-cloud-platform-device-backup:modify-adtn-cld-pfrm-dev-bkup"
              ]
            },
            {
              "name": "adtran-ffui-applications",
              "permission": [
                "adtran-ffui-applications:read-apps-info",
                "adtran-ffui-applications:write-apps-info"
              ]
            },
            {
              "name": "adtran-device-proxy-rest",
              "permission": []
            },
            {
              "name": "adtran-captive-portal-service-transition",
              "permission": [
                "adtran-captive-portal-service-transition:read-service-transitions"
              ]
            },
            {
              "name": "adtran-cloud-platform-enablement-adapter",
              "permission": [
                "adtran-cloud-platform-enablement-adapter:run-ebmt-adpt-trap-receiver"
              ]
            },
            {
              "name": "adtran-rest-extensions",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-search-performance-monitoring-data",
              "permission": []
            },
            {
              "name": "adtran-cp-profiles-gfast-noise-margin-profile-body",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-dhcp-profiles",
              "permission": [
                "adtran-cloud-platform-dhcp-profiles:modify-dhcp-profile",
                "adtran-cloud-platform-dhcp-profiles:read-dhcp-profile"
              ]
            },
            {
              "name": "adtran-cloud-platform-plugin-adtn-1u-olt-segment-data",
              "permission": []
            },
            {
              "name": "adtran-nbi-inventory",
              "permission": []
            },
            {
              "name": "adtran-dhcp-ont-activations",
              "permission": [
                "adtran-dhcp-ont-activations:read-adtn-dhcp-ont-act"
              ]
            },
            {
              "name": "adtran-cloud-platform-service-test-y1731",
              "permission": [
                "adtran-cloud-platform-service-test-y1731:read-y1731-tests",
                "adtran-cloud-platform-service-test-y1731:run-test-y1731",
                "adtran-cloud-platform-service-test-y1731:run-graph-y1731"
              ]
            },
            {
              "name": "adtran-cloud-platform-profiles-voice-call-feature",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-services-cfm",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-profiles-multicast-vpn",
              "permission": []
            },
            {
              "name": "adtran-cxui-device",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-device-types",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-profiles-external-sensor-configuration",
              "permission": []
            },
            {
              "name": "adtran-cxui-types",
              "permission": [
                "adtran-cxui-types:read-adtn-cxui-dev",
                "adtran-cxui-types:read-adtn-cxui-dev-stats",
                "adtran-cxui-types:modify-adtn-cxui-dev",
                "adtran-cxui-types:read-adtn-cxui-vqm",
                "adtran-cxui-types:read-adtn-cxui-sip-stats"
              ]
            },
            {
              "name": "adtran-launchpad-login",
              "permission": [
                "adtran-launchpad-login:modify-login-page",
                "adtran-launchpad-login:modify-browser-page"
              ]
            },
            {
              "name": "adtran-captive-portal-business-activations",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-profiles-grouping",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-restconf-service",
              "permission": [
                "adtran-cloud-platform-restconf-service:read-permission",
                "adtran-cloud-platform-restconf-service:open-session",
                "adtran-cloud-platform-restconf-service:close-session",
                "adtran-cloud-platform-restconf-service:read-session",
                "adtran-cloud-platform-restconf-service:read-config",
                "adtran-cloud-platform-restconf-service:write-config",
                "adtran-cloud-platform-restconf-service:delete-config",
                "adtran-cloud-platform-restconf-service:subscribe-notifications",
                "adtran-cloud-platform-restconf-service:unsubscribe-notifications",
                "adtran-cloud-platform-restconf-service:read-schema",
                "adtran-cloud-platform-restconf-service:reestablish-session",
                "adtran-cloud-platform-restconf-service:get-all-device-sessions",
                "adtran-cloud-platform-restconf-service:get-all-device-notifications",
                "adtran-cloud-platform-restconf-service:reboot-device",
                "adtran-cloud-platform-restconf-service:execute-rpc"
              ]
            },
            {
              "name": "adtran-cloud-platform-devices-activate",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-dfn-peer-configuration",
              "permission": [
                "adtran-cloud-platform-dfn-peer-configuration:modify-dfn-pr-configuration",
                "adtran-cloud-platform-dfn-peer-configuration:read-dfn-pr-configuration"
              ]
            },
            {
              "name": "adtran-cloud-platform-uiworkflow-part-numbers",
              "permission": [
                "adtran-cloud-platform-uiworkflow-part-numbers:read-uiworkflow-part-number"
              ]
            },
            {
              "name": "adtran-cloud-platform-settings-deferred-intent",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-overrides",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-uiworkflow-data-centers",
              "permission": [
                "adtran-cloud-platform-uiworkflow-data-centers:read-uiworkflow-data-centers"
              ]
            },
            {
              "name": "adtran-cloud-platform-profiles-authentication",
              "permission": []
            },
            {
              "name": "adtran-feature-flags",
              "permission": [
                "adtran-feature-flags:config-flag"
              ]
            },
            {
              "name": "adtran-cloud-platform-profiles-conditional",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-profiles-service-shaper",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-subscriber-session-status",
              "permission": [
                "adtran-cloud-platform-subscriber-session-status:read-subscriber-session"
              ]
            },
            {
              "name": "adtran-auth-group",
              "permission": [
                "adtran-auth-group:modify-groups"
              ]
            },
            {
              "name": "adtran-cloud-platform-dfn-configuration",
              "permission": [
                "adtran-cloud-platform-dfn-configuration:modify-dfn-configuration",
                "adtran-cloud-platform-dfn-configuration:read-dfn-configuration"
              ]
            },
            {
              "name": "adtran-ffui-types",
              "permission": []
            },
            {
              "name": "adtran-vssm-radius-config",
              "permission": []
            },
            {
              "name": "adtran-file-transfer",
              "permission": [
                "adtran-file-transfer:read-adtn-file-xfer-sftp-cfg",
                "adtran-file-transfer:modify-adtn-file-xfer-sftp-cfg"
              ]
            },
            {
              "name": "adtran-cloud-platform-event-enrichment-helper",
              "permission": [
                "adtran-cloud-platform-event-enrichment-helper:event-enrichment-helper"
              ]
            },
            {
              "name": "adtran-cloud-platform-profiles-scoped-shaping",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-uiworkflow-bundles",
              "permission": [
                "adtran-cloud-platform-uiworkflow-bundles:read-uiworkflow-bundle-type",
                "adtran-cloud-platform-uiworkflow-bundles:read-uiworkflow-bundles",
                "adtran-cloud-platform-uiworkflow-bundles:filter-uiworkflow-bundle-resources"
              ]
            },
            {
              "name": "adtran-cloud-platform-profiles-event-config",
              "permission": []
            },
            {
              "name": "adtran-pma-adapter",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-credentials",
              "permission": [
                "adtran-cloud-platform-credentials:read-adtn-cld-pfrm-crdls",
                "adtran-cloud-platform-credentials:modify-adtn-cld-pfrm-crdls"
              ]
            },
            {
              "name": "adtran-cloud-platform-plugin-adtn-602x-onu-segment-data",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-profiles-tcont",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-plugin-device-netconf-lock-state",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-job-config",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-deferred-intent-service",
              "permission": [
                "adtran-cloud-platform-deferred-intent-service:execute-intent-operation"
              ]
            },
            {
              "name": "adtran-cloud-platform-types",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-usage-report",
              "permission": []
            },
            {
              "name": "adtran-vssm-gx-config",
              "permission": [
                "adtran-vssm-gx-config:read-gx-apn-config"
              ]
            },
            {
              "name": "adtran-cloud-platform-sse-client",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-settings",
              "permission": [
                "adtran-cloud-platform-settings:read-adtn-cld-pfrm-set",
                "adtran-cloud-platform-settings:modify-adtn-cld-pfrm-set"
              ]
            },
            {
              "name": "adtran-cloud-platform-uiworkflow-device-credentials",
              "permission": [
                "adtran-cloud-platform-uiworkflow-device-credentials:read-adtn-cld-pfrm-uiw-dev-crdls"
              ]
            },
            {
              "name": "adtran-cloud-platform-bulk-alarm-count",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-uiworkflow-services-cfm",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-profiles-subscriber-access-control",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-uiworkflow-devices-activate",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-profiles-configuration-storage",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-subscriber-session-manager",
              "permission": [
                "adtran-cloud-platform-subscriber-session-manager:config-sessions",
                "adtran-cloud-platform-subscriber-session-manager:read-subscribers"
              ]
            },
            {
              "name": "adtran-device-connectivity",
              "permission": []
            },
            {
              "name": "adtran-ffui-workboards",
              "permission": [
                "adtran-ffui-workboards:modify-workboards",
                "adtran-ffui-workboards:read-workboards"
              ]
            },
            {
              "name": "adtran-cxui-vqm-interface",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-vssm-gx-statistics",
              "permission": [
                "adtran-cloud-platform-vssm-gx-statistics:gx-stats-perm"
              ]
            },
            {
              "name": "adtran-cloud-platform-profiles-pon-multicast",
              "permission": []
            },
            {
              "name": "adtran-nbi-sysmon",
              "permission": [
                "adtran-nbi-sysmon:sysmon-config",
                "adtran-nbi-sysmon:sysmon-read"
              ]
            },
            {
              "name": "adtran-cloud-platform-marshal-plugins",
              "permission": []
            },
            {
              "name": "adtran-billing-system-management",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-inventory",
              "permission": []
            },
            {
              "name": "adtran-cxui-device-stats",
              "permission": []
            },
            {
              "name": "adtran-nbi-ipaa",
              "permission": [
                "adtran-nbi-ipaa:ipaa-config"
              ]
            },
            {
              "name": "adtran-cloud-platform-uiworkflow-profiles",
              "permission": [
                "adtran-cloud-platform-uiworkflow-profiles:read-profile"
              ]
            },
            {
              "name": "adtran-cloud-platform-network-walk-job",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-profiles-pon-port",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-management-domain-coordination",
              "permission": [
                "adtran-cloud-platform-management-domain-coordination:config-mgmt-domains",
                "adtran-cloud-platform-management-domain-coordination:deploy-mgmt-domains",
                "adtran-cloud-platform-management-domain-coordination:activate-mgmt-domains",
                "adtran-cloud-platform-management-domain-coordination:delete-mgmt-domains",
                "adtran-cloud-platform-management-domain-coordination:undeploy-mgmt-domains",
                "adtran-cloud-platform-management-domain-coordination:deactivate-mgmt-domains"
              ]
            },
            {
              "name": "adtran-cloud-platform-search-labels-by-object",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-maintenance-services",
              "permission": [
                "adtran-cloud-platform-maintenance-services:execute-action",
                "adtran-cloud-platform-maintenance-services:read-action-status"
              ]
            },
            {
              "name": "adtran-captive-portal-services",
              "permission": [
                "adtran-captive-portal-services:read-service",
                "adtran-captive-portal-services:modify-service",
                "adtran-captive-portal-services:read-service-status",
                "adtran-captive-portal-services:configure-service",
                "adtran-captive-portal-services:deploy-service",
                "adtran-captive-portal-services:activate-service",
                "adtran-captive-portal-services:deactivate-service",
                "adtran-captive-portal-services:undeploy-service",
                "adtran-captive-portal-services:delete-service",
                "adtran-captive-portal-services:find-service"
              ]
            },
            {
              "name": "adtran-cloud-platform-profiles-device-software",
              "permission": []
            },
            {
              "name": "adtran-device-proxy-by-name",
              "permission": []
            },
            {
              "name": "adtran-cp-profiles-gfast-line-threshold-profile-body",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-netconf-client-service",
              "permission": [
                "adtran-cloud-platform-netconf-client-service:open-session",
                "adtran-cloud-platform-netconf-client-service:close-session",
                "adtran-cloud-platform-netconf-client-service:read-session",
                "adtran-cloud-platform-netconf-client-service:read-config",
                "adtran-cloud-platform-netconf-client-service:write-config",
                "adtran-cloud-platform-netconf-client-service:delete-config",
                "adtran-cloud-platform-netconf-client-service:subscribe-notifications",
                "adtran-cloud-platform-netconf-client-service:unsubscribe-notifications",
                "adtran-cloud-platform-netconf-client-service:read-schema",
                "adtran-cloud-platform-netconf-client-service:reestablish-session",
                "adtran-cloud-platform-netconf-client-service:get-all-device-sessions",
                "adtran-cloud-platform-netconf-client-service:reboot-device",
                "adtran-cloud-platform-netconf-client-service:execute-rpc"
              ]
            },
            {
              "name": "adtran-captive-portal-types",
              "permission": [
                "adtran-captive-portal-types:read-server-credentials",
                "adtran-captive-portal-types:modify-server-credentials",
                "adtran-captive-portal-types:read-activation-logs",
                "adtran-captive-portal-types:read-user-logs",
                "adtran-captive-portal-types:activate-service"
              ]
            },
            {
              "name": "adtran-dhcp-leases",
              "permission": [
                "adtran-dhcp-leases:read-adtn-dhcp-lease"
              ]
            },
            {
              "name": "adtran-cloud-platform-search-global",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-event-config",
              "permission": []
            },
            {
              "name": "adtran-cloud-platform-diameter-config",
              "permission": [
                "adtran-cloud-platform-diameter-config:diameter-config"
              ]
            }
          ]
        }
      },
      "Module": {
        "title": "Module",
        "required": [
          "name",
          "permission"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "permission": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "name": "adtran-cloud-platform-uiworkflow",
          "permission": [
            "adtran-cloud-platform-uiworkflow:read-uiworkflow-transitions",
            "adtran-cloud-platform-uiworkflow:run-uiworkflow-configure",
            "adtran-cloud-platform-uiworkflow:run-uiworkflow-deploy",
            "adtran-cloud-platform-uiworkflow:run-uiworkflow-undeploy",
            "adtran-cloud-platform-uiworkflow:run-uiworkflow-delete",
            "adtran-cloud-platform-uiworkflow:run-uiworkflow-activate",
            "adtran-cloud-platform-uiworkflow:run-uiworkflow-deactivate",
            "adtran-cloud-platform-uiworkflow:run-uiworkflow-notify",
            "adtran-cloud-platform-uiworkflow:read-uiworkflow-catalog",
            "adtran-cloud-platform-uiworkflow:run-uiworkflow-onboard-device",
            "adtran-cloud-platform-uiworkflow:force-delete"
          ]
        }
      },
      "CreateUserAccountRequest": {
        "title": "CreateUserAccountRequest",
        "required": [
          "username",
          "password"
        ],
        "type": "object",
        "properties": {
          "username": {
            "type": "string"
          },
          "password": {
            "type": "string"
          }
        },
        "example": {
          "username": "SampleUser",
          "password": "SuperSecret1!"
        }
      },
      "CreateUserAccount-Useralreadyexists1": {
        "title": "CreateUserAccount-Useralreadyexists1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "User already exists."
        }
      },
      "CreateUserAccount-MissingMandatoryparam1": {
        "title": "CreateUserAccount-MissingMandatoryparam1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Invalid JSON Content Fields Provided: No usable value for password\nDid not find value which can be converted into java.lang.String"
        }
      },
      "OverridePasswordRequest": {
        "title": "OverridePasswordRequest",
        "required": [
          "username",
          "password"
        ],
        "type": "object",
        "properties": {
          "username": {
            "type": "string"
          },
          "password": {
            "type": "string"
          }
        },
        "example": {
          "username": "SampleUser",
          "password": "SuperSecret1!"
        }
      },
      "OverridePassword-Userdoesnotexist1": {
        "title": "OverridePassword-Userdoesnotexist1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "User Test-Accoun does not exist."
        }
      },
      "ResetPasswordRequest": {
        "title": "ResetPasswordRequest",
        "required": [
          "username",
          "old-password",
          "new-password"
        ],
        "type": "object",
        "properties": {
          "username": {
            "type": "string"
          },
          "old-password": {
            "type": "string"
          },
          "new-password": {
            "type": "string"
          }
        },
        "example": {
          "username": "SampleUser",
          "old-password": "SuperSecret1!",
          "new-password": "SuperSecret2!"
        }
      },
      "ResetPassword-Invalidusernameorpassword1": {
        "title": "ResetPassword-Invalidusernameorpassword1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Supplied username or password is incorrect. Please try again. Multiple failed login attempts may result in your account being temporarily locked."
        }
      },
      "ResetPassword-Invalidnewpassword1": {
        "title": "ResetPassword-Invalidnewpassword1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "minimum password length should be : 8"
        }
      },
      "AssignUsertoUserGroupRequest": {
        "title": "AssignUsertoUserGroupRequest",
        "required": [
          "group"
        ],
        "type": "object",
        "properties": {
          "group": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "group": [
            "users-admin"
          ]
        }
      },
      "RetrieveUsername-Success": {
        "title": "RetrieveUsername-Success",
        "required": [
          "user-type",
          "last-login-time",
          "username",
          "account-status",
          "password-expiration-date",
          "failed-login-attempts",
          "password-expiry-days",
          "account-expiration-date",
          "max-failed-logins",
          "logged-in",
          "password-notice-days",
          "account-lock-period",
          "authorization-mode",
          "authentication-mode",
          "group"
        ],
        "type": "object",
        "properties": {
          "user-type": {
            "type": "string"
          },
          "last-login-time": {
            "type": "string"
          },
          "username": {
            "type": "string"
          },
          "account-status": {
            "type": "string"
          },
          "password-expiration-date": {
            "type": "string"
          },
          "failed-login-attempts": {
            "type": "integer",
            "format": "int32"
          },
          "password-expiry-days": {
            "type": "integer",
            "format": "int32"
          },
          "account-expiration-date": {
            "type": "string"
          },
          "max-failed-logins": {
            "type": "integer",
            "format": "int32"
          },
          "logged-in": {
            "type": "boolean"
          },
          "password-notice-days": {
            "type": "integer",
            "format": "int32"
          },
          "account-lock-period": {
            "type": "integer",
            "format": "int32"
          },
          "authorization-mode": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "authentication-mode": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "group": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "user-type": "internal",
          "last-login-time": "2020-05-05T09:25:19.807Z",
          "username": "Test-Account",
          "account-status": "active",
          "password-expiration-date": "2020-08-03T09:25:19.850Z",
          "failed-login-attempts": 0,
          "password-expiry-days": 90,
          "account-expiration-date": "",
          "max-failed-logins": 5,
          "logged-in": false,
          "password-notice-days": 5,
          "account-lock-period": 5,
          "authorization-mode": [
            "internal"
          ],
          "authentication-mode": [
            "internal"
          ],
          "group": []
        }
      },
      "RetrieveAllUsers-Success": {
        "title": "RetrieveAllUsers-Success",
        "required": [
          "user-type",
          "last-login-time",
          "username",
          "account-status",
          "password-expiration-date",
          "failed-login-attempts",
          "password-expiry-days",
          "account-expiration-date",
          "max-failed-logins",
          "logged-in",
          "password-notice-days",
          "account-lock-period",
          "authorization-mode",
          "authentication-mode",
          "group"
        ],
        "type": "object",
        "properties": {
          "user-type": {
            "type": "string"
          },
          "last-login-time": {
            "type": "string"
          },
          "username": {
            "type": "string"
          },
          "account-status": {
            "type": "string"
          },
          "password-expiration-date": {
            "type": "string"
          },
          "failed-login-attempts": {
            "type": "integer",
            "format": "int32"
          },
          "password-expiry-days": {
            "type": "integer",
            "format": "int32"
          },
          "account-expiration-date": {
            "type": "string"
          },
          "max-failed-logins": {
            "type": "integer",
            "format": "int32"
          },
          "logged-in": {
            "type": "boolean"
          },
          "password-notice-days": {
            "type": "integer",
            "format": "int32"
          },
          "account-lock-period": {
            "type": "integer",
            "format": "int32"
          },
          "authorization-mode": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "authentication-mode": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "group": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "user-type": "internal",
          "last-login-time": "2020-05-05T09:27:31.035Z",
          "username": "ADMIN",
          "account-status": "active",
          "password-expiration-date": "2020-07-31T10:20:49.115Z",
          "failed-login-attempts": 0,
          "password-expiry-days": 90,
          "account-expiration-date": "",
          "max-failed-logins": 5,
          "logged-in": true,
          "password-notice-days": 5,
          "account-lock-period": 5,
          "authorization-mode": [
            "internal"
          ],
          "authentication-mode": [
            "internal"
          ],
          "group": [
            "super-user"
          ]
        }
      },
      "RetrieveAllUsers-Withalldetail": {
        "title": "RetrieveAllUsers-Withalldetail",
        "required": [
          "user-type",
          "last-login-time",
          "username",
          "account-status",
          "password-expiration-date",
          "failed-login-attempts",
          "password-expiry-days",
          "account-expiration-date",
          "max-failed-logins",
          "logged-in",
          "password-notice-days",
          "account-lock-period",
          "authorization-mode",
          "authentication-mode",
          "group"
        ],
        "type": "object",
        "properties": {
          "user-type": {
            "type": "string"
          },
          "last-login-time": {
            "type": "string"
          },
          "username": {
            "type": "string"
          },
          "account-status": {
            "type": "string"
          },
          "password-expiration-date": {
            "type": "string"
          },
          "failed-login-attempts": {
            "type": "integer",
            "format": "int32"
          },
          "password-expiry-days": {
            "type": "integer",
            "format": "int32"
          },
          "account-expiration-date": {
            "type": "string"
          },
          "max-failed-logins": {
            "type": "integer",
            "format": "int32"
          },
          "logged-in": {
            "type": "boolean"
          },
          "password-notice-days": {
            "type": "integer",
            "format": "int32"
          },
          "account-lock-period": {
            "type": "integer",
            "format": "int32"
          },
          "authorization-mode": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "authentication-mode": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "group": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "user-type": "internal",
          "last-login-time": "2020-05-05T09:42:10.330Z",
          "username": "ADMIN",
          "account-status": "active",
          "password-expiration-date": "2020-07-31T10:20:49.115Z",
          "failed-login-attempts": 0,
          "password-expiry-days": 90,
          "account-expiration-date": "",
          "max-failed-logins": 5,
          "logged-in": true,
          "password-notice-days": 5,
          "account-lock-period": 5,
          "authorization-mode": [
            "internal"
          ],
          "authentication-mode": [
            "internal"
          ],
          "group": [
            "super-user"
          ]
        }
      },
      "SetPasswordRequest": {
        "title": "SetPasswordRequest",
        "required": [
          "password"
        ],
        "type": "object",
        "properties": {
          "password": {
            "type": "string"
          }
        },
        "example": {
          "password": "P@ssw1rd"
        }
      },
      "SetPassword-Invalidpasswordvalue1": {
        "title": "SetPassword-Invalidpasswordvalue1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "That password may not be reused yet"
        }
      },
      "LogoutUserRequest": {
        "title": "LogoutUserRequest",
        "required": [
          "username"
        ],
        "type": "object",
        "properties": {
          "username": {
            "type": "string"
          }
        },
        "example": {
          "username": "SampleUser"
        }
      },
      "ExpirePasswordRequest": {
        "title": "ExpirePasswordRequest",
        "required": [
          "username"
        ],
        "type": "object",
        "properties": {
          "username": {
            "type": "string"
          }
        },
        "example": {
          "username": "SampleUser"
        }
      },
      "ExpirePassword-InvalidUser1": {
        "title": "ExpirePassword-InvalidUser1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "User Test-Account1 does not exist."
        }
      },
      "ModifyUser-AAAModesRequest": {
        "title": "ModifyUser-AAAModesRequest",
        "required": [
          "authentication-mode",
          "authorization-mode",
          "accounting-mode"
        ],
        "type": "object",
        "properties": {
          "authentication-mode": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "authorization-mode": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "accounting-mode": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "authentication-mode": [
            "tacacsplus",
            "internal"
          ],
          "authorization-mode": [
            "tacacsplus",
            "internal"
          ],
          "accounting-mode": [
            "radius"
          ]
        }
      },
      "DeleteUserRequest": {
        "title": "DeleteUserRequest",
        "required": [
          "username"
        ],
        "type": "object",
        "properties": {
          "username": {
            "type": "string"
          }
        },
        "example": {
          "username": "SampleUser"
        }
      },
      "Delete-InvalidUser1": {
        "title": "Delete-InvalidUser1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "User Test-User-Account1 does not exist."
        }
      },
      "DeleteUser-AlreadyDeleted1": {
        "title": "DeleteUser-AlreadyDeleted1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "User Test-User-Account does not exist."
        }
      },
      "CreateVendorSpecificAttributeMappingforRadiusRequest": {
        "title": "CreateVendorSpecificAttributeMappingforRadiusRequest",
        "required": [
          "vendor-id",
          "vendor-type",
          "vendor-value",
          "group"
        ],
        "type": "object",
        "properties": {
          "vendor-id": {
            "type": "integer",
            "format": "int32"
          },
          "vendor-type": {
            "type": "integer",
            "format": "int32"
          },
          "vendor-value": {
            "type": "string"
          },
          "group": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "vendor-id": 664,
          "vendor-type": 2,
          "vendor-value": "attribute-name-from-radius-server",
          "group": [
            "edit-device-user",
            "edit-interface-user"
          ]
        }
      },
      "ModifyVendorSpecificAttributeMappingforRadiusRequest": {
        "title": "ModifyVendorSpecificAttributeMappingforRadiusRequest",
        "required": [
          "vendor-id",
          "vendor-type",
          "vendor-value",
          "group"
        ],
        "type": "object",
        "properties": {
          "vendor-id": {
            "type": "integer",
            "format": "int32"
          },
          "vendor-type": {
            "type": "integer",
            "format": "int32"
          },
          "vendor-value": {
            "type": "string"
          },
          "group": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "vendor-id": 664,
          "vendor-type": 2,
          "vendor-value": "attribute-name-from-radius-server",
          "group": [
            "super-user"
          ]
        }
      },
      "GetAccountLogsBetweenDatesandTimeRequest": {
        "title": "GetAccountLogsBetweenDatesandTimeRequest",
        "required": [
          "time-period"
        ],
        "type": "object",
        "properties": {
          "time-period": {
            "$ref": "#/components/schemas/TimePeriod"
          }
        },
        "example": {
          "time-period": {
            "from-time": "2020-01-02T00:00:00.000Z",
            "to-time": "2020-04-02T12:00:00.000Z"
          }
        }
      },
      "TimePeriod": {
        "title": "TimePeriod",
        "required": [
          "from-time",
          "to-time"
        ],
        "type": "object",
        "properties": {
          "from-time": {
            "type": "string"
          },
          "to-time": {
            "type": "string"
          }
        },
        "example": {
          "from-time": "2020-01-02T00:00:00.000Z",
          "to-time": "2020-04-02T12:00:00.000Z"
        }
      },
      "GetAccountLogsBetweenDates": {
        "title": "GetAccountLogsBetweenDates",
        "required": [
          "log-entry",
          "cursor",
          "total-count"
        ],
        "type": "object",
        "properties": {
          "log-entry": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/LogEntry"
            },
            "description": ""
          },
          "cursor": {
            "type": "integer",
            "format": "int32"
          },
          "total-count": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "log-entry": [
            {
              "method": "POST",
              "log-id": "e1165ef5-09be-4a34-ba5f-cebef7daa305",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-auth-accounting:get-filtered-logs",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:51:32+00:00",
              "content": "{\r\n  \"time-period\" : {\r\n    \"from-time\" : \"2020-01-02T00:00:00.000Z\",\r\n    \"to-time\" : \"2020-05-06T12:00:00.000Z\"\r\n  }\r\n}\r\n",
              "ip-address": "172.22.178.20"
            },
            {
              "method": "POST",
              "log-id": "0bd268b6-e43f-4ea9-b309-717a963c094a",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-auth-accounting:get-filtered-logs",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:50:58+00:00",
              "content": "{\r\n  \"time-period\" : {\r\n    \"from-time\" : \"2020-01-02T00:00:00.000Z\",\r\n    \"to-time\" : \"2020-04-02T12:00:00.000Z\"\r\n  }\r\n}\r\n",
              "ip-address": "172.22.178.20"
            },
            {
              "method": "POST",
              "log-id": "32d95ef9-b3bd-4080-b4cb-968be29aec17",
              "username": "{\"message\":\"Failed authentication\"}",
              "uri": "/restconf/operations/adtran-auth-accounting:get-filtered-logs",
              "status-code": "401 Unauthorized",
              "req-time": "2020-05-06T06:50:33+00:00",
              "content": "{\r\n  \"time-period\" : {\r\n    \"from-time\" : \"2020-01-02T00:00:00.000Z\",\r\n    \"to-time\" : \"2020-04-02T12:00:00.000Z\"\r\n  }\r\n}\r\n",
              "ip-address": "172.22.178.20"
            },
            {
              "method": "POST",
              "log-id": "e273be9d-a02f-4965-bd09-34587588b21d",
              "username": "Username Not Provided",
              "uri": "/restconf/operations/adtran-auth-token:request-token",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:50:26+00:00",
              "content": "{\"password\":\"********\",\"username\":\"ADMIN\"}",
              "ip-address": "172.22.178.20"
            },
            {
              "method": "POST",
              "log-id": "fa438e15-004c-414a-94d1-6050b4e80744",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T06:42:06+00:00",
              "content": "{\r\n  \"input\": {\r\n    \"server-context\": {\r\n      \"server-name\": \"Server\",\r\n      \"type\": [\r\n        \"TFTP\"\r\n      ],\r\n      \"credentials-name\": \"Credentials\"\r\n    }\r\n  }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "9b6ad552-6659-4f83-817f-1d39e6c40b2e",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T06:40:56+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field: \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "979b7e5f-2f92-4d77-b84d-f0e0d797ead4",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:40:02+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "96a6082b-5a9b-4d35-ac84-fa323f69bfae",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T06:39:18+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "86549002-14be-4b62-b0ae-35a6560eca15",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T06:38:51+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-fie\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "e541a8a0-8125-4813-bff7-ea2b3b5d2a0a",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T06:36:20+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"missing\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "7dd2fb86-0123-48ab-b60c-3cccdb0bd486",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T06:36:02+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"maj\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "435f7201-fde3-4d67-ad0e-9c8a62bc3fa1",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:35:50+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"sever\",\r\n                \"search-value\": [\r\n                    \"major\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "46d4a339-9b7c-4de9-8061-18039184be3b",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:35:19+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"major\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "314fec6f-5d3d-456d-93ae-c1d145b8db74",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:35:03+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"major\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "c543f9c4-2f2b-4b96-aebb-92e8c66a40eb",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:34:52+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "1d588c06-5eb8-4142-99fb-0b5d4c04dd42",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T06:34:37+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": true,\r\n        \"curs\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "03cd9a62-7b08-485f-acad-138334c52a24",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:34:19+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": true,\r\n        \"cursor\": 0,\r\n        \"result-size\": 344555555555,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "e7b6464e-c004-4941-bb6e-504ae99f0287",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:34:06+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": true,\r\n        \"cursor\": 0,\r\n        \"result-size\": -1,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "GET",
              "log-id": "370c8fb7-6a4f-4561-b742-421b1a229503",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow:transitions/transition=3b2c4ba3-9022-4700-8142-16553c2cbf70",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:33:57+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "0aaa05bd-d806-482b-b991-0ac2420c6998",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:delete",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:33:56+00:00",
              "content": "{\"input\":{\"server-context\":{\"server-name\":\"1\"}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "541d8ecc-ec8c-4f55-bc34-f4ee15a8a535",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow:transitions/transition=af5c3331-c339-4985-89f4-7caebbc8d19b",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:33:52+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "f50e22fa-ea34-41df-9e7c-36a2570a69be",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:undeploy",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:33:51+00:00",
              "content": "{\"input\":{\"server-context\":{\"server-name\":\"1\"}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "fe0c1d80-49f0-49ad-97d8-7d6318f7d467",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow:transitions/transition=94fe85fb-128a-4806-b0f6-322af1eead3b",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:33:12+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "b874fdd7-90d9-4d85-8c9f-555bd46aef5a",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deploy",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:33:11+00:00",
              "content": "{\"input\":{\"server-context\":{\"server-name\":\"1\",\"host-ip\":\"1.1.1.1\",\"port\":\"1\",\"data-center-name\":\"Data Center\"}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "9c3208b1-62be-48a4-834c-01079af32b09",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:33:10+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"Data Center\",\"object-type\":\"data-center\",\"search-field\":\"data-center-name\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "c813398d-a940-468a-90cb-f790afe56d0b",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:58+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"data-center-name\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "63d5425b-cfec-48d4-be27-18b70b34d369",
              "username": "ADMIN",
              "uri": "/restconf/data-filter/adtran-cloud-platform-uiworkflow-credentials:credentials/credential",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:56+00:00",
              "content": "{\"credentials#like\":{\"field\":\"name\",\"keyword\":\"\",\"threshold\":0.1,\"target\":\"score\"}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "3676192f-16c1-4ffc-a76d-b8889dcce06b",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-servers:servers/available-type",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:56+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "95e87c9b-8d3a-4438-b71f-f12ce782b5ee",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-servers:servers/server=1",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:55+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "f9fa9394-306a-4f89-a4a6-b2da9d2bf8b7",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-servers:servers/server=1",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:55+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "1256964d-a868-443c-a62d-2ba8dac26919",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow:transitions/transition=5f705111-f3b8-4104-9eec-7a8490853984",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:54+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "8d11ae3f-8c1e-4ea0-9158-2b7021a0363d",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:52+00:00",
              "content": "{\"input\":{\"server-context\":{\"server-name\":\"1\",\"type\":[\"TFTP\"]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "82aa24ec-5426-4c0c-b41a-588514e2e6e2",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-servers:servers/available-type",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:47+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "2013ae9f-6dd6-427d-8cad-1809d3fdf7b9",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-servers:servers/available-type",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:47+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "0b0eebe4-6230-4e32-aee8-afe93fd082b7",
              "username": "ADMIN",
              "uri": "/restconf/data-filter/adtran-cloud-platform-uiworkflow-credentials:credentials/credential",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:45+00:00",
              "content": "{\"credentials#like\":{\"field\":\"name\",\"keyword\":\"\",\"threshold\":0.1,\"target\":\"score\"}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "332b3bcc-726e-4d55-9a13-e717cf38624f",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:44+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"data-center-name\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "3be31646-afc4-47a4-a02e-ac9eadb8f8bb",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-force-actions:force-actions/force-action=server",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:43+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "7b794def-b098-465f-88bd-10882e168a68",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-servers:servers/available-type",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:43+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "7e350675-e785-420b-850e-4c8c0b25e4f4",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:10+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "a62ee6cd-7771-4572-b6c5-92d3de80afba",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:10+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "af0048a1-cccf-4dcb-a783-e50a2d65f1ca",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:08+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "eced01fc-8a83-4186-976b-193da6fada22",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:08+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "ab80f8ba-0fd9-4c31-b71e-5d403c546562",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-force-actions:force-actions/force-action=server",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:58+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "cd15cec1-4b1e-4096-8fdc-4bec6cd3e404",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-servers:servers/available-type",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:58+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "3c2ff2a2-8efe-4478-bca6-5dae0783c700",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:58+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"data-center-name\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "79c6b3a6-4fca-4fe9-a146-47873f95709e",
              "username": "ADMIN",
              "uri": "/restconf/data-filter/adtran-cloud-platform-uiworkflow-credentials:credentials/credential",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:58+00:00",
              "content": "{\"credentials#like\":{\"field\":\"name\",\"keyword\":\"\",\"threshold\":0.1,\"target\":\"score\"}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "a90deb60-e82c-4a48-bda1-b536d6e45232",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:50+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "1615b12a-e44e-46fd-b55d-4babc036564c",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:48+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "8a1a8230-775b-4623-88c4-04cea89d6b5c",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:48+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "c77bc5ad-b7cd-44fb-9af4-355d263dc903",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T06:31:44+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"current\": true,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "ce7aacc0-56c3-4458-b30d-38a365572a22",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:34+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "8831f2b0-19e6-47fa-886f-6473752b7421",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:34+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "c233e190-ad5e-42e3-a92f-6d1dd3c46051",
              "username": "Username Not Provided",
              "uri": "/restconf/operations/adtran-auth-token:request-token",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:32+00:00",
              "content": "{\"password\":\"********\",\"username\":\"ADMIN\"}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "4ca5ff05-f5f1-4fbf-a01c-68d332d01fe1",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:32+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "6e11e228-538e-46de-a058-240bf1f71dc6",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-event-summary",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:32+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"exact-match\":true}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "db6a5810-8d03-43c6-9135-2953e75390f1",
              "username": "Username Not Provided",
              "uri": "/restconf/data/adtran-launchpad-login:login-screen",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:31+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "bb72f0ea-8bb5-4b88-9943-5a393af31149",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T06:24:38+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"current\": true,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "845c0db4-2ef5-4a8b-9658-1b893db6c0a7",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:24:24+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"current\": true,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "c0c08e31-3130-4b47-8fcb-2f2d38f42368",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow-jobs:get-job-context",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:23:33+00:00",
              "content": "{\"input\":{\"action-name\":\"Download\"}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "6babd527-6ccc-45d5-b6de-6f29812a2d15",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:23:33+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"name\",\"extra-search-fields\":[{\"field\":\"state\",\"value-list\":[\"deployed\",\"activated\"]}]}}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "f3aa7b11-306b-4977-ab4b-448587ed0c5c",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:23:33+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":100,\"search-term\":\"\",\"object-type\":\"profile\",\"search-field\":\"name\",\"extra-search-fields\":[{\"field\":\"state\",\"value-list\":[\"deployed\",\"activated\"]},{\"field\":\"type\",\"value-list\":[\"device-software-profile\"]}]}}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "GET",
              "log-id": "400b134f-ae44-4fcc-ba57-dbd6797c2a4b",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-jobs:triggers",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:23:16+00:00",
              "content": "",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "272087aa-1439-48cf-80d5-13daf2f3034f",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow-jobs:get-job-context",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:23:15+00:00",
              "content": "{\"input\":{\"action-name\":null}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "GET",
              "log-id": "c9418972-cef5-45c3-a835-ed85dcc808f6",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-jobs:actions",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:23:15+00:00",
              "content": "",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "3ab7e1fb-2eb9-4a39-bdbb-8828df83f7bf",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:23:10+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"device\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "ec359d45-cf41-486a-920a-56d4e0bf5e13",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:23:09+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"device\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "fb4f57e1-143b-4704-8051-56f334f64cb6",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:23:09+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"device\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "05f5725d-2ec3-49d0-8f2f-35cb72963c5a",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow-jobs:get-job-context",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:22:32+00:00",
              "content": "{\"input\":{\"action-name\":\"Reflow Device\"}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "0e5efd6a-8985-400d-97ae-9b0729f23ffd",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow-jobs:get-job-context",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:22:25+00:00",
              "content": "{\"input\":{\"action-name\":null}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "25387e48-703e-4a1f-96b8-7f6ff0f73796",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:22:21+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":100,\"search-term\":\"\",\"object-type\":\"service\",\"search-field\":\"service-id\",\"extra-search-fields\":[{\"field\":\"state\",\"value-list\":[\"deployed\",\"activated\"]}]}}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "503a23bd-00e3-4216-b13f-0073953796dd",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T06:22:21+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-fie\": \"severity\",\r\n        \"current\": true,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-fie\": \"severity\",\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "2e0c1ee4-4301-4492-8017-4fcd6850f1b9",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow-jobs:get-job-context",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:22:07+00:00",
              "content": "{\"input\":{\"action-name\":\"Reflow Service\"}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "c97a4be7-1540-4b9e-a0c7-0079b71d71df",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T06:21:53+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-fie\": \"state\",\r\n        \"current\": true,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-fie\": \"state\",\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "GET",
              "log-id": "1d95ca48-35a4-4626-970b-1c7de6732859",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-jobs:triggers",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:21:34+00:00",
              "content": "",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "GET",
              "log-id": "2e0d5d21-8a02-4f0b-b33d-cd82171a157c",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-jobs:actions",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:21:34+00:00",
              "content": "",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "beacb433-6d17-471f-93c3-f89464221800",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow-jobs:get-job-context",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:21:32+00:00",
              "content": "{\"input\":{\"action-name\":null}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "0939768f-29d1-4aef-9d11-2f01ac00a78c",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:21:17+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "7fa72be7-4926-49a0-a41d-ccc83a396138",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:21:17+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "9380cb84-153b-48b2-a3a7-bd3e3c21da5b",
              "username": "Username Not Provided",
              "uri": "/restconf/operations/adtran-auth-token:request-token",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:21:16+00:00",
              "content": "{\"password\":\"********\",\"username\":\"ADMIN\"}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "9bc58034-e0bb-4e00-9205-cb63aff8fc78",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-event-summary",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:21:16+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"exact-match\":true}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "cb06c00b-f75d-4f1b-87f7-d7b6abd7083e",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:21:16+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "GET",
              "log-id": "1ed83d1d-058e-48b9-a968-816b8f93e26a",
              "username": "Username Not Provided",
              "uri": "/restconf/data/adtran-launchpad-login:login-screen",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:21:15+00:00",
              "content": "",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "GET",
              "log-id": "0a31b1ef-76f5-4deb-bb43-5d85c8c2420c",
              "username": "Username Not Provided",
              "uri": "/restconf/data/adtran-launchpad-login:login-screen",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:21:02+00:00",
              "content": "",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "GET",
              "log-id": "28fa51e9-cce9-47e1-8ba5-cf1c8f229adf",
              "username": "Username Not Provided",
              "uri": "/restconf/data/adtran-launchpad-login:login-screen",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:20:59+00:00",
              "content": "",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "GET",
              "log-id": "e992cec0-412e-40ca-891b-11ea8d5e2ae7",
              "username": "Username Not Provided",
              "uri": "/restconf/data/adtran-feature-flags:feature-flags",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:20:57+00:00",
              "content": "",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "GET",
              "log-id": "e8b2cf43-ed0a-46ff-838e-459fd099ccc3",
              "username": "Username Not Provided",
              "uri": "/restconf/data/adtran-launchpad-login:login-screen",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:20:37+00:00",
              "content": "",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "GET",
              "log-id": "9a93fc6a-9584-4379-9c0a-d27aa932c292",
              "username": "Username Not Provided",
              "uri": "/restconf/data/adtran-launchpad-login:login-screen",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:20:35+00:00",
              "content": "",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "GET",
              "log-id": "c29d2f4f-07ca-46ab-877d-7522073604a0",
              "username": "Username Not Provided",
              "uri": "/restconf/data/adtran-feature-flags:feature-flags",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:20:34+00:00",
              "content": "",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "GET",
              "log-id": "7c52cb34-8a97-41b1-a024-c80e0475fef4",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-data-centers:data-centers/data-center=Data%20Center",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:18:05+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "73fcb00c-3074-4a9a-be8f-e7aaaf76262d",
              "username": "{\"message\":\"Invalid token\"}",
              "uri": "/restconf/operations/adtran-auth-token:release-token",
              "status-code": "401 Unauthorized",
              "req-time": "2020-05-06T06:17:59+00:00",
              "content": "{}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "ae8b0d5c-43b6-49a5-81b4-9f18212cb051",
              "username": "Username Not Provided",
              "uri": "/restconf/data/adtran-launchpad-login:login-screen",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:17:59+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "ce5b34af-0e0e-41d5-87e7-0bbf9afedb97",
              "username": "{\"message\":\"Invalid token\"}",
              "uri": "/restconf/operations/adtran-auth-token:release-token",
              "status-code": "401 Unauthorized",
              "req-time": "2020-05-06T06:17:58+00:00",
              "content": "{}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "a97b4920-3036-4973-9801-5dcaf0352d50",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-data-centers:data-centers/data-center=Data-Center",
              "status-code": "404 Not Found",
              "req-time": "2020-05-06T06:17:57+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "36ad2390-4ded-4939-8144-50651aa2e41b",
              "username": "{\"message\":\"Anonymous access not authorized\"}",
              "uri": "/restconf/data/adtran-cloud-platform-data-centers:data-centers/data-center=Data-Center",
              "status-code": "401 Unauthorized",
              "req-time": "2020-05-06T06:17:51+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "c3129d6a-f172-4321-bc8c-bcf1a980d3fa",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-data-centers:data-centers/data-center",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:48:32+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "05f04aa9-5558-431a-a5ce-24eaa806ef52",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-data-centers:data-centers/data-center",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:48:14+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "18447a00-f2f8-43cd-af8c-7f530b5bc2b7",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:activate",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:47:27+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "2ce89b2b-c301-48e3-9f2a-ee1bc540c00f",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deploy",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:47:06+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n           \"availability\" : \"available\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "e9a6105b-14e7-479e-910b-3c0bda261e73",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T05:46:59+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n           \"availability\" : \"available\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "0f801d6a-cdd1-45c8-b46d-e9ab2193930d",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:46:28+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n            \"type\" : \"Generic\",\r\n            \"profile-vector-name\" : \"\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "6e1b01c0-0ada-48fa-b399-d47ba4799f25",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:45:46+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "a942a399-1a24-4967-841d-a045f06bdb49",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:45:46+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "93afbb02-10fd-40fb-a345-10adbfed4efa",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:45:46+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "3cfd9859-5708-44d7-98cf-ada309cfff4a",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:45:45+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"management-domain\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "f38b517f-9005-4ceb-93b3-af9fd394fc40",
              "username": "{\"message\":\"All authorization methods failed\"}",
              "uri": "/restconf/data/adtran-cloud-platform-data-centers:data-centers/Data%20Center",
              "status-code": "404 Not Found",
              "req-time": "2020-05-06T05:45:29+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "e61e1a2f-5267-4e01-a2d1-9fe237212caf",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-data-centers:data-centers/data-center",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:45:15+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "990b1606-1881-4b3d-b4c1-0cd8197e5d67",
              "username": "{\"message\":\"Anonymous access not authorized\"}",
              "uri": "/restconf/data/adtran-cloud-platform-data-centers:data-centers/data-center",
              "status-code": "401 Unauthorized",
              "req-time": "2020-05-06T05:45:04+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "c570a2fb-38bb-490c-8678-c0b5d9be6a35",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:42:44+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "d6f1b6fa-edb1-41e9-8c3b-5898950af9f9",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:42:44+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "14bc8174-d644-40fe-bfd2-a6a550b51c06",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-manifests:versions",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:29:32+00:00",
              "content": "",
              "ip-address": "172.22.178.244"
            },
            {
              "method": "POST",
              "log-id": "2422fe05-ec29-4a78-bdf2-4a2dfae4769d",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:delete",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:28:50+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "bfff6437-7f8d-48eb-9892-8c19f298b40b",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:delete",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:27:36+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "428e0f6c-971b-4217-9898-b8decef66ff6",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:delete",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:26:56+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center1\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "cb064332-9d23-41bf-af66-5a60416385c9",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:undeploy",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:25:25+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "39319b84-41b2-450b-a372-be3a6f5954e1",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:24:59+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "c56d8541-2285-4daf-a294-bfe2accc672f",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:24:59+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "1a9d8dc8-23ce-4e1f-9532-7c050af01a18",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:undeploy",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:24:52+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "2c616db5-1e7c-4d55-acfa-27fe51499be0",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:undeploy",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:24:11+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center1\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "da310555-d4f4-4ac8-9eaa-56ac16ce45a6",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:undeploy",
              "status-code": "405 Method Not Allowed",
              "req-time": "2020-05-06T05:24:00+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Cente1r\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "3d2aea3b-d419-4e48-9c7a-4356c5238931",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deactivate",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:15:58+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "1060cebe-2bc9-46f6-b864-0b9123d2e95f",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deactivate",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:15:36+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "682e314c-dd2e-49ae-b86e-3a3162816ead",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deactivate",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:15:00+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center1\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "60dd0071-3918-4fdc-abfa-312baef2ba93",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:activate",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:11:15+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "ed790d2e-8b8e-437a-90d0-18996441d493",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deactivate",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:11:09+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "7a47f030-c19b-47a5-8da1-c32777dce510",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:activate",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:10:45+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "da2f71c7-40ab-496b-b422-6c9916b1006f",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:10:21+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "24e059d4-3c83-419c-b06b-1decf5a1dd0c",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:10:19+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"content-provider\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "4f8bbf08-56c7-4813-a398-396e9516f381",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:10:19+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "456e9811-5b89-4999-89c1-a2c8b36d0308",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:10:19+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "9f22d9c9-9f38-4ebe-8aae-2a4479692a25",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:activate",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:10:13+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "9ff9a477-e0bb-4633-913d-ec678aa3e901",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:activate",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:09:36+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center1\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "07dfe00d-0c32-4678-a8ee-57c47bb615cf",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deploy",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:03:20+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n           \"availability\" : \"available\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "c5aaeb4d-450b-4f98-9af8-e43f0c4932c1",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deploy",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:02:55+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center1\",\r\n           \"availability\" : \"available\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "730cfbc1-a93f-43f1-a5d6-63733f72ad44",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:undeploy",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:02:33+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "d08d2cdd-1957-47da-9000-79d9eabbf543",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deploy",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:01:56+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n           \"availability\" : \"available\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "8687bdaa-a5cc-48c1-b22c-3648612ef793",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:01:04+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "c9d68a1d-0298-461f-ae1b-cecdb095f1ff",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deploy",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:00:55+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n           \"availability\" : \"available\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "1e65bbd9-d01f-4fa0-83dd-47024134ab02",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deploy",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:00:47+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center2\",\r\n           \"availability\" : \"available\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "4f746489-eda0-47e7-b83d-1af531cd1304",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deploy",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:00:29+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center 2\",\r\n           \"availability\" : \"available\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "dafa2b00-6d24-41cb-a496-05cac34ba4bb",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:49:25+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n            \"type\" : \"Generic\",\r\n            \"profile-vector-name\" : \"\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "7ee8d9d7-a893-47a9-82f0-4c360c2cb8a9",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T04:49:02+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n            \"types\" : \"Generic\",\r\n            \"profile-vector-name\" : \"\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "f15c9b10-9dc3-492e-bf20-f5f1097e6d86",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:delete",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:48:15+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "121418ba-4b37-4df3-9ed8-5693255164b9",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:47:54+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "5a24b044-070a-483c-80c1-582e6037d9a7",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:40:44+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n            \"type\" : \"Generic\",\r\n            \"profile-vector-names\" : \"\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "49a55c6e-83fb-4d26-b996-1ac767ecf16c",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T04:40:37+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n            \"types\" : \"Generic\",\r\n            \"profile-vector-names\" : \"\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "f08839ba-8b99-40ca-a4a8-8ec5ca6ccde7",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T04:40:21+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n            \"types\" : \"Generic\",\r\n            \"profile-vector-name\" : \"\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "935e96c0-5f3c-46d9-bef4-59ca486aad00",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:delete",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:39:25+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "37e6c112-f751-4b19-9eaa-3d5e78d50f65",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:39:02+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n            \"type\" : \"Generic\",\r\n            \"profile-vector-name\" : \"Vector Name\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "d50d4e7b-3f49-45d2-a853-d91f3a2e05fe",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:delete",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:38:31+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "11d966b7-5fd0-4a89-9a3e-dc7cda5cbc74",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:37:26+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n            \"type\" : \"GenericCase\",\r\n            \"profile-vector-name\" : \"\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "5da9e31e-74af-4f86-88d0-55d52c3c64b5",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:36:34+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "96220e7a-9ef2-4494-9510-a0f55ae09136",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:36:34+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "a2364a72-9ba7-42a2-9175-3b864858f89c",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:delete",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:36:28+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Centre\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "b1c22992-da7b-416c-97d7-43109573dfea",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:undeploy",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T04:36:12+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Centre\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "4a12cd9e-d2f1-437a-b376-bc88a7ae5ee5",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T04:35:02+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Centre\",\r\n            \"type\" : \"Generic\",\r\n            \"profile-vector-name\" : \"\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "44a89a3f-f5f2-46b5-9a75-65e869787bf6",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:46+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "794ba004-9916-4faa-8c97-f1be3fc3a1d0",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:45+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "556818aa-1962-475c-84f5-12e62f9ab027",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:45+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "37d8c035-ff18-4580-8706-34833719e8d9",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:44+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "1751b179-40ef-4ed9-902b-04017ff60ab1",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:44+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "9fb63ff7-47c6-452a-ad6f-d73a5af5cfaf",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:44+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "77727a27-de44-441c-b41a-446c9e1a68a5",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:35+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Centre\",\r\n            \"type\" : \"Generic\",\r\n            \"profile-vector-name\" : \"\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "2716ef60-2c2e-479b-b735-769e1e596f67",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:29+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "ca4a33a1-5dc3-4b4b-a3b3-f6620b382860",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-event-summary",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:27+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"exact-match\":true}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "72dddde9-3ffd-4de1-9178-497f6673ac07",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:27+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "bdf9a7d9-c33a-4438-b449-eee0f0bd2eb8",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:27+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "f803fc87-2ed5-4f4b-9ad0-bfe8da591c55",
              "username": "Username Not Provided",
              "uri": "/restconf/data/adtran-launchpad-login:login-screen",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:26+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "07d565b7-f91d-4e90-9def-c041c28866e1",
              "username": "Username Not Provided",
              "uri": "/restconf/operations/adtran-auth-token:request-token",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:26+00:00",
              "content": "{\"password\":\"********\",\"username\":\"ADMIN\"}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "4cc7546a-6857-4799-aac4-b27f1da45499",
              "username": "Username Not Provided",
              "uri": "/restconf/operations/adtran-auth-user:reset-password",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:25+00:00",
              "content": "{\"new-password\":\"********\",\"old-password\":\"********\",\"username\":\"ADMIN\"}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "2852d80f-ff94-4e28-916b-d69f8e580b09",
              "username": "Username Not Provided",
              "uri": "/restconf/data/adtran-launchpad-login:login-screen",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:16+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "bca8bfcc-3b59-438a-bd68-c25694b640ed",
              "username": "Username Not Provided",
              "uri": "/restconf/operations/adtran-auth-token:request-token",
              "status-code": "401 Unauthorized",
              "req-time": "2020-05-06T04:33:16+00:00",
              "content": "{\"password\":\"********\",\"username\":\"ADMIN\"}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "c7dea737-ac75-4e1a-8f1e-a863deecbc00",
              "username": "Username Not Provided",
              "uri": "/restconf/data/adtran-launchpad-login:login-screen",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:07+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "1f00abcd-1cfa-4529-b1d1-38d6ae19ce26",
              "username": "Username Not Provided",
              "uri": "/restconf/operations/adtran-auth-token:request-token",
              "status-code": "401 Unauthorized",
              "req-time": "2020-05-06T04:33:07+00:00",
              "content": "{\"password\":\"********\",\"username\":\"ADMIN\"}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "ded01199-9be8-4354-ae0c-4ae1e3bbbcac",
              "username": "Username Not Provided",
              "uri": "/restconf/data/adtran-launchpad-login:login-screen",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:32:34+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "e2acbb30-6e7a-4411-8eae-2bf2652ba99b",
              "username": "Username Not Provided",
              "uri": "/restconf/data/adtran-launchpad-login:login-screen",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:32:31+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "55955e4d-e1e2-4439-9dc5-19b945121535",
              "username": "Username Not Provided",
              "uri": "/restconf/data/adtran-feature-flags:feature-flags",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:32:30+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "7589b971-9ab2-4d5d-a788-940ec9d97421",
              "username": "{\"message\":\"Failed authentication\"}",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "401 Unauthorized",
              "req-time": "2020-05-06T04:31:47+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Centre\",\r\n            \"type\" : \"Generic\",\r\n            \"profile-vector-name\" : \"\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "15a68fc0-ba57-4939-af6e-7e50eea85b58",
              "username": "{\"message\":\"Anonymous access not authorized\"}",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "401 Unauthorized",
              "req-time": "2020-05-06T04:31:34+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Centre\",\r\n            \"type\" : \"Generic\",\r\n            \"profile-vector-name\" : \"\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            }
          ],
          "cursor": 178,
          "total-count": 178
        }
      },
      "LogEntry": {
        "title": "LogEntry",
        "required": [
          "method",
          "log-id",
          "username",
          "uri",
          "status-code",
          "req-time",
          "content",
          "ip-address"
        ],
        "type": "object",
        "properties": {
          "method": {
            "type": "string"
          },
          "log-id": {
            "type": "string"
          },
          "username": {
            "type": "string"
          },
          "uri": {
            "type": "string"
          },
          "status-code": {
            "type": "string"
          },
          "req-time": {
            "type": "string"
          },
          "content": {
            "type": "string"
          },
          "ip-address": {
            "type": "string"
          }
        },
        "example": {
          "method": "POST",
          "log-id": "e1165ef5-09be-4a34-ba5f-cebef7daa305",
          "username": "ADMIN",
          "uri": "/restconf/operations/adtran-auth-accounting:get-filtered-logs",
          "status-code": "200 OK",
          "req-time": "2020-05-06T06:51:32+00:00",
          "content": "{\r\n  \"time-period\" : {\r\n    \"from-time\" : \"2020-01-02T00:00:00.000Z\",\r\n    \"to-time\" : \"2020-05-06T12:00:00.000Z\"\r\n  }\r\n}\r\n",
          "ip-address": "172.22.178.20"
        }
      },
      "GetAccountLogsPerUserRequest": {
        "title": "GetAccountLogsPerUserRequest",
        "required": [
          "username"
        ],
        "type": "object",
        "properties": {
          "username": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "username": [
            "SampleUser"
          ]
        }
      },
      "GetAccountLogsPerUser": {
        "title": "GetAccountLogsPerUser",
        "required": [
          "log-entry",
          "cursor",
          "total-count"
        ],
        "type": "object",
        "properties": {
          "log-entry": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/LogEntry"
            },
            "description": ""
          },
          "cursor": {
            "type": "integer",
            "format": "int32"
          },
          "total-count": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "log-entry": [
            {
              "method": "POST",
              "log-id": "2c3ff4e9-e2f9-4192-82e7-41ad742adfa5",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-auth-accounting:get-filtered-logs",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:51:43+00:00",
              "content": "{\r\n  \"time-period\" : {\r\n    \"from-time\" : \"2020-01-02T00:00:00.000Z\",\r\n    \"to-time\" : \"2020-07-06T12:00:00.000Z\"\r\n  }\r\n}\r\n",
              "ip-address": "172.22.178.20"
            },
            {
              "method": "POST",
              "log-id": "e1165ef5-09be-4a34-ba5f-cebef7daa305",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-auth-accounting:get-filtered-logs",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:51:32+00:00",
              "content": "{\r\n  \"time-period\" : {\r\n    \"from-time\" : \"2020-01-02T00:00:00.000Z\",\r\n    \"to-time\" : \"2020-05-06T12:00:00.000Z\"\r\n  }\r\n}\r\n",
              "ip-address": "172.22.178.20"
            },
            {
              "method": "POST",
              "log-id": "0bd268b6-e43f-4ea9-b309-717a963c094a",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-auth-accounting:get-filtered-logs",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:50:58+00:00",
              "content": "{\r\n  \"time-period\" : {\r\n    \"from-time\" : \"2020-01-02T00:00:00.000Z\",\r\n    \"to-time\" : \"2020-04-02T12:00:00.000Z\"\r\n  }\r\n}\r\n",
              "ip-address": "172.22.178.20"
            },
            {
              "method": "POST",
              "log-id": "fa438e15-004c-414a-94d1-6050b4e80744",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T06:42:06+00:00",
              "content": "{\r\n  \"input\": {\r\n    \"server-context\": {\r\n      \"server-name\": \"Server\",\r\n      \"type\": [\r\n        \"TFTP\"\r\n      ],\r\n      \"credentials-name\": \"Credentials\"\r\n    }\r\n  }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "9b6ad552-6659-4f83-817f-1d39e6c40b2e",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T06:40:56+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field: \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "979b7e5f-2f92-4d77-b84d-f0e0d797ead4",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:40:02+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "96a6082b-5a9b-4d35-ac84-fa323f69bfae",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T06:39:18+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "86549002-14be-4b62-b0ae-35a6560eca15",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T06:38:51+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-fie\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "e541a8a0-8125-4813-bff7-ea2b3b5d2a0a",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T06:36:20+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"missing\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "7dd2fb86-0123-48ab-b60c-3cccdb0bd486",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T06:36:02+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"maj\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "435f7201-fde3-4d67-ad0e-9c8a62bc3fa1",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:35:50+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"sever\",\r\n                \"search-value\": [\r\n                    \"major\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "46d4a339-9b7c-4de9-8061-18039184be3b",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:35:19+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"major\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "314fec6f-5d3d-456d-93ae-c1d145b8db74",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:35:03+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"major\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "c543f9c4-2f2b-4b96-aebb-92e8c66a40eb",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:34:52+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "1d588c06-5eb8-4142-99fb-0b5d4c04dd42",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T06:34:37+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": true,\r\n        \"curs\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "03cd9a62-7b08-485f-acad-138334c52a24",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:34:19+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": true,\r\n        \"cursor\": 0,\r\n        \"result-size\": 344555555555,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "e7b6464e-c004-4941-bb6e-504ae99f0287",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:34:06+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": true,\r\n        \"cursor\": 0,\r\n        \"result-size\": -1,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "GET",
              "log-id": "370c8fb7-6a4f-4561-b742-421b1a229503",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow:transitions/transition=3b2c4ba3-9022-4700-8142-16553c2cbf70",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:33:57+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "0aaa05bd-d806-482b-b991-0ac2420c6998",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:delete",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:33:56+00:00",
              "content": "{\"input\":{\"server-context\":{\"server-name\":\"1\"}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "541d8ecc-ec8c-4f55-bc34-f4ee15a8a535",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow:transitions/transition=af5c3331-c339-4985-89f4-7caebbc8d19b",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:33:52+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "f50e22fa-ea34-41df-9e7c-36a2570a69be",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:undeploy",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:33:51+00:00",
              "content": "{\"input\":{\"server-context\":{\"server-name\":\"1\"}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "fe0c1d80-49f0-49ad-97d8-7d6318f7d467",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow:transitions/transition=94fe85fb-128a-4806-b0f6-322af1eead3b",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:33:12+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "b874fdd7-90d9-4d85-8c9f-555bd46aef5a",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deploy",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:33:11+00:00",
              "content": "{\"input\":{\"server-context\":{\"server-name\":\"1\",\"host-ip\":\"1.1.1.1\",\"port\":\"1\",\"data-center-name\":\"Data Center\"}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "9c3208b1-62be-48a4-834c-01079af32b09",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:33:10+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"Data Center\",\"object-type\":\"data-center\",\"search-field\":\"data-center-name\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "c813398d-a940-468a-90cb-f790afe56d0b",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:58+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"data-center-name\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "63d5425b-cfec-48d4-be27-18b70b34d369",
              "username": "ADMIN",
              "uri": "/restconf/data-filter/adtran-cloud-platform-uiworkflow-credentials:credentials/credential",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:56+00:00",
              "content": "{\"credentials#like\":{\"field\":\"name\",\"keyword\":\"\",\"threshold\":0.1,\"target\":\"score\"}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "3676192f-16c1-4ffc-a76d-b8889dcce06b",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-servers:servers/available-type",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:56+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "95e87c9b-8d3a-4438-b71f-f12ce782b5ee",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-servers:servers/server=1",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:55+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "f9fa9394-306a-4f89-a4a6-b2da9d2bf8b7",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-servers:servers/server=1",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:55+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "1256964d-a868-443c-a62d-2ba8dac26919",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow:transitions/transition=5f705111-f3b8-4104-9eec-7a8490853984",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:54+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "8d11ae3f-8c1e-4ea0-9158-2b7021a0363d",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:52+00:00",
              "content": "{\"input\":{\"server-context\":{\"server-name\":\"1\",\"type\":[\"TFTP\"]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "82aa24ec-5426-4c0c-b41a-588514e2e6e2",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-servers:servers/available-type",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:47+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "2013ae9f-6dd6-427d-8cad-1809d3fdf7b9",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-servers:servers/available-type",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:47+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "0b0eebe4-6230-4e32-aee8-afe93fd082b7",
              "username": "ADMIN",
              "uri": "/restconf/data-filter/adtran-cloud-platform-uiworkflow-credentials:credentials/credential",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:45+00:00",
              "content": "{\"credentials#like\":{\"field\":\"name\",\"keyword\":\"\",\"threshold\":0.1,\"target\":\"score\"}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "332b3bcc-726e-4d55-9a13-e717cf38624f",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:44+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"data-center-name\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "3be31646-afc4-47a4-a02e-ac9eadb8f8bb",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-force-actions:force-actions/force-action=server",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:43+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "7b794def-b098-465f-88bd-10882e168a68",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-servers:servers/available-type",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:43+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "7e350675-e785-420b-850e-4c8c0b25e4f4",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:10+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "a62ee6cd-7771-4572-b6c5-92d3de80afba",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:10+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "af0048a1-cccf-4dcb-a783-e50a2d65f1ca",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:08+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "eced01fc-8a83-4186-976b-193da6fada22",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:08+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "ab80f8ba-0fd9-4c31-b71e-5d403c546562",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-force-actions:force-actions/force-action=server",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:58+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "cd15cec1-4b1e-4096-8fdc-4bec6cd3e404",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-servers:servers/available-type",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:58+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "3c2ff2a2-8efe-4478-bca6-5dae0783c700",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:58+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"data-center-name\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "79c6b3a6-4fca-4fe9-a146-47873f95709e",
              "username": "ADMIN",
              "uri": "/restconf/data-filter/adtran-cloud-platform-uiworkflow-credentials:credentials/credential",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:58+00:00",
              "content": "{\"credentials#like\":{\"field\":\"name\",\"keyword\":\"\",\"threshold\":0.1,\"target\":\"score\"}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "a90deb60-e82c-4a48-bda1-b536d6e45232",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:50+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "1615b12a-e44e-46fd-b55d-4babc036564c",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:48+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "8a1a8230-775b-4623-88c4-04cea89d6b5c",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:48+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "c77bc5ad-b7cd-44fb-9af4-355d263dc903",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T06:31:44+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"current\": true,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "ce7aacc0-56c3-4458-b30d-38a365572a22",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:34+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "8831f2b0-19e6-47fa-886f-6473752b7421",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:34+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "4ca5ff05-f5f1-4fbf-a01c-68d332d01fe1",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:32+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "6e11e228-538e-46de-a058-240bf1f71dc6",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-event-summary",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:32+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"exact-match\":true}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "bb72f0ea-8bb5-4b88-9943-5a393af31149",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T06:24:38+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"current\": true,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "845c0db4-2ef5-4a8b-9658-1b893db6c0a7",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:24:24+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"current\": true,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "c0c08e31-3130-4b47-8fcb-2f2d38f42368",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow-jobs:get-job-context",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:23:33+00:00",
              "content": "{\"input\":{\"action-name\":\"Download\"}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "6babd527-6ccc-45d5-b6de-6f29812a2d15",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:23:33+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"name\",\"extra-search-fields\":[{\"field\":\"state\",\"value-list\":[\"deployed\",\"activated\"]}]}}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "f3aa7b11-306b-4977-ab4b-448587ed0c5c",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:23:33+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":100,\"search-term\":\"\",\"object-type\":\"profile\",\"search-field\":\"name\",\"extra-search-fields\":[{\"field\":\"state\",\"value-list\":[\"deployed\",\"activated\"]},{\"field\":\"type\",\"value-list\":[\"device-software-profile\"]}]}}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "GET",
              "log-id": "400b134f-ae44-4fcc-ba57-dbd6797c2a4b",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-jobs:triggers",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:23:16+00:00",
              "content": "",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "272087aa-1439-48cf-80d5-13daf2f3034f",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow-jobs:get-job-context",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:23:15+00:00",
              "content": "{\"input\":{\"action-name\":null}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "GET",
              "log-id": "c9418972-cef5-45c3-a835-ed85dcc808f6",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-jobs:actions",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:23:15+00:00",
              "content": "",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "3ab7e1fb-2eb9-4a39-bdbb-8828df83f7bf",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:23:10+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"device\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "ec359d45-cf41-486a-920a-56d4e0bf5e13",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:23:09+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"device\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "fb4f57e1-143b-4704-8051-56f334f64cb6",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:23:09+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"device\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "05f5725d-2ec3-49d0-8f2f-35cb72963c5a",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow-jobs:get-job-context",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:22:32+00:00",
              "content": "{\"input\":{\"action-name\":\"Reflow Device\"}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "0e5efd6a-8985-400d-97ae-9b0729f23ffd",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow-jobs:get-job-context",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:22:25+00:00",
              "content": "{\"input\":{\"action-name\":null}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "25387e48-703e-4a1f-96b8-7f6ff0f73796",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:22:21+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":100,\"search-term\":\"\",\"object-type\":\"service\",\"search-field\":\"service-id\",\"extra-search-fields\":[{\"field\":\"state\",\"value-list\":[\"deployed\",\"activated\"]}]}}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "503a23bd-00e3-4216-b13f-0073953796dd",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T06:22:21+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-fie\": \"severity\",\r\n        \"current\": true,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-fie\": \"severity\",\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "2e0c1ee4-4301-4492-8017-4fcd6850f1b9",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow-jobs:get-job-context",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:22:07+00:00",
              "content": "{\"input\":{\"action-name\":\"Reflow Service\"}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "c97a4be7-1540-4b9e-a0c7-0079b71d71df",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T06:21:53+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-fie\": \"state\",\r\n        \"current\": true,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-fie\": \"state\",\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "GET",
              "log-id": "1d95ca48-35a4-4626-970b-1c7de6732859",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-jobs:triggers",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:21:34+00:00",
              "content": "",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "GET",
              "log-id": "2e0d5d21-8a02-4f0b-b33d-cd82171a157c",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-jobs:actions",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:21:34+00:00",
              "content": "",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "beacb433-6d17-471f-93c3-f89464221800",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow-jobs:get-job-context",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:21:32+00:00",
              "content": "{\"input\":{\"action-name\":null}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "0939768f-29d1-4aef-9d11-2f01ac00a78c",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:21:17+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "7fa72be7-4926-49a0-a41d-ccc83a396138",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:21:17+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "9bc58034-e0bb-4e00-9205-cb63aff8fc78",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-event-summary",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:21:16+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"exact-match\":true}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "cb06c00b-f75d-4f1b-87f7-d7b6abd7083e",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:21:16+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "GET",
              "log-id": "7c52cb34-8a97-41b1-a024-c80e0475fef4",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-data-centers:data-centers/data-center=Data%20Center",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:18:05+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "a97b4920-3036-4973-9801-5dcaf0352d50",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-data-centers:data-centers/data-center=Data-Center",
              "status-code": "404 Not Found",
              "req-time": "2020-05-06T06:17:57+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "c3129d6a-f172-4321-bc8c-bcf1a980d3fa",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-data-centers:data-centers/data-center",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:48:32+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "05f04aa9-5558-431a-a5ce-24eaa806ef52",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-data-centers:data-centers/data-center",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:48:14+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "18447a00-f2f8-43cd-af8c-7f530b5bc2b7",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:activate",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:47:27+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "2ce89b2b-c301-48e3-9f2a-ee1bc540c00f",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deploy",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:47:06+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n           \"availability\" : \"available\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "e9a6105b-14e7-479e-910b-3c0bda261e73",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T05:46:59+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n           \"availability\" : \"available\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "0f801d6a-cdd1-45c8-b46d-e9ab2193930d",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:46:28+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n            \"type\" : \"Generic\",\r\n            \"profile-vector-name\" : \"\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "6e1b01c0-0ada-48fa-b399-d47ba4799f25",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:45:46+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "a942a399-1a24-4967-841d-a045f06bdb49",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:45:46+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "93afbb02-10fd-40fb-a345-10adbfed4efa",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:45:46+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "3cfd9859-5708-44d7-98cf-ada309cfff4a",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:45:45+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"management-domain\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "e61e1a2f-5267-4e01-a2d1-9fe237212caf",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-data-centers:data-centers/data-center",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:45:15+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "c570a2fb-38bb-490c-8678-c0b5d9be6a35",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:42:44+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "d6f1b6fa-edb1-41e9-8c3b-5898950af9f9",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:42:44+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "14bc8174-d644-40fe-bfd2-a6a550b51c06",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-manifests:versions",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:29:32+00:00",
              "content": "",
              "ip-address": "172.22.178.244"
            },
            {
              "method": "POST",
              "log-id": "2422fe05-ec29-4a78-bdf2-4a2dfae4769d",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:delete",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:28:50+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "bfff6437-7f8d-48eb-9892-8c19f298b40b",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:delete",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:27:36+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "428e0f6c-971b-4217-9898-b8decef66ff6",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:delete",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:26:56+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center1\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "cb064332-9d23-41bf-af66-5a60416385c9",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:undeploy",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:25:25+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "39319b84-41b2-450b-a372-be3a6f5954e1",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:24:59+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "c56d8541-2285-4daf-a294-bfe2accc672f",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:24:59+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "1a9d8dc8-23ce-4e1f-9532-7c050af01a18",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:undeploy",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:24:52+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "2c616db5-1e7c-4d55-acfa-27fe51499be0",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:undeploy",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:24:11+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center1\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "da310555-d4f4-4ac8-9eaa-56ac16ce45a6",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:undeploy",
              "status-code": "405 Method Not Allowed",
              "req-time": "2020-05-06T05:24:00+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Cente1r\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "3d2aea3b-d419-4e48-9c7a-4356c5238931",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deactivate",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:15:58+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "1060cebe-2bc9-46f6-b864-0b9123d2e95f",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deactivate",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:15:36+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "682e314c-dd2e-49ae-b86e-3a3162816ead",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deactivate",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:15:00+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center1\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "60dd0071-3918-4fdc-abfa-312baef2ba93",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:activate",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:11:15+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "ed790d2e-8b8e-437a-90d0-18996441d493",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deactivate",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:11:09+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "7a47f030-c19b-47a5-8da1-c32777dce510",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:activate",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:10:45+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "da2f71c7-40ab-496b-b422-6c9916b1006f",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:10:21+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "24e059d4-3c83-419c-b06b-1decf5a1dd0c",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:10:19+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"content-provider\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "4f8bbf08-56c7-4813-a398-396e9516f381",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:10:19+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "456e9811-5b89-4999-89c1-a2c8b36d0308",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:10:19+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "9f22d9c9-9f38-4ebe-8aae-2a4479692a25",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:activate",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:10:13+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "9ff9a477-e0bb-4633-913d-ec678aa3e901",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:activate",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:09:36+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center1\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "07dfe00d-0c32-4678-a8ee-57c47bb615cf",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deploy",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:03:20+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n           \"availability\" : \"available\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "c5aaeb4d-450b-4f98-9af8-e43f0c4932c1",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deploy",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:02:55+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center1\",\r\n           \"availability\" : \"available\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "730cfbc1-a93f-43f1-a5d6-63733f72ad44",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:undeploy",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:02:33+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "d08d2cdd-1957-47da-9000-79d9eabbf543",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deploy",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:01:56+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n           \"availability\" : \"available\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "8687bdaa-a5cc-48c1-b22c-3648612ef793",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:01:04+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "c9d68a1d-0298-461f-ae1b-cecdb095f1ff",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deploy",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:00:55+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n           \"availability\" : \"available\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "1e65bbd9-d01f-4fa0-83dd-47024134ab02",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deploy",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:00:47+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center2\",\r\n           \"availability\" : \"available\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "4f746489-eda0-47e7-b83d-1af531cd1304",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deploy",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:00:29+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center 2\",\r\n           \"availability\" : \"available\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "dafa2b00-6d24-41cb-a496-05cac34ba4bb",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:49:25+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n            \"type\" : \"Generic\",\r\n            \"profile-vector-name\" : \"\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "7ee8d9d7-a893-47a9-82f0-4c360c2cb8a9",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T04:49:02+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n            \"types\" : \"Generic\",\r\n            \"profile-vector-name\" : \"\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "f15c9b10-9dc3-492e-bf20-f5f1097e6d86",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:delete",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:48:15+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "121418ba-4b37-4df3-9ed8-5693255164b9",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:47:54+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "5a24b044-070a-483c-80c1-582e6037d9a7",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:40:44+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n            \"type\" : \"Generic\",\r\n            \"profile-vector-names\" : \"\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "49a55c6e-83fb-4d26-b996-1ac767ecf16c",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T04:40:37+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n            \"types\" : \"Generic\",\r\n            \"profile-vector-names\" : \"\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "f08839ba-8b99-40ca-a4a8-8ec5ca6ccde7",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T04:40:21+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n            \"types\" : \"Generic\",\r\n            \"profile-vector-name\" : \"\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "935e96c0-5f3c-46d9-bef4-59ca486aad00",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:delete",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:39:25+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "37e6c112-f751-4b19-9eaa-3d5e78d50f65",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:39:02+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n            \"type\" : \"Generic\",\r\n            \"profile-vector-name\" : \"Vector Name\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "d50d4e7b-3f49-45d2-a853-d91f3a2e05fe",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:delete",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:38:31+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "11d966b7-5fd0-4a89-9a3e-dc7cda5cbc74",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:37:26+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n            \"type\" : \"GenericCase\",\r\n            \"profile-vector-name\" : \"\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "5da9e31e-74af-4f86-88d0-55d52c3c64b5",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:36:34+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "96220e7a-9ef2-4494-9510-a0f55ae09136",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:36:34+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "a2364a72-9ba7-42a2-9175-3b864858f89c",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:delete",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:36:28+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Centre\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "b1c22992-da7b-416c-97d7-43109573dfea",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:undeploy",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T04:36:12+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Centre\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "4a12cd9e-d2f1-437a-b376-bc88a7ae5ee5",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T04:35:02+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Centre\",\r\n            \"type\" : \"Generic\",\r\n            \"profile-vector-name\" : \"\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "44a89a3f-f5f2-46b5-9a75-65e869787bf6",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:46+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "794ba004-9916-4faa-8c97-f1be3fc3a1d0",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:45+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "556818aa-1962-475c-84f5-12e62f9ab027",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:45+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "37d8c035-ff18-4580-8706-34833719e8d9",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:44+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "1751b179-40ef-4ed9-902b-04017ff60ab1",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:44+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "9fb63ff7-47c6-452a-ad6f-d73a5af5cfaf",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:44+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "77727a27-de44-441c-b41a-446c9e1a68a5",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:35+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Centre\",\r\n            \"type\" : \"Generic\",\r\n            \"profile-vector-name\" : \"\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "2716ef60-2c2e-479b-b735-769e1e596f67",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:29+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "ca4a33a1-5dc3-4b4b-a3b3-f6620b382860",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-event-summary",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:27+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"exact-match\":true}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "72dddde9-3ffd-4de1-9178-497f6673ac07",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:27+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "bdf9a7d9-c33a-4438-b449-eee0f0bd2eb8",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:27+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
              "ip-address": "172.22.181.204"
            }
          ],
          "cursor": 149,
          "total-count": 149
        }
      },
      "GetAccountLogsBetweenDatesforaUserRequest": {
        "title": "GetAccountLogsBetweenDatesforaUserRequest",
        "required": [
          "username",
          "time-period"
        ],
        "type": "object",
        "properties": {
          "username": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "time-period": {
            "$ref": "#/components/schemas/TimePeriod1"
          }
        },
        "example": {
          "username": [
            "SampleUser"
          ],
          "time-period": {
            "from-time": "2020-03-25T00:00:00.000Z"
          }
        }
      },
      "TimePeriod1": {
        "title": "TimePeriod1",
        "required": [
          "from-time"
        ],
        "type": "object",
        "properties": {
          "from-time": {
            "type": "string"
          }
        },
        "example": {
          "from-time": "2020-03-25T00:00:00.000Z"
        }
      },
      "GetAccountLogsBetweenDateswUser": {
        "title": "GetAccountLogsBetweenDateswUser",
        "required": [
          "log-entry",
          "cursor",
          "total-count"
        ],
        "type": "object",
        "properties": {
          "log-entry": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/LogEntry"
            },
            "description": ""
          },
          "cursor": {
            "type": "integer",
            "format": "int32"
          },
          "total-count": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "log-entry": [
            {
              "method": "POST",
              "log-id": "e22bb094-b9b3-46c8-840d-9b302398ebcd",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-auth-accounting:get-filtered-logs",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:52:46+00:00",
              "content": "{\r\n  \"username\": [\"ADMIN\"]\r\n}\r\n",
              "ip-address": "172.22.178.20"
            },
            {
              "method": "POST",
              "log-id": "2c3ff4e9-e2f9-4192-82e7-41ad742adfa5",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-auth-accounting:get-filtered-logs",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:51:43+00:00",
              "content": "{\r\n  \"time-period\" : {\r\n    \"from-time\" : \"2020-01-02T00:00:00.000Z\",\r\n    \"to-time\" : \"2020-07-06T12:00:00.000Z\"\r\n  }\r\n}\r\n",
              "ip-address": "172.22.178.20"
            },
            {
              "method": "POST",
              "log-id": "e1165ef5-09be-4a34-ba5f-cebef7daa305",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-auth-accounting:get-filtered-logs",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:51:32+00:00",
              "content": "{\r\n  \"time-period\" : {\r\n    \"from-time\" : \"2020-01-02T00:00:00.000Z\",\r\n    \"to-time\" : \"2020-05-06T12:00:00.000Z\"\r\n  }\r\n}\r\n",
              "ip-address": "172.22.178.20"
            },
            {
              "method": "POST",
              "log-id": "0bd268b6-e43f-4ea9-b309-717a963c094a",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-auth-accounting:get-filtered-logs",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:50:58+00:00",
              "content": "{\r\n  \"time-period\" : {\r\n    \"from-time\" : \"2020-01-02T00:00:00.000Z\",\r\n    \"to-time\" : \"2020-04-02T12:00:00.000Z\"\r\n  }\r\n}\r\n",
              "ip-address": "172.22.178.20"
            },
            {
              "method": "POST",
              "log-id": "fa438e15-004c-414a-94d1-6050b4e80744",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T06:42:06+00:00",
              "content": "{\r\n  \"input\": {\r\n    \"server-context\": {\r\n      \"server-name\": \"Server\",\r\n      \"type\": [\r\n        \"TFTP\"\r\n      ],\r\n      \"credentials-name\": \"Credentials\"\r\n    }\r\n  }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "9b6ad552-6659-4f83-817f-1d39e6c40b2e",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T06:40:56+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field: \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "979b7e5f-2f92-4d77-b84d-f0e0d797ead4",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:40:02+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "96a6082b-5a9b-4d35-ac84-fa323f69bfae",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T06:39:18+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "86549002-14be-4b62-b0ae-35a6560eca15",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T06:38:51+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-fie\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "e541a8a0-8125-4813-bff7-ea2b3b5d2a0a",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T06:36:20+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"missing\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "7dd2fb86-0123-48ab-b60c-3cccdb0bd486",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T06:36:02+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"maj\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "435f7201-fde3-4d67-ad0e-9c8a62bc3fa1",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:35:50+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"sever\",\r\n                \"search-value\": [\r\n                    \"major\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "46d4a339-9b7c-4de9-8061-18039184be3b",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:35:19+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"major\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "314fec6f-5d3d-456d-93ae-c1d145b8db74",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:35:03+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"major\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "c543f9c4-2f2b-4b96-aebb-92e8c66a40eb",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:34:52+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": false,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "1d588c06-5eb8-4142-99fb-0b5d4c04dd42",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T06:34:37+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": true,\r\n        \"curs\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "03cd9a62-7b08-485f-acad-138334c52a24",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:34:19+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": true,\r\n        \"cursor\": 0,\r\n        \"result-size\": 344555555555,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "e7b6464e-c004-4941-bb6e-504ae99f0287",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:34:06+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-field\": \"severity\",\r\n        \"current\": true,\r\n        \"cursor\": 0,\r\n        \"result-size\": -1,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "GET",
              "log-id": "370c8fb7-6a4f-4561-b742-421b1a229503",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow:transitions/transition=3b2c4ba3-9022-4700-8142-16553c2cbf70",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:33:57+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "0aaa05bd-d806-482b-b991-0ac2420c6998",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:delete",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:33:56+00:00",
              "content": "{\"input\":{\"server-context\":{\"server-name\":\"1\"}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "541d8ecc-ec8c-4f55-bc34-f4ee15a8a535",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow:transitions/transition=af5c3331-c339-4985-89f4-7caebbc8d19b",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:33:52+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "f50e22fa-ea34-41df-9e7c-36a2570a69be",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:undeploy",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:33:51+00:00",
              "content": "{\"input\":{\"server-context\":{\"server-name\":\"1\"}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "fe0c1d80-49f0-49ad-97d8-7d6318f7d467",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow:transitions/transition=94fe85fb-128a-4806-b0f6-322af1eead3b",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:33:12+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "b874fdd7-90d9-4d85-8c9f-555bd46aef5a",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deploy",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:33:11+00:00",
              "content": "{\"input\":{\"server-context\":{\"server-name\":\"1\",\"host-ip\":\"1.1.1.1\",\"port\":\"1\",\"data-center-name\":\"Data Center\"}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "9c3208b1-62be-48a4-834c-01079af32b09",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:33:10+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"Data Center\",\"object-type\":\"data-center\",\"search-field\":\"data-center-name\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "c813398d-a940-468a-90cb-f790afe56d0b",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:58+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"data-center-name\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "63d5425b-cfec-48d4-be27-18b70b34d369",
              "username": "ADMIN",
              "uri": "/restconf/data-filter/adtran-cloud-platform-uiworkflow-credentials:credentials/credential",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:56+00:00",
              "content": "{\"credentials#like\":{\"field\":\"name\",\"keyword\":\"\",\"threshold\":0.1,\"target\":\"score\"}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "3676192f-16c1-4ffc-a76d-b8889dcce06b",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-servers:servers/available-type",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:56+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "95e87c9b-8d3a-4438-b71f-f12ce782b5ee",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-servers:servers/server=1",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:55+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "f9fa9394-306a-4f89-a4a6-b2da9d2bf8b7",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-servers:servers/server=1",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:55+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "1256964d-a868-443c-a62d-2ba8dac26919",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow:transitions/transition=5f705111-f3b8-4104-9eec-7a8490853984",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:54+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "8d11ae3f-8c1e-4ea0-9158-2b7021a0363d",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:52+00:00",
              "content": "{\"input\":{\"server-context\":{\"server-name\":\"1\",\"type\":[\"TFTP\"]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "82aa24ec-5426-4c0c-b41a-588514e2e6e2",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-servers:servers/available-type",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:47+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "2013ae9f-6dd6-427d-8cad-1809d3fdf7b9",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-servers:servers/available-type",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:47+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "0b0eebe4-6230-4e32-aee8-afe93fd082b7",
              "username": "ADMIN",
              "uri": "/restconf/data-filter/adtran-cloud-platform-uiworkflow-credentials:credentials/credential",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:45+00:00",
              "content": "{\"credentials#like\":{\"field\":\"name\",\"keyword\":\"\",\"threshold\":0.1,\"target\":\"score\"}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "332b3bcc-726e-4d55-9a13-e717cf38624f",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:44+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"data-center-name\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "3be31646-afc4-47a4-a02e-ac9eadb8f8bb",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-force-actions:force-actions/force-action=server",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:43+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "7b794def-b098-465f-88bd-10882e168a68",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-servers:servers/available-type",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:43+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "7e350675-e785-420b-850e-4c8c0b25e4f4",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:10+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "a62ee6cd-7771-4572-b6c5-92d3de80afba",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:10+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "af0048a1-cccf-4dcb-a783-e50a2d65f1ca",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:08+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "eced01fc-8a83-4186-976b-193da6fada22",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:32:08+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "ab80f8ba-0fd9-4c31-b71e-5d403c546562",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-force-actions:force-actions/force-action=server",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:58+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "cd15cec1-4b1e-4096-8fdc-4bec6cd3e404",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-servers:servers/available-type",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:58+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "3c2ff2a2-8efe-4478-bca6-5dae0783c700",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:58+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"data-center-name\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "79c6b3a6-4fca-4fe9-a146-47873f95709e",
              "username": "ADMIN",
              "uri": "/restconf/data-filter/adtran-cloud-platform-uiworkflow-credentials:credentials/credential",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:58+00:00",
              "content": "{\"credentials#like\":{\"field\":\"name\",\"keyword\":\"\",\"threshold\":0.1,\"target\":\"score\"}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "a90deb60-e82c-4a48-bda1-b536d6e45232",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:50+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "1615b12a-e44e-46fd-b55d-4babc036564c",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:48+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "8a1a8230-775b-4623-88c4-04cea89d6b5c",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:48+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "c77bc5ad-b7cd-44fb-9af4-355d263dc903",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T06:31:44+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"current\": true,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "ce7aacc0-56c3-4458-b30d-38a365572a22",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:34+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "8831f2b0-19e6-47fa-886f-6473752b7421",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:34+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "4ca5ff05-f5f1-4fbf-a01c-68d332d01fe1",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:32+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "6e11e228-538e-46de-a058-240bf1f71dc6",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-event-summary",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:31:32+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"exact-match\":true}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "bb72f0ea-8bb5-4b88-9943-5a393af31149",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T06:24:38+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"current\": true,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "845c0db4-2ef5-4a8b-9658-1b893db6c0a7",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:24:24+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"current\": true,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-field\": \"severity\",\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "c0c08e31-3130-4b47-8fcb-2f2d38f42368",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow-jobs:get-job-context",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:23:33+00:00",
              "content": "{\"input\":{\"action-name\":\"Download\"}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "6babd527-6ccc-45d5-b6de-6f29812a2d15",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:23:33+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"name\",\"extra-search-fields\":[{\"field\":\"state\",\"value-list\":[\"deployed\",\"activated\"]}]}}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "f3aa7b11-306b-4977-ab4b-448587ed0c5c",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:23:33+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":100,\"search-term\":\"\",\"object-type\":\"profile\",\"search-field\":\"name\",\"extra-search-fields\":[{\"field\":\"state\",\"value-list\":[\"deployed\",\"activated\"]},{\"field\":\"type\",\"value-list\":[\"device-software-profile\"]}]}}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "GET",
              "log-id": "400b134f-ae44-4fcc-ba57-dbd6797c2a4b",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-jobs:triggers",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:23:16+00:00",
              "content": "",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "272087aa-1439-48cf-80d5-13daf2f3034f",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow-jobs:get-job-context",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:23:15+00:00",
              "content": "{\"input\":{\"action-name\":null}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "GET",
              "log-id": "c9418972-cef5-45c3-a835-ed85dcc808f6",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-jobs:actions",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:23:15+00:00",
              "content": "",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "3ab7e1fb-2eb9-4a39-bdbb-8828df83f7bf",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:23:10+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"device\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "ec359d45-cf41-486a-920a-56d4e0bf5e13",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:23:09+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"device\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "fb4f57e1-143b-4704-8051-56f334f64cb6",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:23:09+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"device\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "05f5725d-2ec3-49d0-8f2f-35cb72963c5a",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow-jobs:get-job-context",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:22:32+00:00",
              "content": "{\"input\":{\"action-name\":\"Reflow Device\"}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "0e5efd6a-8985-400d-97ae-9b0729f23ffd",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow-jobs:get-job-context",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:22:25+00:00",
              "content": "{\"input\":{\"action-name\":null}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "25387e48-703e-4a1f-96b8-7f6ff0f73796",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:22:21+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":100,\"search-term\":\"\",\"object-type\":\"service\",\"search-field\":\"service-id\",\"extra-search-fields\":[{\"field\":\"state\",\"value-list\":[\"deployed\",\"activated\"]}]}}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "503a23bd-00e3-4216-b13f-0073953796dd",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T06:22:21+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-fie\": \"severity\",\r\n        \"current\": true,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-fie\": \"severity\",\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "POST",
              "log-id": "2e0c1ee4-4301-4492-8017-4fcd6850f1b9",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow-jobs:get-job-context",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:22:07+00:00",
              "content": "{\"input\":{\"action-name\":\"Reflow Service\"}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "c97a4be7-1540-4b9e-a0c7-0079b71d71df",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T06:21:53+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"summary-fie\": \"state\",\r\n        \"current\": true,\r\n        \"cursor\": 0,\r\n        \"result-size\": 25,\r\n        \"exact-match\": true,\r\n        \"search-filter-and\": [\r\n            {\r\n                \"search-fie\": \"state\",\r\n                \"search-value\": [\r\n                    \"minor\"\r\n                ]\r\n            }\r\n        ]\r\n    }\r\n}",
              "ip-address": "172.22.182.150"
            },
            {
              "method": "GET",
              "log-id": "1d95ca48-35a4-4626-970b-1c7de6732859",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-jobs:triggers",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:21:34+00:00",
              "content": "",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "GET",
              "log-id": "2e0d5d21-8a02-4f0b-b33d-cd82171a157c",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-uiworkflow-jobs:actions",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:21:34+00:00",
              "content": "",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "beacb433-6d17-471f-93c3-f89464221800",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow-jobs:get-job-context",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:21:32+00:00",
              "content": "{\"input\":{\"action-name\":null}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "0939768f-29d1-4aef-9d11-2f01ac00a78c",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:21:17+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "7fa72be7-4926-49a0-a41d-ccc83a396138",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:21:17+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "9bc58034-e0bb-4e00-9205-cb63aff8fc78",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-event-summary",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:21:16+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"exact-match\":true}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "POST",
              "log-id": "cb06c00b-f75d-4f1b-87f7-d7b6abd7083e",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:21:16+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
              "ip-address": "172.22.179.175"
            },
            {
              "method": "GET",
              "log-id": "7c52cb34-8a97-41b1-a024-c80e0475fef4",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-data-centers:data-centers/data-center=Data%20Center",
              "status-code": "200 OK",
              "req-time": "2020-05-06T06:18:05+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "a97b4920-3036-4973-9801-5dcaf0352d50",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-data-centers:data-centers/data-center=Data-Center",
              "status-code": "404 Not Found",
              "req-time": "2020-05-06T06:17:57+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "c3129d6a-f172-4321-bc8c-bcf1a980d3fa",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-data-centers:data-centers/data-center",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:48:32+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "05f04aa9-5558-431a-a5ce-24eaa806ef52",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-data-centers:data-centers/data-center",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:48:14+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "18447a00-f2f8-43cd-af8c-7f530b5bc2b7",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:activate",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:47:27+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "2ce89b2b-c301-48e3-9f2a-ee1bc540c00f",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deploy",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:47:06+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n           \"availability\" : \"available\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "e9a6105b-14e7-479e-910b-3c0bda261e73",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T05:46:59+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n           \"availability\" : \"available\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "0f801d6a-cdd1-45c8-b46d-e9ab2193930d",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:46:28+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n            \"type\" : \"Generic\",\r\n            \"profile-vector-name\" : \"\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "6e1b01c0-0ada-48fa-b399-d47ba4799f25",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:45:46+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "a942a399-1a24-4967-841d-a045f06bdb49",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:45:46+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "93afbb02-10fd-40fb-a345-10adbfed4efa",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:45:46+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "3cfd9859-5708-44d7-98cf-ada309cfff4a",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:45:45+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"management-domain\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "e61e1a2f-5267-4e01-a2d1-9fe237212caf",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-cloud-platform-data-centers:data-centers/data-center",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:45:15+00:00",
              "content": "",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "c570a2fb-38bb-490c-8678-c0b5d9be6a35",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:42:44+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "d6f1b6fa-edb1-41e9-8c3b-5898950af9f9",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:42:44+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "14bc8174-d644-40fe-bfd2-a6a550b51c06",
              "username": "ADMIN",
              "uri": "/restconf/data/adtran-manifests:versions",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:29:32+00:00",
              "content": "",
              "ip-address": "172.22.178.244"
            },
            {
              "method": "POST",
              "log-id": "2422fe05-ec29-4a78-bdf2-4a2dfae4769d",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:delete",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:28:50+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "bfff6437-7f8d-48eb-9892-8c19f298b40b",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:delete",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:27:36+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "428e0f6c-971b-4217-9898-b8decef66ff6",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:delete",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:26:56+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center1\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "cb064332-9d23-41bf-af66-5a60416385c9",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:undeploy",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:25:25+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "39319b84-41b2-450b-a372-be3a6f5954e1",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:24:59+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "c56d8541-2285-4daf-a294-bfe2accc672f",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:24:59+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "1a9d8dc8-23ce-4e1f-9532-7c050af01a18",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:undeploy",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:24:52+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "2c616db5-1e7c-4d55-acfa-27fe51499be0",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:undeploy",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:24:11+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center1\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "GET",
              "log-id": "da310555-d4f4-4ac8-9eaa-56ac16ce45a6",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:undeploy",
              "status-code": "405 Method Not Allowed",
              "req-time": "2020-05-06T05:24:00+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Cente1r\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "3d2aea3b-d419-4e48-9c7a-4356c5238931",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deactivate",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:15:58+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "1060cebe-2bc9-46f6-b864-0b9123d2e95f",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deactivate",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:15:36+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "682e314c-dd2e-49ae-b86e-3a3162816ead",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deactivate",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:15:00+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center1\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "60dd0071-3918-4fdc-abfa-312baef2ba93",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:activate",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:11:15+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "ed790d2e-8b8e-437a-90d0-18996441d493",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deactivate",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:11:09+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "7a47f030-c19b-47a5-8da1-c32777dce510",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:activate",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:10:45+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "da2f71c7-40ab-496b-b422-6c9916b1006f",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:10:21+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "24e059d4-3c83-419c-b06b-1decf5a1dd0c",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:10:19+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"content-provider\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "4f8bbf08-56c7-4813-a398-396e9516f381",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:10:19+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "456e9811-5b89-4999-89c1-a2c8b36d0308",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:10:19+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "9f22d9c9-9f38-4ebe-8aae-2a4479692a25",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:activate",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:10:13+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "9ff9a477-e0bb-4633-913d-ec678aa3e901",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:activate",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:09:36+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center1\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "07dfe00d-0c32-4678-a8ee-57c47bb615cf",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deploy",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:03:20+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n           \"availability\" : \"available\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "c5aaeb4d-450b-4f98-9af8-e43f0c4932c1",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deploy",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:02:55+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center1\",\r\n           \"availability\" : \"available\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "730cfbc1-a93f-43f1-a5d6-63733f72ad44",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:undeploy",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:02:33+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "d08d2cdd-1957-47da-9000-79d9eabbf543",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deploy",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:01:56+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n           \"availability\" : \"available\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "8687bdaa-a5cc-48c1-b22c-3648612ef793",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:01:04+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "c9d68a1d-0298-461f-ae1b-cecdb095f1ff",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deploy",
              "status-code": "200 OK",
              "req-time": "2020-05-06T05:00:55+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n           \"availability\" : \"available\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "1e65bbd9-d01f-4fa0-83dd-47024134ab02",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deploy",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:00:47+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center2\",\r\n           \"availability\" : \"available\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "4f746489-eda0-47e7-b83d-1af531cd1304",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:deploy",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T05:00:29+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center 2\",\r\n           \"availability\" : \"available\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "dafa2b00-6d24-41cb-a496-05cac34ba4bb",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:49:25+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n            \"type\" : \"Generic\",\r\n            \"profile-vector-name\" : \"\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "7ee8d9d7-a893-47a9-82f0-4c360c2cb8a9",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T04:49:02+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n            \"types\" : \"Generic\",\r\n            \"profile-vector-name\" : \"\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "f15c9b10-9dc3-492e-bf20-f5f1097e6d86",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:delete",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:48:15+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "121418ba-4b37-4df3-9ed8-5693255164b9",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:47:54+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "5a24b044-070a-483c-80c1-582e6037d9a7",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:40:44+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n            \"type\" : \"Generic\",\r\n            \"profile-vector-names\" : \"\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "49a55c6e-83fb-4d26-b996-1ac767ecf16c",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T04:40:37+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n            \"types\" : \"Generic\",\r\n            \"profile-vector-names\" : \"\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "f08839ba-8b99-40ca-a4a8-8ec5ca6ccde7",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "400 Bad Request",
              "req-time": "2020-05-06T04:40:21+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n            \"types\" : \"Generic\",\r\n            \"profile-vector-name\" : \"\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "935e96c0-5f3c-46d9-bef4-59ca486aad00",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:delete",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:39:25+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "37e6c112-f751-4b19-9eaa-3d5e78d50f65",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:39:02+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n            \"type\" : \"Generic\",\r\n            \"profile-vector-name\" : \"Vector Name\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "d50d4e7b-3f49-45d2-a853-d91f3a2e05fe",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:delete",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:38:31+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Center\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "11d966b7-5fd0-4a89-9a3e-dc7cda5cbc74",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:37:26+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Center\",\r\n            \"type\" : \"GenericCase\",\r\n            \"profile-vector-name\" : \"\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "5da9e31e-74af-4f86-88d0-55d52c3c64b5",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:36:34+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "96220e7a-9ef2-4494-9510-a0f55ae09136",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:36:34+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "a2364a72-9ba7-42a2-9175-3b864858f89c",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:delete",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:36:28+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Centre\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "b1c22992-da7b-416c-97d7-43109573dfea",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:undeploy",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T04:36:12+00:00",
              "content": "{\r\n    \"input\": {\r\n        \"data-center-context\": {\r\n            \"data-center-name\": \"Data Centre\"\r\n        }\r\n    }\r\n}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "4a12cd9e-d2f1-437a-b376-bc88a7ae5ee5",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "409 Conflict",
              "req-time": "2020-05-06T04:35:02+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Centre\",\r\n            \"type\" : \"Generic\",\r\n            \"profile-vector-name\" : \"\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "44a89a3f-f5f2-46b5-9a75-65e869787bf6",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:46+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "794ba004-9916-4faa-8c97-f1be3fc3a1d0",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:45+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "556818aa-1962-475c-84f5-12e62f9ab027",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:45+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"data-center\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "37d8c035-ff18-4580-8706-34833719e8d9",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:44+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "1751b179-40ef-4ed9-902b-04017ff60ab1",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:44+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "9fb63ff7-47c6-452a-ad6f-d73a5af5cfaf",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-search:search",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:44+00:00",
              "content": "{\"input\":{\"type\":\"search-global\",\"related-objects-term\":{\"cursor\":0,\"result-size\":25,\"search-term\":\"\",\"object-type\":\"server\",\"search-field\":\"\",\"extra-search-fields\":[]}}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "77727a27-de44-441c-b41a-446c9e1a68a5",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-uiworkflow:create",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:35+00:00",
              "content": "{\r\n    \"input\" :  {\r\n       \"data-center-context\": {\r\n           \"data-center-name\": \"Data Centre\",\r\n            \"type\" : \"Generic\",\r\n            \"profile-vector-name\" : \"\"\r\n       }\r\n    }\r\n }",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "2716ef60-2c2e-479b-b735-769e1e596f67",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:29+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "ca4a33a1-5dc3-4b4b-a3b3-f6620b382860",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-event-summary",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:27+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"exact-match\":true}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "72dddde9-3ffd-4de1-9178-497f6673ac07",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:27+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
              "ip-address": "172.22.181.204"
            },
            {
              "method": "POST",
              "log-id": "bdf9a7d9-c33a-4438-b449-eee0f0bd2eb8",
              "username": "ADMIN",
              "uri": "/restconf/operations/adtran-cloud-platform-event-workflow:get-events",
              "status-code": "200 OK",
              "req-time": "2020-05-06T04:33:27+00:00",
              "content": "{\"input\":{\"summary-field\":\"severity\",\"current\":true,\"cursor\":0,\"result-size\":25,\"exact-match\":true}}",
              "ip-address": "172.22.181.204"
            }
          ],
          "cursor": 150,
          "total-count": 150
        }
      },
      "CreateCredentialRequest": {
        "title": "CreateCredentialRequest",
        "required": [
          "name",
          "key-authentication"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "key-authentication": {
            "$ref": "#/components/schemas/KeyAuthentication"
          }
        },
        "example": {
          "name": "credential_1",
          "key-authentication": {
            "username": "root",
            "key": "{{basic-auth-password}}"
          }
        }
      },
      "KeyAuthentication": {
        "title": "KeyAuthentication",
        "required": [
          "username",
          "key"
        ],
        "type": "object",
        "properties": {
          "username": {
            "type": "string"
          },
          "key": {
            "type": "string"
          }
        },
        "example": {
          "username": "root",
          "key": "{{basic-auth-password}}"
        }
      },
      "CreateCredential-AlreadyExists1": {
        "title": "CreateCredential-AlreadyExists1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Cannot overwrite path List(adtran-cloud-platform-credentials, credentials, credential=credential_1)"
        }
      },
      "CreateCredentialPasswordOnlyAuthenticationRequest": {
        "title": "CreateCredentialPasswordOnlyAuthenticationRequest",
        "required": [
          "name",
          "password-only-authentication"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "password-only-authentication": {
            "$ref": "#/components/schemas/PasswordOnlyAuthentication"
          }
        },
        "example": {
          "name": "credential_2",
          "password-only-authentication": {
            "password": "{{basic-auth-password}}"
          }
        }
      },
      "PasswordOnlyAuthentication": {
        "title": "PasswordOnlyAuthentication",
        "required": [
          "password"
        ],
        "type": "object",
        "properties": {
          "password": {
            "type": "string"
          }
        },
        "example": {
          "password": "{{basic-auth-password}}"
        }
      },
      "UpdateCredentialPasswordOnlyAuthenticationRequest": {
        "title": "UpdateCredentialPasswordOnlyAuthenticationRequest",
        "required": [
          "name",
          "password-only-authentication"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "password-only-authentication": {
            "$ref": "#/components/schemas/PasswordOnlyAuthentication"
          }
        },
        "example": {
          "name": "credential_2",
          "password-only-authentication": {
            "password": "P@ssw0rd1"
          }
        }
      },
      "GetCredentialsByName-Success": {
        "title": "GetCredentialsByName-Success",
        "required": [
          "name",
          "password-authentication"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "password-authentication": {
            "$ref": "#/components/schemas/PasswordAuthentication"
          }
        },
        "example": {
          "name": "OLT Credentials",
          "password-authentication": {
            "username": "hsvroot",
            "password": "BOSCO"
          }
        }
      },
      "PasswordAuthentication": {
        "title": "PasswordAuthentication",
        "required": [
          "username",
          "password"
        ],
        "type": "object",
        "properties": {
          "username": {
            "type": "string"
          },
          "password": {
            "type": "string"
          }
        },
        "example": {
          "username": "hsvroot",
          "password": "BOSCO"
        }
      },
      "GetCredentials-Success": {
        "title": "GetCredentials-Success",
        "required": [
          "credentials"
        ],
        "type": "object",
        "properties": {
          "credentials": {
            "$ref": "#/components/schemas/Credentials"
          }
        },
        "example": {
          "credentials": {
            "credential": [
              {
                "name": "OLT Credentials",
                "password-authentication": {
                  "username": "root",
                  "password": "password"
                }
              },
              {
                "name": "SFTP Server Credentials",
                "password-authentication": {
                  "username": "adtran",
                  "password": "netvanta"
                }
              },
              {
                "name": "pmaa-default",
                "password-authentication": {
                  "username": "adtran",
                  "password": "adtran"
                }
              }
            ]
          }
        }
      },
      "Credentials": {
        "title": "Credentials",
        "required": [
          "credential"
        ],
        "type": "object",
        "properties": {
          "credential": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Credential"
            },
            "description": ""
          }
        },
        "example": {
          "credential": [
            {
              "name": "OLT Credentials",
              "password-authentication": {
                "username": "root",
                "password": "password"
              }
            },
            {
              "name": "SFTP Server Credentials",
              "password-authentication": {
                "username": "adtran",
                "password": "netvanta"
              }
            },
            {
              "name": "pmaa-default",
              "password-authentication": {
                "username": "adtran",
                "password": "adtran"
              }
            }
          ]
        }
      },
      "Credential": {
        "title": "Credential",
        "required": [
          "name",
          "password-authentication"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "password-authentication": {
            "$ref": "#/components/schemas/PasswordAuthentication"
          }
        },
        "example": {
          "name": "OLT Credentials",
          "password-authentication": {
            "username": "root",
            "password": "password"
          }
        }
      },
      "DeleteCredential-IncorrectCredentialNotExists1": {
        "title": "DeleteCredential-IncorrectCredentialNotExists1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Could not find path List(adtran-cloud-platform-credentials, credentials, credential=invalid)"
        }
      },
      "CreateExternalPolicy-RADIUSRequest": {
        "title": "CreateExternalPolicy-RADIUSRequest",
        "required": [
          "name",
          "retry-times",
          "use-for-non-local-users",
          "radius"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "retry-times": {
            "type": "integer",
            "format": "int32"
          },
          "use-for-non-local-users": {
            "type": "boolean"
          },
          "radius": {
            "$ref": "#/components/schemas/Radius"
          }
        },
        "example": {
          "name": "test-policy",
          "retry-times": 2,
          "use-for-non-local-users": true,
          "radius": {
            "host": "10.2.1.1",
            "auth-port": 1812,
            "timeout": 200,
            "shared-secret-credential": "credential_2",
            "accounting-port": 1813
          }
        }
      },
      "Radius": {
        "title": "Radius",
        "required": [
          "host",
          "auth-port",
          "timeout",
          "shared-secret-credential",
          "accounting-port"
        ],
        "type": "object",
        "properties": {
          "host": {
            "type": "string"
          },
          "auth-port": {
            "type": "integer",
            "format": "int32"
          },
          "timeout": {
            "type": "integer",
            "format": "int32"
          },
          "shared-secret-credential": {
            "type": "string"
          },
          "accounting-port": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "host": "10.2.1.1",
          "auth-port": 1812,
          "timeout": 200,
          "shared-secret-credential": "credential_2",
          "accounting-port": 1813
        }
      },
      "CreateExternalAuthMethod-Methodalreadyexists1": {
        "title": "CreateExternalAuthMethod-Methodalreadyexists1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Cannot overwrite path List(adtran-auth-config-external, auth-methods)"
        }
      },
      "CreateExternalPolicy-TACACSRequest": {
        "title": "CreateExternalPolicy-TACACSRequest",
        "required": [
          "name",
          "retry-times",
          "use-for-non-local-users",
          "tacacsplus"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "retry-times": {
            "type": "integer",
            "format": "int32"
          },
          "use-for-non-local-users": {
            "type": "boolean"
          },
          "tacacsplus": {
            "$ref": "#/components/schemas/Tacacsplus"
          }
        },
        "example": {
          "name": "test-policy-2",
          "retry-times": 5,
          "use-for-non-local-users": true,
          "tacacsplus": {
            "host": "10.27.28.44",
            "auth-port": 49,
            "timeout": 6000,
            "shared-secret-credential": "credential_2",
            "single-connect": true
          }
        }
      },
      "Tacacsplus": {
        "title": "Tacacsplus",
        "required": [
          "host",
          "auth-port",
          "timeout",
          "shared-secret-credential",
          "single-connect"
        ],
        "type": "object",
        "properties": {
          "host": {
            "type": "string"
          },
          "auth-port": {
            "type": "integer",
            "format": "int32"
          },
          "timeout": {
            "type": "integer",
            "format": "int32"
          },
          "shared-secret-credential": {
            "type": "string"
          },
          "single-connect": {
            "type": "boolean"
          }
        },
        "example": {
          "host": "10.27.28.44",
          "auth-port": 49,
          "timeout": 6000,
          "shared-secret-credential": "credential_2",
          "single-connect": true
        }
      },
      "CreateExternalPolicy-InternalRequest": {
        "title": "CreateExternalPolicy-InternalRequest",
        "required": [
          "name",
          "retry-times",
          "use-for-non-local-users",
          "internal"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "retry-times": {
            "type": "integer",
            "format": "int32"
          },
          "use-for-non-local-users": {
            "type": "boolean"
          },
          "internal": {
            "$ref": "#/components/schemas/Internal"
          }
        }
      },
      "Internal": {
        "title": "Internal",
        "required": [
          "internal"
        ],
        "type": "object",
        "properties": {
          "internal": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        }
      },
      "UpdateExternalPolicy-RADIUSRequest": {
        "title": "UpdateExternalPolicy-RADIUSRequest",
        "required": [
          "name",
          "retry-times",
          "use-for-non-local-users",
          "radius"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "retry-times": {
            "type": "integer",
            "format": "int32"
          },
          "use-for-non-local-users": {
            "type": "boolean"
          },
          "radius": {
            "$ref": "#/components/schemas/Radius"
          }
        },
        "example": {
          "name": "test-policy",
          "retry-times": 2,
          "use-for-non-local-users": true,
          "radius": {
            "host": "10.2.1.1",
            "auth-port": 1812,
            "timeout": 6000,
            "shared-secret-credential": "credential_2",
            "accounting-port": 1813
          }
        }
      },
      "UpdateExternalPolicy-TACACSRequest": {
        "title": "UpdateExternalPolicy-TACACSRequest",
        "required": [
          "name",
          "retry-times",
          "use-for-non-local-users",
          "tacacsplus"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "retry-times": {
            "type": "integer",
            "format": "int32"
          },
          "use-for-non-local-users": {
            "type": "boolean"
          },
          "tacacsplus": {
            "$ref": "#/components/schemas/Tacacsplus"
          }
        },
        "example": {
          "name": "test-policy-2",
          "retry-times": 5,
          "use-for-non-local-users": true,
          "tacacsplus": {
            "host": "10.27.28.44",
            "auth-port": 49,
            "timeout": 7000,
            "shared-secret-credential": "credential_2",
            "single-connect": true
          }
        }
      },
      "ExternalPolicy-IncorrectAuth-Method1": {
        "title": "ExternalPolicy-IncorrectAuth-Method1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Expected keys 'List(name)' to match in both the path and the document"
        }
      },
      "ExternalPolicy-IncorrectName1": {
        "title": "ExternalPolicy-IncorrectName1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Expected keys 'List(name)' to match in both the path and the document"
        }
      },
      "GetExternalPolicy-Success": {
        "title": "GetExternalPolicy-Success",
        "required": [
          "name",
          "use-for-non-local-users",
          "retry-times",
          "internal"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "use-for-non-local-users": {
            "type": "boolean"
          },
          "retry-times": {
            "type": "integer",
            "format": "int32"
          },
          "internal": {
            "$ref": "#/components/schemas/Internal"
          }
        }
      },
      "DeleteExternalPolicy-PolicyDoesntExist1": {
        "title": "DeleteExternalPolicy-PolicyDoesntExist1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Could not find path List(adtran-auth-config-external, auth-methods, auth-method=test-policy-not-exists)"
        }
      },
      "UpdateLoginBannerRequest": {
        "title": "UpdateLoginBannerRequest",
        "required": [
          "login-screen"
        ],
        "type": "object",
        "properties": {
          "login-screen": {
            "$ref": "#/components/schemas/LoginScreen"
          }
        },
        "example": {
          "login-screen": {
            "banner-message": "{{login-banner-message}}",
            "admin-contact": "{{login-banner-email}}"
          }
        }
      },
      "LoginScreen": {
        "title": "LoginScreen",
        "required": [
          "banner-message",
          "admin-contact"
        ],
        "type": "object",
        "properties": {
          "banner-message": {
            "type": "string"
          },
          "admin-contact": {
            "type": "string"
          }
        },
        "example": {
          "banner-message": "{{login-banner-message}}",
          "admin-contact": "{{login-banner-email}}"
        }
      },
      "GetLoginBanner": {
        "title": "GetLoginBanner",
        "required": [
          "login-screen"
        ],
        "type": "object",
        "properties": {
          "login-screen": {
            "$ref": "#/components/schemas/LoginScreen"
          }
        },
        "example": {
          "login-screen": {
            "banner-message": "ADTRAN is a leading global provider of networking and communications equipment.\n\nOur products enable voice, data, video and Internet communications across a variety of network infrastructures. Our solutions are currently in use by service providers, private enterprises, government organizations and millions of individual users worldwide.",
            "admin-contact": ""
          }
        }
      },
      "ScheduleRolloverRequest": {
        "title": "ScheduleRolloverRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input"
          }
        },
        "example": {
          "input": {
            "cron-expression": "0 0 0/6 * * ? *"
          }
        }
      },
      "Input": {
        "title": "Input",
        "required": [
          "cron-expression"
        ],
        "type": "object",
        "properties": {
          "cron-expression": {
            "type": "string"
          }
        },
        "example": {
          "cron-expression": "0 0 0/6 * * ? *"
        }
      },
      "ScheduleRollover": {
        "title": "ScheduleRollover",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Updated cron-expression for rollover attempt successfully"
        }
      },
      "GetAllRolloverIndices-Success": {
        "title": "GetAllRolloverIndices-Success",
        "required": [
          "indices"
        ],
        "type": "object",
        "properties": {
          "indices": {
            "$ref": "#/components/schemas/Indices"
          }
        },
        "example": {
          "indices": {
            "index": [
              {
                "alias-name": "device-configuration-backup",
                "is-index-rollover": false,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "events-history",
                "is-index-rollover": true,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "events-latest",
                "is-index-rollover": false,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "firefly-aaa-accounting",
                "is-index-rollover": true,
                "delete-conditions": {
                  "max-allowed-indices": 14
                },
                "rollover-conditions": {
                  "max-size": "1gb",
                  "max-age": "7d"
                }
              },
              {
                "alias-name": "job-manager",
                "is-index-rollover": true,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "job-manager-latest",
                "is-index-rollover": true,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "mcp-hardware-tracking",
                "is-index-rollover": true,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "mcp-subscriber-tracking",
                "is-index-rollover": true,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "object-status-history",
                "is-index-rollover": true,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "object-status-latest",
                "is-index-rollover": false,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "script-exec-command",
                "is-index-rollover": true,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "script-exec-command-latest",
                "is-index-rollover": true,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "script-exec-log",
                "is-index-rollover": true,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "upgrade-summary-report",
                "is-index-rollover": true,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "upgrade-summary-report-latest",
                "is-index-rollover": true,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "yds-bundle",
                "is-index-rollover": true,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "yds-bundle-latest",
                "is-index-rollover": false,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "yds-data-center",
                "is-index-rollover": true,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "yds-data-center-latest",
                "is-index-rollover": false,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "yds-device",
                "is-index-rollover": true,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "yds-device-latest",
                "is-index-rollover": false,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "yds-interface",
                "is-index-rollover": true,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "yds-interface-latest",
                "is-index-rollover": false,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "yds-inventory",
                "is-index-rollover": true,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "yds-inventory-latest",
                "is-index-rollover": false,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "yds-job",
                "is-index-rollover": true,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "yds-job-latest",
                "is-index-rollover": false,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "yds-label",
                "is-index-rollover": true,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "yds-label-latest",
                "is-index-rollover": false,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "yds-management-domain",
                "is-index-rollover": true,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "yds-management-domain-latest",
                "is-index-rollover": false,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "yds-profile",
                "is-index-rollover": true,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "yds-profile-latest",
                "is-index-rollover": false,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "yds-profile-vector",
                "is-index-rollover": true,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "yds-profile-vector-latest",
                "is-index-rollover": false,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "yds-provider",
                "is-index-rollover": true,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "yds-provider-latest",
                "is-index-rollover": false,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "yds-server",
                "is-index-rollover": true,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "yds-server-latest",
                "is-index-rollover": false,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "yds-service",
                "is-index-rollover": true,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "yds-service-latest",
                "is-index-rollover": false,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "yds-yang",
                "is-index-rollover": true,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              },
              {
                "alias-name": "yds-yang-latest",
                "is-index-rollover": false,
                "delete-conditions": {
                  "max-allowed-indices": 15
                },
                "rollover-conditions": {
                  "max-size": "1gb"
                }
              }
            ]
          }
        }
      },
      "Indices": {
        "title": "Indices",
        "required": [
          "index"
        ],
        "type": "object",
        "properties": {
          "index": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Index"
            },
            "description": ""
          }
        },
        "example": {
          "index": [
            {
              "alias-name": "device-configuration-backup",
              "is-index-rollover": false,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "events-history",
              "is-index-rollover": true,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "events-latest",
              "is-index-rollover": false,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "firefly-aaa-accounting",
              "is-index-rollover": true,
              "delete-conditions": {
                "max-allowed-indices": 14
              },
              "rollover-conditions": {
                "max-size": "1gb",
                "max-age": "7d"
              }
            },
            {
              "alias-name": "job-manager",
              "is-index-rollover": true,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "job-manager-latest",
              "is-index-rollover": true,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "mcp-hardware-tracking",
              "is-index-rollover": true,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "mcp-subscriber-tracking",
              "is-index-rollover": true,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "object-status-history",
              "is-index-rollover": true,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "object-status-latest",
              "is-index-rollover": false,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "script-exec-command",
              "is-index-rollover": true,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "script-exec-command-latest",
              "is-index-rollover": true,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "script-exec-log",
              "is-index-rollover": true,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "upgrade-summary-report",
              "is-index-rollover": true,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "upgrade-summary-report-latest",
              "is-index-rollover": true,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "yds-bundle",
              "is-index-rollover": true,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "yds-bundle-latest",
              "is-index-rollover": false,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "yds-data-center",
              "is-index-rollover": true,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "yds-data-center-latest",
              "is-index-rollover": false,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "yds-device",
              "is-index-rollover": true,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "yds-device-latest",
              "is-index-rollover": false,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "yds-interface",
              "is-index-rollover": true,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "yds-interface-latest",
              "is-index-rollover": false,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "yds-inventory",
              "is-index-rollover": true,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "yds-inventory-latest",
              "is-index-rollover": false,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "yds-job",
              "is-index-rollover": true,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "yds-job-latest",
              "is-index-rollover": false,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "yds-label",
              "is-index-rollover": true,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "yds-label-latest",
              "is-index-rollover": false,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "yds-management-domain",
              "is-index-rollover": true,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "yds-management-domain-latest",
              "is-index-rollover": false,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "yds-profile",
              "is-index-rollover": true,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "yds-profile-latest",
              "is-index-rollover": false,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "yds-profile-vector",
              "is-index-rollover": true,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "yds-profile-vector-latest",
              "is-index-rollover": false,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "yds-provider",
              "is-index-rollover": true,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "yds-provider-latest",
              "is-index-rollover": false,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "yds-server",
              "is-index-rollover": true,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "yds-server-latest",
              "is-index-rollover": false,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "yds-service",
              "is-index-rollover": true,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "yds-service-latest",
              "is-index-rollover": false,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "yds-yang",
              "is-index-rollover": true,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            },
            {
              "alias-name": "yds-yang-latest",
              "is-index-rollover": false,
              "delete-conditions": {
                "max-allowed-indices": 15
              },
              "rollover-conditions": {
                "max-size": "1gb"
              }
            }
          ]
        }
      },
      "Index": {
        "title": "Index",
        "required": [
          "alias-name",
          "is-index-rollover",
          "delete-conditions",
          "rollover-conditions"
        ],
        "type": "object",
        "properties": {
          "alias-name": {
            "type": "string"
          },
          "is-index-rollover": {
            "type": "boolean"
          },
          "delete-conditions": {
            "$ref": "#/components/schemas/DeleteConditions"
          },
          "rollover-conditions": {
            "$ref": "#/components/schemas/RolloverConditions"
          }
        },
        "example": {
          "alias-name": "device-configuration-backup",
          "is-index-rollover": false,
          "delete-conditions": {
            "max-allowed-indices": 15
          },
          "rollover-conditions": {
            "max-size": "1gb"
          }
        }
      },
      "DeleteConditions": {
        "title": "DeleteConditions",
        "required": [
          "max-allowed-indices"
        ],
        "type": "object",
        "properties": {
          "max-allowed-indices": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "max-allowed-indices": 15
        }
      },
      "RolloverConditions": {
        "title": "RolloverConditions",
        "required": [
          "max-size"
        ],
        "type": "object",
        "properties": {
          "max-size": {
            "type": "string"
          },
          "max-age": {
            "type": "string"
          }
        },
        "example": {
          "max-size": "1gb"
        }
      },
      "ExportInterfaceInventoryRequest": {
        "title": "ExportInterfaceInventoryRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input1"
          }
        },
        "example": {
          "input": {
            "type": "interface",
            "filters": [
              {
                "field": "interface-type",
                "value-list": [
                  "Generic"
                ],
                "exact-match": false
              },
              {
                "field": "state",
                "value-list": [
                  "activated"
                ],
                "exact-match": false
              }
            ]
          }
        }
      },
      "Input1": {
        "title": "Input1",
        "required": [
          "type",
          "filters"
        ],
        "type": "object",
        "properties": {
          "type": {
            "type": "string"
          },
          "filters": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Filter"
            },
            "description": ""
          }
        },
        "example": {
          "type": "interface",
          "filters": [
            {
              "field": "interface-type",
              "value-list": [
                "Generic"
              ],
              "exact-match": false
            },
            {
              "field": "state",
              "value-list": [
                "activated"
              ],
              "exact-match": false
            }
          ]
        }
      },
      "Filter": {
        "title": "Filter",
        "required": [
          "field",
          "value-list",
          "exact-match"
        ],
        "type": "object",
        "properties": {
          "field": {
            "type": "string"
          },
          "value-list": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "exact-match": {
            "type": "boolean"
          }
        },
        "example": {
          "field": "interface-type",
          "value-list": [
            "Generic"
          ],
          "exact-match": false
        }
      },
      "ExportDeviceInventoryRequest": {
        "title": "ExportDeviceInventoryRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input1"
          }
        },
        "example": {
          "input": {
            "type": "device",
            "filters": [
              {
                "field": "model-name",
                "value-list": [
                  "Generic"
                ],
                "exact-match": false
              },
              {
                "field": "state",
                "value-list": [
                  "activated"
                ],
                "exact-match": false
              }
            ]
          }
        }
      },
      "ExportActiveEventsalarmsRequest": {
        "title": "ExportActiveEventsalarmsRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input1"
          }
        },
        "example": {
          "input": {
            "type": "events-active",
            "filters": [
              {
                "field": "identity",
                "value-list": [
                  "link-down-alarm"
                ],
                "exact-match": false
              },
              {
                "field": "severity",
                "value-list": [
                  "Critical"
                ],
                "exact-match": false
              }
            ]
          }
        }
      },
      "ExportAuditLogRequest": {
        "title": "ExportAuditLogRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input1"
          }
        },
        "example": {
          "input": {
            "type": "audit-logs",
            "filters": [
              {
                "field": "username",
                "value-list": [
                  "ADMIN"
                ],
                "exact-match": false
              },
              {
                "field": "response",
                "value-list": [
                  "200 OK"
                ],
                "exact-match": false
              }
            ]
          }
        }
      },
      "ExportHistoricEventsRequest": {
        "title": "ExportHistoricEventsRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input1"
          }
        },
        "example": {
          "input": {
            "type": "events-historic",
            "filters": [
              {
                "field": "source",
                "value-list": [
                  "mosaic-cp-cda"
                ],
                "exact-match": false
              },
              {
                "field": "identity",
                "value-list": [
                  "create"
                ],
                "exact-match": false
              }
            ]
          }
        }
      },
      "ExportServiceInventoryRequest": {
        "title": "ExportServiceInventoryRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input1"
          }
        },
        "example": {
          "input": {
            "type": "service",
            "filters": [
              {
                "field": "service-id",
                "value-list": [
                  "{{services-extra-svc-name}}"
                ],
                "exact-match": false
              }
            ]
          }
        }
      },
      "SetInactivityLogoffTimeRequest": {
        "title": "SetInactivityLogoffTimeRequest",
        "required": [
          "settings"
        ],
        "type": "object",
        "properties": {
          "settings": {
            "$ref": "#/components/schemas/Settings"
          }
        },
        "example": {
          "settings": {
            "user-activity": {
              "inactivity-time-logoff": 100
            }
          }
        }
      },
      "Settings": {
        "title": "Settings",
        "required": [
          "user-activity"
        ],
        "type": "object",
        "properties": {
          "user-activity": {
            "$ref": "#/components/schemas/UserActivity"
          }
        },
        "example": {
          "user-activity": {
            "inactivity-time-logoff": 100
          }
        }
      },
      "UserActivity": {
        "title": "UserActivity",
        "required": [
          "inactivity-time-logoff"
        ],
        "type": "object",
        "properties": {
          "inactivity-time-logoff": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "inactivity-time-logoff": 100
        }
      },
      "SetInactivityLogoffTime-Failure1": {
        "title": "SetInactivityLogoffTime-Failure1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Unrecognized token 'a': was expecting (JSON String, Number, Array, Object or token 'null', 'true' or 'false')\n at [Source: (String)\"{\r\n    \"settings\":\r\n        {\r\n            \"user-activity\":{\"inactivity-time-logoff\":a}\r\n        }\r\n}\"; line: 4, column: 56]"
        }
      },
      "GetInactivityAutologoffTime-Success": {
        "title": "GetInactivityAutologoffTime-Success",
        "required": [
          "settings"
        ],
        "type": "object",
        "properties": {
          "settings": {
            "$ref": "#/components/schemas/Settings1"
          }
        },
        "example": {
          "settings": {
            "deferred-intent": {
              "enable-deferral": false
            },
            "gfast": {},
            "user-activity": {
              "inactivity-time-logoff": 100
            }
          }
        }
      },
      "Settings1": {
        "title": "Settings1",
        "required": [
          "deferred-intent",
          "gfast",
          "user-activity"
        ],
        "type": "object",
        "properties": {
          "deferred-intent": {
            "$ref": "#/components/schemas/DeferredIntent"
          },
          "gfast": {
            "type": "object"
          },
          "user-activity": {
            "$ref": "#/components/schemas/UserActivity"
          }
        },
        "example": {
          "deferred-intent": {
            "enable-deferral": false
          },
          "gfast": {},
          "user-activity": {
            "inactivity-time-logoff": 100
          }
        }
      },
      "DeferredIntent": {
        "title": "DeferredIntent",
        "required": [
          "enable-deferral"
        ],
        "type": "object",
        "properties": {
          "enable-deferral": {
            "type": "boolean"
          }
        },
        "example": {
          "enable-deferral": false
        }
      },
      "GetSingleSignOnOIDCProvider-Success": {
        "title": "GetSingleSignOnOIDCProvider-Success",
        "required": [
          "oidc-provider"
        ],
        "type": "object",
        "properties": {
          "oidc-provider": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "oidc-provider": []
        }
      },
      "SetSingleSignOnOIDCProviderRequest": {
        "title": "SetSingleSignOnOIDCProviderRequest",
        "required": [
          "oidc-provider"
        ],
        "type": "object",
        "properties": {
          "oidc-provider": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OidcProvider"
            },
            "description": ""
          }
        },
        "example": {
          "oidc-provider": [
            {
              "name": "OktaServer",
              "issuer-uri": "https://id-dev.adtran.cloud/oauth2/default",
              "client-id": "0oa3t35itpeQzWEyT5d7"
            }
          ]
        }
      },
      "OidcProvider": {
        "title": "OidcProvider",
        "required": [
          "name",
          "issuer-uri",
          "client-id"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "issuer-uri": {
            "type": "string"
          },
          "client-id": {
            "type": "string"
          }
        },
        "example": {
          "name": "OktaServer",
          "issuer-uri": "https://id-dev.adtran.cloud/oauth2/default",
          "client-id": "0oa3t35itpeQzWEyT5d7"
        }
      },
      "GetAllEventsRequest": {
        "title": "GetAllEventsRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input7"
          }
        },
        "example": {
          "input": {
            "summary-field": "severity",
            "current": false,
            "cursor": 0,
            "result-size": 2
          }
        }
      },
      "Input7": {
        "title": "Input7",
        "required": [
          "summary-field",
          "current",
          "cursor",
          "result-size"
        ],
        "type": "object",
        "properties": {
          "summary-field": {
            "type": "string"
          },
          "current": {
            "type": "boolean"
          },
          "cursor": {
            "type": "integer",
            "format": "int32"
          },
          "result-size": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "summary-field": "severity",
          "current": false,
          "cursor": 0,
          "result-size": 2
        }
      },
      "GetAllEvents": {
        "title": "GetAllEvents",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output"
          }
        },
        "example": {
          "output": {
            "events": {
              "cursor": 2,
              "event": [
                {
                  "description": "Validation failed of action activate device dpu-0001. Action 'activate' not allowed for dpu-0001 with state 'activated'",
                  "event-identity": "activate dpu-0001",
                  "object-name": "dpu-0001",
                  "object-type": "device",
                  "raised-timestamp": "2021-01-07T19:41:36+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/07 07:41:36PM+0000",
                  "timestamp-iso": "2021-01-07T19:41:36+00:00"
                },
                {
                  "description": "Failed action of deactivate device dpu-0001. Master timeout reached",
                  "event-identity": "deactivate dpu-0001",
                  "object-name": "dpu-0001",
                  "object-type": "device",
                  "raised-timestamp": "2021-01-07T19:41:36+00:00",
                  "severity": "Major",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/07 07:41:36PM+0000",
                  "timestamp-iso": "2021-01-07T19:41:36+00:00"
                }
              ],
              "total-count": 18709
            }
          }
        }
      },
      "Output": {
        "title": "Output",
        "required": [
          "events"
        ],
        "type": "object",
        "properties": {
          "events": {
            "$ref": "#/components/schemas/Events"
          }
        },
        "example": {
          "events": {
            "cursor": 2,
            "event": [
              {
                "description": "Validation failed of action activate device dpu-0001. Action 'activate' not allowed for dpu-0001 with state 'activated'",
                "event-identity": "activate dpu-0001",
                "object-name": "dpu-0001",
                "object-type": "device",
                "raised-timestamp": "2021-01-07T19:41:36+00:00",
                "severity": "Informational",
                "source": "mosaic-cp-cda",
                "timestamp": "2021/01/07 07:41:36PM+0000",
                "timestamp-iso": "2021-01-07T19:41:36+00:00"
              },
              {
                "description": "Failed action of deactivate device dpu-0001. Master timeout reached",
                "event-identity": "deactivate dpu-0001",
                "object-name": "dpu-0001",
                "object-type": "device",
                "raised-timestamp": "2021-01-07T19:41:36+00:00",
                "severity": "Major",
                "source": "mosaic-cp-cda",
                "timestamp": "2021/01/07 07:41:36PM+0000",
                "timestamp-iso": "2021-01-07T19:41:36+00:00"
              }
            ],
            "total-count": 18709
          }
        }
      },
      "Events": {
        "title": "Events",
        "required": [
          "cursor",
          "event",
          "total-count"
        ],
        "type": "object",
        "properties": {
          "cursor": {
            "type": "integer",
            "format": "int32"
          },
          "event": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Event"
            },
            "description": ""
          },
          "total-count": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "cursor": 2,
          "event": [
            {
              "description": "Validation failed of action activate device dpu-0001. Action 'activate' not allowed for dpu-0001 with state 'activated'",
              "event-identity": "activate dpu-0001",
              "object-name": "dpu-0001",
              "object-type": "device",
              "raised-timestamp": "2021-01-07T19:41:36+00:00",
              "severity": "Informational",
              "source": "mosaic-cp-cda",
              "timestamp": "2021/01/07 07:41:36PM+0000",
              "timestamp-iso": "2021-01-07T19:41:36+00:00"
            },
            {
              "description": "Failed action of deactivate device dpu-0001. Master timeout reached",
              "event-identity": "deactivate dpu-0001",
              "object-name": "dpu-0001",
              "object-type": "device",
              "raised-timestamp": "2021-01-07T19:41:36+00:00",
              "severity": "Major",
              "source": "mosaic-cp-cda",
              "timestamp": "2021/01/07 07:41:36PM+0000",
              "timestamp-iso": "2021-01-07T19:41:36+00:00"
            }
          ],
          "total-count": 18709
        }
      },
      "Event": {
        "title": "Event",
        "required": [
          "description",
          "event-identity",
          "object-name",
          "object-type",
          "raised-timestamp",
          "severity",
          "source",
          "timestamp",
          "timestamp-iso"
        ],
        "type": "object",
        "properties": {
          "description": {
            "type": "string"
          },
          "event-identity": {
            "type": "string"
          },
          "object-name": {
            "type": "string"
          },
          "object-type": {
            "type": "string"
          },
          "raised-timestamp": {
            "type": "string"
          },
          "severity": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "timestamp": {
            "type": "string"
          },
          "timestamp-iso": {
            "type": "string"
          }
        },
        "example": {
          "description": "Validation failed of action activate device dpu-0001. Action 'activate' not allowed for dpu-0001 with state 'activated'",
          "event-identity": "activate dpu-0001",
          "object-name": "dpu-0001",
          "object-type": "device",
          "raised-timestamp": "2021-01-07T19:41:36+00:00",
          "severity": "Informational",
          "source": "mosaic-cp-cda",
          "timestamp": "2021/01/07 07:41:36PM+0000",
          "timestamp-iso": "2021-01-07T19:41:36+00:00"
        }
      },
      "SortingBasedonEventSourceRequest": {
        "title": "SortingBasedonEventSourceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input8"
          }
        },
        "example": {
          "input": {
            "summary-field": "severity",
            "current": false,
            "cursor": 0,
            "result-size": 25,
            "exact-match": true,
            "sort-by": "source",
            "order-by": "asc"
          }
        }
      },
      "Input8": {
        "title": "Input8",
        "required": [
          "summary-field",
          "current",
          "cursor",
          "result-size",
          "exact-match",
          "sort-by",
          "order-by"
        ],
        "type": "object",
        "properties": {
          "summary-field": {
            "type": "string"
          },
          "current": {
            "type": "boolean"
          },
          "cursor": {
            "type": "integer",
            "format": "int32"
          },
          "result-size": {
            "type": "integer",
            "format": "int32"
          },
          "exact-match": {
            "type": "boolean"
          },
          "sort-by": {
            "type": "string"
          },
          "order-by": {
            "type": "string"
          }
        },
        "example": {
          "summary-field": "severity",
          "current": false,
          "cursor": 0,
          "result-size": 25,
          "exact-match": true,
          "sort-by": "source",
          "order-by": "asc"
        }
      },
      "SortingBasedonEventSource": {
        "title": "SortingBasedonEventSource",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output1"
          }
        },
        "example": {
          "output": {
            "events": {
              "cursor": 25,
              "event": [
                {
                  "description": "Autoupgrade: Target version not on the device; downloading and activating software on the device",
                  "event-identity": "Software Download",
                  "object-name": "",
                  "object-type": "",
                  "raised-timestamp": "2021-01-05T21:42:37.418692+00:00",
                  "severity": "Informational",
                  "source": "OLT",
                  "timestamp": "2021/01/05 09:42:37PM+0000",
                  "timestamp-iso": "2021-01-05T21:42:37.418692+00:00"
                },
                {
                  "description": "Warning: upgrade failed! Target version is not defined",
                  "event-identity": "Software Download",
                  "object-name": "",
                  "object-type": "",
                  "raised-timestamp": "2021-01-05T21:42:38.793588+00:00",
                  "severity": "Warning",
                  "source": "OLT",
                  "timestamp": "2021/01/05 09:42:38PM+0000",
                  "timestamp-iso": "2021-01-05T21:42:38.793588+00:00"
                },
                {
                  "cleared-timestamp": "2021-01-05T21:42:25+00:00",
                  "description": "netconf Session 'OLT' established because the session was established",
                  "event-identity": "NETCONF-session-disconnect",
                  "object-name": "OLT",
                  "object-type": "device",
                  "severity": "Cleared",
                  "source": "OLT",
                  "timestamp": "2021/01/05 09:42:25PM+0000",
                  "timestamp-iso": "2021-01-05T21:42:25+00:00"
                },
                {
                  "description": "Indicates a device-unit-installed notification",
                  "event-identity": "adtran-pma:device-unit-installed",
                  "object-name": "",
                  "object-type": "",
                  "raised-timestamp": "2021-01-05T21:44:17+00:00",
                  "severity": "Informational",
                  "source": "dpu-0001",
                  "timestamp": "2021/01/05 09:44:17PM+0000",
                  "timestamp-iso": "2021-01-05T21:44:17+00:00"
                },
                {
                  "description": "Indicates a device-unit-installed notification",
                  "event-identity": "adtran-pma:device-unit-installed",
                  "object-name": "",
                  "object-type": "",
                  "raised-timestamp": "2021-01-05T21:44:11+00:00",
                  "severity": "Informational",
                  "source": "dpu-0002",
                  "timestamp": "2021/01/05 09:44:11PM+0000",
                  "timestamp-iso": "2021-01-05T21:44:11+00:00"
                },
                {
                  "description": "Indicates a device-unit-installed notification",
                  "event-identity": "adtran-pma:device-unit-installed",
                  "object-name": "",
                  "object-type": "",
                  "raised-timestamp": "2021-01-05T21:44:04+00:00",
                  "severity": "Informational",
                  "source": "dpu-0003",
                  "timestamp": "2021/01/05 09:44:04PM+0000",
                  "timestamp-iso": "2021-01-05T21:44:04+00:00"
                },
                {
                  "cleared-timestamp": "2021-01-05T21:43:25+00:00",
                  "description": "Subscription to server garfield-simulator_devices failed or server is disconnected",
                  "event-identity": "server-is-offline-alarm",
                  "object-name": "",
                  "object-type": "",
                  "severity": "Cleared",
                  "source": "garfield-simulator_devices",
                  "timestamp": "2021/01/05 09:43:25PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:25+00:00"
                },
                {
                  "cleared-timestamp": "2021-01-05T21:43:25+00:00",
                  "description": "Subscription to server garfield-simulator_pmas failed or server is disconnected",
                  "event-identity": "server-is-offline-alarm",
                  "object-name": "",
                  "object-type": "",
                  "severity": "Cleared",
                  "source": "garfield-simulator_pmas",
                  "timestamp": "2021/01/05 09:43:25PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:25+00:00"
                },
                {
                  "description": "Finished action of deploy management-domain garfield-simulator",
                  "event-identity": "deploy garfield-simulator",
                  "object-name": "",
                  "object-type": "",
                  "raised-timestamp": "2021-01-05T21:43:28+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:43:28PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:28+00:00"
                },
                {
                  "description": "Finished action of activate management-domain garfield-simulator",
                  "event-identity": "activate garfield-simulator",
                  "object-name": "",
                  "object-type": "",
                  "raised-timestamp": "2021-01-05T21:43:29+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:43:29PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:29+00:00"
                },
                {
                  "description": "Finished action of create interface dpu-uplink-int-0002",
                  "event-identity": "create dpu-uplink-int-0002",
                  "object-name": "dpu-uplink-int-0002",
                  "object-type": "interface",
                  "raised-timestamp": "2021-01-05T21:43:33+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:43:33PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:33+00:00"
                },
                {
                  "description": "Finished action of create interface dpu-uplink-int-0003",
                  "event-identity": "create dpu-uplink-int-0003",
                  "object-name": "dpu-uplink-int-0003",
                  "object-type": "interface",
                  "raised-timestamp": "2021-01-05T21:43:33+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:43:33PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:33+00:00"
                },
                {
                  "description": "Finished action of create interface dpu-uplink-int-0001",
                  "event-identity": "create dpu-uplink-int-0001",
                  "object-name": "dpu-uplink-int-0001",
                  "object-type": "interface",
                  "raised-timestamp": "2021-01-05T21:43:34+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:43:34PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:34+00:00"
                },
                {
                  "description": "Finished action of deploy device OLT",
                  "event-identity": "deploy OLT",
                  "object-name": "OLT",
                  "object-type": "device",
                  "raised-timestamp": "2021-01-05T21:42:36+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:42:36PM+0000",
                  "timestamp-iso": "2021-01-05T21:42:36+00:00"
                },
                {
                  "description": "Finished action of activate device OLT",
                  "event-identity": "activate OLT",
                  "object-name": "OLT",
                  "object-type": "device",
                  "raised-timestamp": "2021-01-05T21:42:40+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:42:40PM+0000",
                  "timestamp-iso": "2021-01-05T21:42:40+00:00"
                },
                {
                  "description": "Finished action of create server garfield-simulator",
                  "event-identity": "create garfield-simulator",
                  "object-name": "garfield-simulator",
                  "object-type": "server",
                  "raised-timestamp": "2021-01-05T21:42:48+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:42:48PM+0000",
                  "timestamp-iso": "2021-01-05T21:42:48+00:00"
                },
                {
                  "description": "Finished action of create device OLT",
                  "event-identity": "create OLT",
                  "object-name": "OLT",
                  "object-type": "device",
                  "raised-timestamp": "2021-01-05T21:41:56+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:41:56PM+0000",
                  "timestamp-iso": "2021-01-05T21:41:56+00:00"
                },
                {
                  "description": "Finished action of deploy interface OLT-Uplink",
                  "event-identity": "deploy OLT-Uplink",
                  "object-name": "OLT-Uplink",
                  "object-type": "interface",
                  "raised-timestamp": "2021-01-05T21:41:49+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:41:49PM+0000",
                  "timestamp-iso": "2021-01-05T21:41:49+00:00"
                },
                {
                  "description": "Finished action of create interface OLT-Uplink",
                  "event-identity": "create OLT-Uplink",
                  "object-name": "OLT-Uplink",
                  "object-type": "interface",
                  "raised-timestamp": "2021-01-05T21:41:40+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:41:40PM+0000",
                  "timestamp-iso": "2021-01-05T21:41:40+00:00"
                },
                {
                  "description": "Finished action of create management-domain garfield-simulator",
                  "event-identity": "create garfield-simulator",
                  "object-name": "",
                  "object-type": "",
                  "raised-timestamp": "2021-01-05T21:43:28+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:43:28PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:28+00:00"
                },
                {
                  "description": "Finished action of activate interface OLT-Uplink",
                  "event-identity": "activate OLT-Uplink",
                  "object-name": "OLT-Uplink",
                  "object-type": "interface",
                  "raised-timestamp": "2021-01-05T21:41:54+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:41:54PM+0000",
                  "timestamp-iso": "2021-01-05T21:41:54+00:00"
                },
                {
                  "description": "Finished action of deploy interface dpu-uplink-int-0002",
                  "event-identity": "deploy dpu-uplink-int-0002",
                  "object-name": "dpu-uplink-int-0002",
                  "object-type": "interface",
                  "raised-timestamp": "2021-01-05T21:43:34+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:43:34PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:34+00:00"
                },
                {
                  "description": "Finished action of deploy interface dpu-uplink-int-0003",
                  "event-identity": "deploy dpu-uplink-int-0003",
                  "object-name": "dpu-uplink-int-0003",
                  "object-type": "interface",
                  "raised-timestamp": "2021-01-05T21:43:35+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:43:35PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:35+00:00"
                },
                {
                  "description": "Finished action of activate interface dpu-uplink-int-0002",
                  "event-identity": "activate dpu-uplink-int-0002",
                  "object-name": "dpu-uplink-int-0002",
                  "object-type": "interface",
                  "raised-timestamp": "2021-01-05T21:43:36+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:43:36PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:36+00:00"
                },
                {
                  "description": "Finished action of deploy interface dpu-uplink-int-0001",
                  "event-identity": "deploy dpu-uplink-int-0001",
                  "object-name": "dpu-uplink-int-0001",
                  "object-type": "interface",
                  "raised-timestamp": "2021-01-05T21:43:36+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:43:36PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:36+00:00"
                }
              ],
              "total-count": 58
            }
          }
        }
      },
      "Output1": {
        "title": "Output1",
        "required": [
          "events"
        ],
        "type": "object",
        "properties": {
          "events": {
            "$ref": "#/components/schemas/Events1"
          }
        },
        "example": {
          "events": {
            "cursor": 25,
            "event": [
              {
                "description": "Autoupgrade: Target version not on the device; downloading and activating software on the device",
                "event-identity": "Software Download",
                "object-name": "",
                "object-type": "",
                "raised-timestamp": "2021-01-05T21:42:37.418692+00:00",
                "severity": "Informational",
                "source": "OLT",
                "timestamp": "2021/01/05 09:42:37PM+0000",
                "timestamp-iso": "2021-01-05T21:42:37.418692+00:00"
              },
              {
                "description": "Warning: upgrade failed! Target version is not defined",
                "event-identity": "Software Download",
                "object-name": "",
                "object-type": "",
                "raised-timestamp": "2021-01-05T21:42:38.793588+00:00",
                "severity": "Warning",
                "source": "OLT",
                "timestamp": "2021/01/05 09:42:38PM+0000",
                "timestamp-iso": "2021-01-05T21:42:38.793588+00:00"
              },
              {
                "cleared-timestamp": "2021-01-05T21:42:25+00:00",
                "description": "netconf Session 'OLT' established because the session was established",
                "event-identity": "NETCONF-session-disconnect",
                "object-name": "OLT",
                "object-type": "device",
                "severity": "Cleared",
                "source": "OLT",
                "timestamp": "2021/01/05 09:42:25PM+0000",
                "timestamp-iso": "2021-01-05T21:42:25+00:00"
              },
              {
                "description": "Indicates a device-unit-installed notification",
                "event-identity": "adtran-pma:device-unit-installed",
                "object-name": "",
                "object-type": "",
                "raised-timestamp": "2021-01-05T21:44:17+00:00",
                "severity": "Informational",
                "source": "dpu-0001",
                "timestamp": "2021/01/05 09:44:17PM+0000",
                "timestamp-iso": "2021-01-05T21:44:17+00:00"
              },
              {
                "description": "Indicates a device-unit-installed notification",
                "event-identity": "adtran-pma:device-unit-installed",
                "object-name": "",
                "object-type": "",
                "raised-timestamp": "2021-01-05T21:44:11+00:00",
                "severity": "Informational",
                "source": "dpu-0002",
                "timestamp": "2021/01/05 09:44:11PM+0000",
                "timestamp-iso": "2021-01-05T21:44:11+00:00"
              },
              {
                "description": "Indicates a device-unit-installed notification",
                "event-identity": "adtran-pma:device-unit-installed",
                "object-name": "",
                "object-type": "",
                "raised-timestamp": "2021-01-05T21:44:04+00:00",
                "severity": "Informational",
                "source": "dpu-0003",
                "timestamp": "2021/01/05 09:44:04PM+0000",
                "timestamp-iso": "2021-01-05T21:44:04+00:00"
              },
              {
                "cleared-timestamp": "2021-01-05T21:43:25+00:00",
                "description": "Subscription to server garfield-simulator_devices failed or server is disconnected",
                "event-identity": "server-is-offline-alarm",
                "object-name": "",
                "object-type": "",
                "severity": "Cleared",
                "source": "garfield-simulator_devices",
                "timestamp": "2021/01/05 09:43:25PM+0000",
                "timestamp-iso": "2021-01-05T21:43:25+00:00"
              },
              {
                "cleared-timestamp": "2021-01-05T21:43:25+00:00",
                "description": "Subscription to server garfield-simulator_pmas failed or server is disconnected",
                "event-identity": "server-is-offline-alarm",
                "object-name": "",
                "object-type": "",
                "severity": "Cleared",
                "source": "garfield-simulator_pmas",
                "timestamp": "2021/01/05 09:43:25PM+0000",
                "timestamp-iso": "2021-01-05T21:43:25+00:00"
              },
              {
                "description": "Finished action of deploy management-domain garfield-simulator",
                "event-identity": "deploy garfield-simulator",
                "object-name": "",
                "object-type": "",
                "raised-timestamp": "2021-01-05T21:43:28+00:00",
                "severity": "Informational",
                "source": "mosaic-cp-cda",
                "timestamp": "2021/01/05 09:43:28PM+0000",
                "timestamp-iso": "2021-01-05T21:43:28+00:00"
              },
              {
                "description": "Finished action of activate management-domain garfield-simulator",
                "event-identity": "activate garfield-simulator",
                "object-name": "",
                "object-type": "",
                "raised-timestamp": "2021-01-05T21:43:29+00:00",
                "severity": "Informational",
                "source": "mosaic-cp-cda",
                "timestamp": "2021/01/05 09:43:29PM+0000",
                "timestamp-iso": "2021-01-05T21:43:29+00:00"
              },
              {
                "description": "Finished action of create interface dpu-uplink-int-0002",
                "event-identity": "create dpu-uplink-int-0002",
                "object-name": "dpu-uplink-int-0002",
                "object-type": "interface",
                "raised-timestamp": "2021-01-05T21:43:33+00:00",
                "severity": "Informational",
                "source": "mosaic-cp-cda",
                "timestamp": "2021/01/05 09:43:33PM+0000",
                "timestamp-iso": "2021-01-05T21:43:33+00:00"
              },
              {
                "description": "Finished action of create interface dpu-uplink-int-0003",
                "event-identity": "create dpu-uplink-int-0003",
                "object-name": "dpu-uplink-int-0003",
                "object-type": "interface",
                "raised-timestamp": "2021-01-05T21:43:33+00:00",
                "severity": "Informational",
                "source": "mosaic-cp-cda",
                "timestamp": "2021/01/05 09:43:33PM+0000",
                "timestamp-iso": "2021-01-05T21:43:33+00:00"
              },
              {
                "description": "Finished action of create interface dpu-uplink-int-0001",
                "event-identity": "create dpu-uplink-int-0001",
                "object-name": "dpu-uplink-int-0001",
                "object-type": "interface",
                "raised-timestamp": "2021-01-05T21:43:34+00:00",
                "severity": "Informational",
                "source": "mosaic-cp-cda",
                "timestamp": "2021/01/05 09:43:34PM+0000",
                "timestamp-iso": "2021-01-05T21:43:34+00:00"
              },
              {
                "description": "Finished action of deploy device OLT",
                "event-identity": "deploy OLT",
                "object-name": "OLT",
                "object-type": "device",
                "raised-timestamp": "2021-01-05T21:42:36+00:00",
                "severity": "Informational",
                "source": "mosaic-cp-cda",
                "timestamp": "2021/01/05 09:42:36PM+0000",
                "timestamp-iso": "2021-01-05T21:42:36+00:00"
              },
              {
                "description": "Finished action of activate device OLT",
                "event-identity": "activate OLT",
                "object-name": "OLT",
                "object-type": "device",
                "raised-timestamp": "2021-01-05T21:42:40+00:00",
                "severity": "Informational",
                "source": "mosaic-cp-cda",
                "timestamp": "2021/01/05 09:42:40PM+0000",
                "timestamp-iso": "2021-01-05T21:42:40+00:00"
              },
              {
                "description": "Finished action of create server garfield-simulator",
                "event-identity": "create garfield-simulator",
                "object-name": "garfield-simulator",
                "object-type": "server",
                "raised-timestamp": "2021-01-05T21:42:48+00:00",
                "severity": "Informational",
                "source": "mosaic-cp-cda",
                "timestamp": "2021/01/05 09:42:48PM+0000",
                "timestamp-iso": "2021-01-05T21:42:48+00:00"
              },
              {
                "description": "Finished action of create device OLT",
                "event-identity": "create OLT",
                "object-name": "OLT",
                "object-type": "device",
                "raised-timestamp": "2021-01-05T21:41:56+00:00",
                "severity": "Informational",
                "source": "mosaic-cp-cda",
                "timestamp": "2021/01/05 09:41:56PM+0000",
                "timestamp-iso": "2021-01-05T21:41:56+00:00"
              },
              {
                "description": "Finished action of deploy interface OLT-Uplink",
                "event-identity": "deploy OLT-Uplink",
                "object-name": "OLT-Uplink",
                "object-type": "interface",
                "raised-timestamp": "2021-01-05T21:41:49+00:00",
                "severity": "Informational",
                "source": "mosaic-cp-cda",
                "timestamp": "2021/01/05 09:41:49PM+0000",
                "timestamp-iso": "2021-01-05T21:41:49+00:00"
              },
              {
                "description": "Finished action of create interface OLT-Uplink",
                "event-identity": "create OLT-Uplink",
                "object-name": "OLT-Uplink",
                "object-type": "interface",
                "raised-timestamp": "2021-01-05T21:41:40+00:00",
                "severity": "Informational",
                "source": "mosaic-cp-cda",
                "timestamp": "2021/01/05 09:41:40PM+0000",
                "timestamp-iso": "2021-01-05T21:41:40+00:00"
              },
              {
                "description": "Finished action of create management-domain garfield-simulator",
                "event-identity": "create garfield-simulator",
                "object-name": "",
                "object-type": "",
                "raised-timestamp": "2021-01-05T21:43:28+00:00",
                "severity": "Informational",
                "source": "mosaic-cp-cda",
                "timestamp": "2021/01/05 09:43:28PM+0000",
                "timestamp-iso": "2021-01-05T21:43:28+00:00"
              },
              {
                "description": "Finished action of activate interface OLT-Uplink",
                "event-identity": "activate OLT-Uplink",
                "object-name": "OLT-Uplink",
                "object-type": "interface",
                "raised-timestamp": "2021-01-05T21:41:54+00:00",
                "severity": "Informational",
                "source": "mosaic-cp-cda",
                "timestamp": "2021/01/05 09:41:54PM+0000",
                "timestamp-iso": "2021-01-05T21:41:54+00:00"
              },
              {
                "description": "Finished action of deploy interface dpu-uplink-int-0002",
                "event-identity": "deploy dpu-uplink-int-0002",
                "object-name": "dpu-uplink-int-0002",
                "object-type": "interface",
                "raised-timestamp": "2021-01-05T21:43:34+00:00",
                "severity": "Informational",
                "source": "mosaic-cp-cda",
                "timestamp": "2021/01/05 09:43:34PM+0000",
                "timestamp-iso": "2021-01-05T21:43:34+00:00"
              },
              {
                "description": "Finished action of deploy interface dpu-uplink-int-0003",
                "event-identity": "deploy dpu-uplink-int-0003",
                "object-name": "dpu-uplink-int-0003",
                "object-type": "interface",
                "raised-timestamp": "2021-01-05T21:43:35+00:00",
                "severity": "Informational",
                "source": "mosaic-cp-cda",
                "timestamp": "2021/01/05 09:43:35PM+0000",
                "timestamp-iso": "2021-01-05T21:43:35+00:00"
              },
              {
                "description": "Finished action of activate interface dpu-uplink-int-0002",
                "event-identity": "activate dpu-uplink-int-0002",
                "object-name": "dpu-uplink-int-0002",
                "object-type": "interface",
                "raised-timestamp": "2021-01-05T21:43:36+00:00",
                "severity": "Informational",
                "source": "mosaic-cp-cda",
                "timestamp": "2021/01/05 09:43:36PM+0000",
                "timestamp-iso": "2021-01-05T21:43:36+00:00"
              },
              {
                "description": "Finished action of deploy interface dpu-uplink-int-0001",
                "event-identity": "deploy dpu-uplink-int-0001",
                "object-name": "dpu-uplink-int-0001",
                "object-type": "interface",
                "raised-timestamp": "2021-01-05T21:43:36+00:00",
                "severity": "Informational",
                "source": "mosaic-cp-cda",
                "timestamp": "2021/01/05 09:43:36PM+0000",
                "timestamp-iso": "2021-01-05T21:43:36+00:00"
              }
            ],
            "total-count": 58
          }
        }
      },
      "Events1": {
        "title": "Events1",
        "required": [
          "cursor",
          "event",
          "total-count"
        ],
        "type": "object",
        "properties": {
          "cursor": {
            "type": "integer",
            "format": "int32"
          },
          "event": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Event1"
            },
            "description": ""
          },
          "total-count": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "cursor": 25,
          "event": [
            {
              "description": "Autoupgrade: Target version not on the device; downloading and activating software on the device",
              "event-identity": "Software Download",
              "object-name": "",
              "object-type": "",
              "raised-timestamp": "2021-01-05T21:42:37.418692+00:00",
              "severity": "Informational",
              "source": "OLT",
              "timestamp": "2021/01/05 09:42:37PM+0000",
              "timestamp-iso": "2021-01-05T21:42:37.418692+00:00"
            },
            {
              "description": "Warning: upgrade failed! Target version is not defined",
              "event-identity": "Software Download",
              "object-name": "",
              "object-type": "",
              "raised-timestamp": "2021-01-05T21:42:38.793588+00:00",
              "severity": "Warning",
              "source": "OLT",
              "timestamp": "2021/01/05 09:42:38PM+0000",
              "timestamp-iso": "2021-01-05T21:42:38.793588+00:00"
            },
            {
              "cleared-timestamp": "2021-01-05T21:42:25+00:00",
              "description": "netconf Session 'OLT' established because the session was established",
              "event-identity": "NETCONF-session-disconnect",
              "object-name": "OLT",
              "object-type": "device",
              "severity": "Cleared",
              "source": "OLT",
              "timestamp": "2021/01/05 09:42:25PM+0000",
              "timestamp-iso": "2021-01-05T21:42:25+00:00"
            },
            {
              "description": "Indicates a device-unit-installed notification",
              "event-identity": "adtran-pma:device-unit-installed",
              "object-name": "",
              "object-type": "",
              "raised-timestamp": "2021-01-05T21:44:17+00:00",
              "severity": "Informational",
              "source": "dpu-0001",
              "timestamp": "2021/01/05 09:44:17PM+0000",
              "timestamp-iso": "2021-01-05T21:44:17+00:00"
            },
            {
              "description": "Indicates a device-unit-installed notification",
              "event-identity": "adtran-pma:device-unit-installed",
              "object-name": "",
              "object-type": "",
              "raised-timestamp": "2021-01-05T21:44:11+00:00",
              "severity": "Informational",
              "source": "dpu-0002",
              "timestamp": "2021/01/05 09:44:11PM+0000",
              "timestamp-iso": "2021-01-05T21:44:11+00:00"
            },
            {
              "description": "Indicates a device-unit-installed notification",
              "event-identity": "adtran-pma:device-unit-installed",
              "object-name": "",
              "object-type": "",
              "raised-timestamp": "2021-01-05T21:44:04+00:00",
              "severity": "Informational",
              "source": "dpu-0003",
              "timestamp": "2021/01/05 09:44:04PM+0000",
              "timestamp-iso": "2021-01-05T21:44:04+00:00"
            },
            {
              "cleared-timestamp": "2021-01-05T21:43:25+00:00",
              "description": "Subscription to server garfield-simulator_devices failed or server is disconnected",
              "event-identity": "server-is-offline-alarm",
              "object-name": "",
              "object-type": "",
              "severity": "Cleared",
              "source": "garfield-simulator_devices",
              "timestamp": "2021/01/05 09:43:25PM+0000",
              "timestamp-iso": "2021-01-05T21:43:25+00:00"
            },
            {
              "cleared-timestamp": "2021-01-05T21:43:25+00:00",
              "description": "Subscription to server garfield-simulator_pmas failed or server is disconnected",
              "event-identity": "server-is-offline-alarm",
              "object-name": "",
              "object-type": "",
              "severity": "Cleared",
              "source": "garfield-simulator_pmas",
              "timestamp": "2021/01/05 09:43:25PM+0000",
              "timestamp-iso": "2021-01-05T21:43:25+00:00"
            },
            {
              "description": "Finished action of deploy management-domain garfield-simulator",
              "event-identity": "deploy garfield-simulator",
              "object-name": "",
              "object-type": "",
              "raised-timestamp": "2021-01-05T21:43:28+00:00",
              "severity": "Informational",
              "source": "mosaic-cp-cda",
              "timestamp": "2021/01/05 09:43:28PM+0000",
              "timestamp-iso": "2021-01-05T21:43:28+00:00"
            },
            {
              "description": "Finished action of activate management-domain garfield-simulator",
              "event-identity": "activate garfield-simulator",
              "object-name": "",
              "object-type": "",
              "raised-timestamp": "2021-01-05T21:43:29+00:00",
              "severity": "Informational",
              "source": "mosaic-cp-cda",
              "timestamp": "2021/01/05 09:43:29PM+0000",
              "timestamp-iso": "2021-01-05T21:43:29+00:00"
            },
            {
              "description": "Finished action of create interface dpu-uplink-int-0002",
              "event-identity": "create dpu-uplink-int-0002",
              "object-name": "dpu-uplink-int-0002",
              "object-type": "interface",
              "raised-timestamp": "2021-01-05T21:43:33+00:00",
              "severity": "Informational",
              "source": "mosaic-cp-cda",
              "timestamp": "2021/01/05 09:43:33PM+0000",
              "timestamp-iso": "2021-01-05T21:43:33+00:00"
            },
            {
              "description": "Finished action of create interface dpu-uplink-int-0003",
              "event-identity": "create dpu-uplink-int-0003",
              "object-name": "dpu-uplink-int-0003",
              "object-type": "interface",
              "raised-timestamp": "2021-01-05T21:43:33+00:00",
              "severity": "Informational",
              "source": "mosaic-cp-cda",
              "timestamp": "2021/01/05 09:43:33PM+0000",
              "timestamp-iso": "2021-01-05T21:43:33+00:00"
            },
            {
              "description": "Finished action of create interface dpu-uplink-int-0001",
              "event-identity": "create dpu-uplink-int-0001",
              "object-name": "dpu-uplink-int-0001",
              "object-type": "interface",
              "raised-timestamp": "2021-01-05T21:43:34+00:00",
              "severity": "Informational",
              "source": "mosaic-cp-cda",
              "timestamp": "2021/01/05 09:43:34PM+0000",
              "timestamp-iso": "2021-01-05T21:43:34+00:00"
            },
            {
              "description": "Finished action of deploy device OLT",
              "event-identity": "deploy OLT",
              "object-name": "OLT",
              "object-type": "device",
              "raised-timestamp": "2021-01-05T21:42:36+00:00",
              "severity": "Informational",
              "source": "mosaic-cp-cda",
              "timestamp": "2021/01/05 09:42:36PM+0000",
              "timestamp-iso": "2021-01-05T21:42:36+00:00"
            },
            {
              "description": "Finished action of activate device OLT",
              "event-identity": "activate OLT",
              "object-name": "OLT",
              "object-type": "device",
              "raised-timestamp": "2021-01-05T21:42:40+00:00",
              "severity": "Informational",
              "source": "mosaic-cp-cda",
              "timestamp": "2021/01/05 09:42:40PM+0000",
              "timestamp-iso": "2021-01-05T21:42:40+00:00"
            },
            {
              "description": "Finished action of create server garfield-simulator",
              "event-identity": "create garfield-simulator",
              "object-name": "garfield-simulator",
              "object-type": "server",
              "raised-timestamp": "2021-01-05T21:42:48+00:00",
              "severity": "Informational",
              "source": "mosaic-cp-cda",
              "timestamp": "2021/01/05 09:42:48PM+0000",
              "timestamp-iso": "2021-01-05T21:42:48+00:00"
            },
            {
              "description": "Finished action of create device OLT",
              "event-identity": "create OLT",
              "object-name": "OLT",
              "object-type": "device",
              "raised-timestamp": "2021-01-05T21:41:56+00:00",
              "severity": "Informational",
              "source": "mosaic-cp-cda",
              "timestamp": "2021/01/05 09:41:56PM+0000",
              "timestamp-iso": "2021-01-05T21:41:56+00:00"
            },
            {
              "description": "Finished action of deploy interface OLT-Uplink",
              "event-identity": "deploy OLT-Uplink",
              "object-name": "OLT-Uplink",
              "object-type": "interface",
              "raised-timestamp": "2021-01-05T21:41:49+00:00",
              "severity": "Informational",
              "source": "mosaic-cp-cda",
              "timestamp": "2021/01/05 09:41:49PM+0000",
              "timestamp-iso": "2021-01-05T21:41:49+00:00"
            },
            {
              "description": "Finished action of create interface OLT-Uplink",
              "event-identity": "create OLT-Uplink",
              "object-name": "OLT-Uplink",
              "object-type": "interface",
              "raised-timestamp": "2021-01-05T21:41:40+00:00",
              "severity": "Informational",
              "source": "mosaic-cp-cda",
              "timestamp": "2021/01/05 09:41:40PM+0000",
              "timestamp-iso": "2021-01-05T21:41:40+00:00"
            },
            {
              "description": "Finished action of create management-domain garfield-simulator",
              "event-identity": "create garfield-simulator",
              "object-name": "",
              "object-type": "",
              "raised-timestamp": "2021-01-05T21:43:28+00:00",
              "severity": "Informational",
              "source": "mosaic-cp-cda",
              "timestamp": "2021/01/05 09:43:28PM+0000",
              "timestamp-iso": "2021-01-05T21:43:28+00:00"
            },
            {
              "description": "Finished action of activate interface OLT-Uplink",
              "event-identity": "activate OLT-Uplink",
              "object-name": "OLT-Uplink",
              "object-type": "interface",
              "raised-timestamp": "2021-01-05T21:41:54+00:00",
              "severity": "Informational",
              "source": "mosaic-cp-cda",
              "timestamp": "2021/01/05 09:41:54PM+0000",
              "timestamp-iso": "2021-01-05T21:41:54+00:00"
            },
            {
              "description": "Finished action of deploy interface dpu-uplink-int-0002",
              "event-identity": "deploy dpu-uplink-int-0002",
              "object-name": "dpu-uplink-int-0002",
              "object-type": "interface",
              "raised-timestamp": "2021-01-05T21:43:34+00:00",
              "severity": "Informational",
              "source": "mosaic-cp-cda",
              "timestamp": "2021/01/05 09:43:34PM+0000",
              "timestamp-iso": "2021-01-05T21:43:34+00:00"
            },
            {
              "description": "Finished action of deploy interface dpu-uplink-int-0003",
              "event-identity": "deploy dpu-uplink-int-0003",
              "object-name": "dpu-uplink-int-0003",
              "object-type": "interface",
              "raised-timestamp": "2021-01-05T21:43:35+00:00",
              "severity": "Informational",
              "source": "mosaic-cp-cda",
              "timestamp": "2021/01/05 09:43:35PM+0000",
              "timestamp-iso": "2021-01-05T21:43:35+00:00"
            },
            {
              "description": "Finished action of activate interface dpu-uplink-int-0002",
              "event-identity": "activate dpu-uplink-int-0002",
              "object-name": "dpu-uplink-int-0002",
              "object-type": "interface",
              "raised-timestamp": "2021-01-05T21:43:36+00:00",
              "severity": "Informational",
              "source": "mosaic-cp-cda",
              "timestamp": "2021/01/05 09:43:36PM+0000",
              "timestamp-iso": "2021-01-05T21:43:36+00:00"
            },
            {
              "description": "Finished action of deploy interface dpu-uplink-int-0001",
              "event-identity": "deploy dpu-uplink-int-0001",
              "object-name": "dpu-uplink-int-0001",
              "object-type": "interface",
              "raised-timestamp": "2021-01-05T21:43:36+00:00",
              "severity": "Informational",
              "source": "mosaic-cp-cda",
              "timestamp": "2021/01/05 09:43:36PM+0000",
              "timestamp-iso": "2021-01-05T21:43:36+00:00"
            }
          ],
          "total-count": 58
        }
      },
      "Event1": {
        "title": "Event1",
        "required": [
          "description",
          "event-identity",
          "object-name",
          "object-type",
          "severity",
          "source",
          "timestamp",
          "timestamp-iso"
        ],
        "type": "object",
        "properties": {
          "description": {
            "type": "string"
          },
          "event-identity": {
            "type": "string"
          },
          "object-name": {
            "type": "string"
          },
          "object-type": {
            "type": "string"
          },
          "raised-timestamp": {
            "type": "string"
          },
          "severity": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "timestamp": {
            "type": "string"
          },
          "timestamp-iso": {
            "type": "string"
          },
          "cleared-timestamp": {
            "type": "string"
          }
        },
        "example": {
          "description": "Autoupgrade: Target version not on the device; downloading and activating software on the device",
          "event-identity": "Software Download",
          "object-name": "",
          "object-type": "",
          "raised-timestamp": "2021-01-05T21:42:37.418692+00:00",
          "severity": "Informational",
          "source": "OLT",
          "timestamp": "2021/01/05 09:42:37PM+0000",
          "timestamp-iso": "2021-01-05T21:42:37.418692+00:00"
        }
      },
      "SortingBasedonEventClearedTimeRequest": {
        "title": "SortingBasedonEventClearedTimeRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input8"
          }
        },
        "example": {
          "input": {
            "summary-field": "severity",
            "current": false,
            "cursor": 0,
            "result-size": 25,
            "exact-match": true,
            "sort-by": "cleared-timestamp",
            "order-by": "asc"
          }
        }
      },
      "SortingBasedonEventClearedTime": {
        "title": "SortingBasedonEventClearedTime",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output1"
          }
        },
        "example": {
          "output": {
            "events": {
              "cursor": 25,
              "event": [
                {
                  "cleared-timestamp": "2021-01-05T21:42:25+00:00",
                  "description": "netconf Session 'OLT' established because the session was established",
                  "event-identity": "NETCONF-session-disconnect",
                  "object-name": "OLT",
                  "object-type": "device",
                  "severity": "Cleared",
                  "source": "OLT",
                  "timestamp": "2021/01/05 09:42:25PM+0000",
                  "timestamp-iso": "2021-01-05T21:42:25+00:00"
                },
                {
                  "cleared-timestamp": "2021-01-05T21:43:25+00:00",
                  "description": "Subscription to server garfield-simulator_devices failed or server is disconnected",
                  "event-identity": "server-is-offline-alarm",
                  "object-name": "",
                  "object-type": "",
                  "severity": "Cleared",
                  "source": "garfield-simulator_devices",
                  "timestamp": "2021/01/05 09:43:25PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:25+00:00"
                },
                {
                  "cleared-timestamp": "2021-01-05T21:43:25+00:00",
                  "description": "Subscription to server garfield-simulator_pmas failed or server is disconnected",
                  "event-identity": "server-is-offline-alarm",
                  "object-name": "",
                  "object-type": "",
                  "severity": "Cleared",
                  "source": "garfield-simulator_pmas",
                  "timestamp": "2021/01/05 09:43:25PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:25+00:00"
                },
                {
                  "cleared-timestamp": "2021-01-05T23:30:31+00:00",
                  "description": "Subscription to server garfield-simulator_devices failed or server is disconnected",
                  "event-identity": "server-is-offline-alarm",
                  "object-name": "",
                  "object-type": "",
                  "raised-timestamp": "2021-01-05T23:29:31+00:00",
                  "severity": "Cleared",
                  "source": "garfield-simulator_devices",
                  "timestamp": "2021/01/05 11:30:31PM+0000",
                  "timestamp-iso": "2021-01-05T23:30:31+00:00"
                },
                {
                  "cleared-timestamp": "2021-01-05T23:30:31+00:00",
                  "description": "Subscription to server garfield-simulator_pmas failed or server is disconnected",
                  "event-identity": "server-is-offline-alarm",
                  "object-name": "",
                  "object-type": "",
                  "raised-timestamp": "2021-01-05T23:29:31+00:00",
                  "severity": "Cleared",
                  "source": "garfield-simulator_pmas",
                  "timestamp": "2021/01/05 11:30:31PM+0000",
                  "timestamp-iso": "2021-01-05T23:30:31+00:00"
                },
                {
                  "cleared-timestamp": "2021-01-05T23:30:55+00:00",
                  "description": "netconf Session 'OLT' established because the session was established",
                  "event-identity": "NETCONF-session-disconnect",
                  "object-name": "OLT",
                  "object-type": "device",
                  "raised-timestamp": "2021-01-05T23:29:31+00:00",
                  "severity": "Cleared",
                  "source": "OLT",
                  "timestamp": "2021/01/05 11:30:55PM+0000",
                  "timestamp-iso": "2021-01-05T23:30:55+00:00"
                },
                {
                  "description": "Finished action of deploy management-domain garfield-simulator",
                  "event-identity": "deploy garfield-simulator",
                  "object-name": "",
                  "object-type": "",
                  "raised-timestamp": "2021-01-05T21:43:28+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:43:28PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:28+00:00"
                },
                {
                  "description": "Finished action of activate management-domain garfield-simulator",
                  "event-identity": "activate garfield-simulator",
                  "object-name": "",
                  "object-type": "",
                  "raised-timestamp": "2021-01-05T21:43:29+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:43:29PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:29+00:00"
                },
                {
                  "description": "Finished action of create interface dpu-uplink-int-0002",
                  "event-identity": "create dpu-uplink-int-0002",
                  "object-name": "dpu-uplink-int-0002",
                  "object-type": "interface",
                  "raised-timestamp": "2021-01-05T21:43:33+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:43:33PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:33+00:00"
                },
                {
                  "description": "Finished action of create interface dpu-uplink-int-0003",
                  "event-identity": "create dpu-uplink-int-0003",
                  "object-name": "dpu-uplink-int-0003",
                  "object-type": "interface",
                  "raised-timestamp": "2021-01-05T21:43:33+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:43:33PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:33+00:00"
                },
                {
                  "description": "Finished action of create interface dpu-uplink-int-0001",
                  "event-identity": "create dpu-uplink-int-0001",
                  "object-name": "dpu-uplink-int-0001",
                  "object-type": "interface",
                  "raised-timestamp": "2021-01-05T21:43:34+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:43:34PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:34+00:00"
                },
                {
                  "description": "Finished action of deploy device OLT",
                  "event-identity": "deploy OLT",
                  "object-name": "OLT",
                  "object-type": "device",
                  "raised-timestamp": "2021-01-05T21:42:36+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:42:36PM+0000",
                  "timestamp-iso": "2021-01-05T21:42:36+00:00"
                },
                {
                  "description": "Autoupgrade: Target version not on the device; downloading and activating software on the device",
                  "event-identity": "Software Download",
                  "object-name": "",
                  "object-type": "",
                  "raised-timestamp": "2021-01-05T21:42:37.418692+00:00",
                  "severity": "Informational",
                  "source": "OLT",
                  "timestamp": "2021/01/05 09:42:37PM+0000",
                  "timestamp-iso": "2021-01-05T21:42:37.418692+00:00"
                },
                {
                  "description": "Warning: upgrade failed! Target version is not defined",
                  "event-identity": "Software Download",
                  "object-name": "",
                  "object-type": "",
                  "raised-timestamp": "2021-01-05T21:42:38.793588+00:00",
                  "severity": "Warning",
                  "source": "OLT",
                  "timestamp": "2021/01/05 09:42:38PM+0000",
                  "timestamp-iso": "2021-01-05T21:42:38.793588+00:00"
                },
                {
                  "description": "Finished action of activate device OLT",
                  "event-identity": "activate OLT",
                  "object-name": "OLT",
                  "object-type": "device",
                  "raised-timestamp": "2021-01-05T21:42:40+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:42:40PM+0000",
                  "timestamp-iso": "2021-01-05T21:42:40+00:00"
                },
                {
                  "description": "Finished action of create server garfield-simulator",
                  "event-identity": "create garfield-simulator",
                  "object-name": "garfield-simulator",
                  "object-type": "server",
                  "raised-timestamp": "2021-01-05T21:42:48+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:42:48PM+0000",
                  "timestamp-iso": "2021-01-05T21:42:48+00:00"
                },
                {
                  "description": "Finished action of create device OLT",
                  "event-identity": "create OLT",
                  "object-name": "OLT",
                  "object-type": "device",
                  "raised-timestamp": "2021-01-05T21:41:56+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:41:56PM+0000",
                  "timestamp-iso": "2021-01-05T21:41:56+00:00"
                },
                {
                  "description": "Finished action of deploy interface OLT-Uplink",
                  "event-identity": "deploy OLT-Uplink",
                  "object-name": "OLT-Uplink",
                  "object-type": "interface",
                  "raised-timestamp": "2021-01-05T21:41:49+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:41:49PM+0000",
                  "timestamp-iso": "2021-01-05T21:41:49+00:00"
                },
                {
                  "description": "Finished action of create interface OLT-Uplink",
                  "event-identity": "create OLT-Uplink",
                  "object-name": "OLT-Uplink",
                  "object-type": "interface",
                  "raised-timestamp": "2021-01-05T21:41:40+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:41:40PM+0000",
                  "timestamp-iso": "2021-01-05T21:41:40+00:00"
                },
                {
                  "description": "Finished action of create management-domain garfield-simulator",
                  "event-identity": "create garfield-simulator",
                  "object-name": "",
                  "object-type": "",
                  "raised-timestamp": "2021-01-05T21:43:28+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:43:28PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:28+00:00"
                },
                {
                  "description": "Finished action of activate interface OLT-Uplink",
                  "event-identity": "activate OLT-Uplink",
                  "object-name": "OLT-Uplink",
                  "object-type": "interface",
                  "raised-timestamp": "2021-01-05T21:41:54+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:41:54PM+0000",
                  "timestamp-iso": "2021-01-05T21:41:54+00:00"
                },
                {
                  "description": "netconf Session 'OLT' established because the session was established",
                  "event-identity": "netconf Session 'OLT' established",
                  "object-name": "OLT",
                  "object-type": "device",
                  "raised-timestamp": "2021-01-05T21:42:25+00:00",
                  "severity": "Informational",
                  "source": "netconf-client",
                  "timestamp": "2021/01/05 09:42:25PM+0000",
                  "timestamp-iso": "2021-01-05T21:42:25+00:00"
                },
                {
                  "description": "netconf Session 'OLT' created because the session was created",
                  "event-identity": "netconf Session 'OLT' created",
                  "object-name": "OLT",
                  "object-type": "device",
                  "raised-timestamp": "2021-01-05T21:42:05+00:00",
                  "severity": "Informational",
                  "source": "netconf-client",
                  "timestamp": "2021/01/05 09:42:05PM+0000",
                  "timestamp-iso": "2021-01-05T21:42:05+00:00"
                },
                {
                  "description": "Finished action of activate interface dpu-0002-gfastPort01",
                  "event-identity": "activate dpu-0002-gfastPort01",
                  "object-name": "dpu-0002-gfastPort01",
                  "object-type": "interface",
                  "raised-timestamp": "2021-01-05T21:46:39+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:46:39PM+0000",
                  "timestamp-iso": "2021-01-05T21:46:39+00:00"
                },
                {
                  "description": "Finished action of create interface dpu-0002-gfastPort02",
                  "event-identity": "create dpu-0002-gfastPort02",
                  "object-name": "dpu-0002-gfastPort02",
                  "object-type": "interface",
                  "raised-timestamp": "2021-01-05T21:46:39+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:46:39PM+0000",
                  "timestamp-iso": "2021-01-05T21:46:39+00:00"
                }
              ],
              "total-count": 70
            }
          }
        }
      },
      "SortingBasedonEventRaisedTimeRequest": {
        "title": "SortingBasedonEventRaisedTimeRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input8"
          }
        },
        "example": {
          "input": {
            "summary-field": "severity",
            "current": false,
            "cursor": 0,
            "result-size": 25,
            "exact-match": true,
            "sort-by": "raised-timestamp",
            "order-by": "asc"
          }
        }
      },
      "SortingBasedonEventRaisedTime": {
        "title": "SortingBasedonEventRaisedTime",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output"
          }
        },
        "example": {
          "output": {
            "events": {
              "cursor": 25,
              "event": [
                {
                  "description": "Finished action of create interface OLT-Uplink",
                  "event-identity": "create OLT-Uplink",
                  "object-name": "OLT-Uplink",
                  "object-type": "interface",
                  "raised-timestamp": "2021-01-05T21:41:40+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:41:40PM+0000",
                  "timestamp-iso": "2021-01-05T21:41:40+00:00"
                },
                {
                  "description": "Finished action of deploy interface OLT-Uplink",
                  "event-identity": "deploy OLT-Uplink",
                  "object-name": "OLT-Uplink",
                  "object-type": "interface",
                  "raised-timestamp": "2021-01-05T21:41:49+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:41:49PM+0000",
                  "timestamp-iso": "2021-01-05T21:41:49+00:00"
                },
                {
                  "description": "Finished action of activate interface OLT-Uplink",
                  "event-identity": "activate OLT-Uplink",
                  "object-name": "OLT-Uplink",
                  "object-type": "interface",
                  "raised-timestamp": "2021-01-05T21:41:54+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:41:54PM+0000",
                  "timestamp-iso": "2021-01-05T21:41:54+00:00"
                },
                {
                  "description": "Finished action of create device OLT",
                  "event-identity": "create OLT",
                  "object-name": "OLT",
                  "object-type": "device",
                  "raised-timestamp": "2021-01-05T21:41:56+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:41:56PM+0000",
                  "timestamp-iso": "2021-01-05T21:41:56+00:00"
                },
                {
                  "description": "netconf Session 'OLT' created because the session was created",
                  "event-identity": "netconf Session 'OLT' created",
                  "object-name": "OLT",
                  "object-type": "device",
                  "raised-timestamp": "2021-01-05T21:42:05+00:00",
                  "severity": "Informational",
                  "source": "netconf-client",
                  "timestamp": "2021/01/05 09:42:05PM+0000",
                  "timestamp-iso": "2021-01-05T21:42:05+00:00"
                },
                {
                  "description": "netconf Session 'OLT' established because the session was established",
                  "event-identity": "netconf Session 'OLT' established",
                  "object-name": "OLT",
                  "object-type": "device",
                  "raised-timestamp": "2021-01-05T21:42:25+00:00",
                  "severity": "Informational",
                  "source": "netconf-client",
                  "timestamp": "2021/01/05 09:42:25PM+0000",
                  "timestamp-iso": "2021-01-05T21:42:25+00:00"
                },
                {
                  "description": "Finished action of deploy device OLT",
                  "event-identity": "deploy OLT",
                  "object-name": "OLT",
                  "object-type": "device",
                  "raised-timestamp": "2021-01-05T21:42:36+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:42:36PM+0000",
                  "timestamp-iso": "2021-01-05T21:42:36+00:00"
                },
                {
                  "description": "Autoupgrade: Target version not on the device; downloading and activating software on the device",
                  "event-identity": "Software Download",
                  "object-name": "",
                  "object-type": "",
                  "raised-timestamp": "2021-01-05T21:42:37.418692+00:00",
                  "severity": "Informational",
                  "source": "OLT",
                  "timestamp": "2021/01/05 09:42:37PM+0000",
                  "timestamp-iso": "2021-01-05T21:42:37.418692+00:00"
                },
                {
                  "description": "Warning: upgrade failed! Target version is not defined",
                  "event-identity": "Software Download",
                  "object-name": "",
                  "object-type": "",
                  "raised-timestamp": "2021-01-05T21:42:38.793588+00:00",
                  "severity": "Warning",
                  "source": "OLT",
                  "timestamp": "2021/01/05 09:42:38PM+0000",
                  "timestamp-iso": "2021-01-05T21:42:38.793588+00:00"
                },
                {
                  "description": "Finished action of activate device OLT",
                  "event-identity": "activate OLT",
                  "object-name": "OLT",
                  "object-type": "device",
                  "raised-timestamp": "2021-01-05T21:42:40+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:42:40PM+0000",
                  "timestamp-iso": "2021-01-05T21:42:40+00:00"
                },
                {
                  "description": "Finished action of create server garfield-simulator",
                  "event-identity": "create garfield-simulator",
                  "object-name": "garfield-simulator",
                  "object-type": "server",
                  "raised-timestamp": "2021-01-05T21:42:48+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:42:48PM+0000",
                  "timestamp-iso": "2021-01-05T21:42:48+00:00"
                },
                {
                  "description": "Finished action of deploy server garfield-simulator",
                  "event-identity": "deploy garfield-simulator",
                  "object-name": "garfield-simulator",
                  "object-type": "server",
                  "raised-timestamp": "2021-01-05T21:43:24+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:43:24PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:24+00:00"
                },
                {
                  "description": "Finished action of activate server garfield-simulator",
                  "event-identity": "activate garfield-simulator",
                  "object-name": "garfield-simulator",
                  "object-type": "server",
                  "raised-timestamp": "2021-01-05T21:43:25+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:43:25PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:25+00:00"
                },
                {
                  "description": "Finished action of create management-domain garfield-simulator",
                  "event-identity": "create garfield-simulator",
                  "object-name": "",
                  "object-type": "",
                  "raised-timestamp": "2021-01-05T21:43:28+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:43:28PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:28+00:00"
                },
                {
                  "description": "Finished action of deploy management-domain garfield-simulator",
                  "event-identity": "deploy garfield-simulator",
                  "object-name": "",
                  "object-type": "",
                  "raised-timestamp": "2021-01-05T21:43:28+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:43:28PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:28+00:00"
                },
                {
                  "description": "Finished action of activate management-domain garfield-simulator",
                  "event-identity": "activate garfield-simulator",
                  "object-name": "",
                  "object-type": "",
                  "raised-timestamp": "2021-01-05T21:43:29+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:43:29PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:29+00:00"
                },
                {
                  "description": "Finished action of create interface dpu-uplink-int-0002",
                  "event-identity": "create dpu-uplink-int-0002",
                  "object-name": "dpu-uplink-int-0002",
                  "object-type": "interface",
                  "raised-timestamp": "2021-01-05T21:43:33+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:43:33PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:33+00:00"
                },
                {
                  "description": "Finished action of create interface dpu-uplink-int-0003",
                  "event-identity": "create dpu-uplink-int-0003",
                  "object-name": "dpu-uplink-int-0003",
                  "object-type": "interface",
                  "raised-timestamp": "2021-01-05T21:43:33+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:43:33PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:33+00:00"
                },
                {
                  "description": "Finished action of create interface dpu-uplink-int-0001",
                  "event-identity": "create dpu-uplink-int-0001",
                  "object-name": "dpu-uplink-int-0001",
                  "object-type": "interface",
                  "raised-timestamp": "2021-01-05T21:43:34+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:43:34PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:34+00:00"
                },
                {
                  "description": "Finished action of deploy interface dpu-uplink-int-0002",
                  "event-identity": "deploy dpu-uplink-int-0002",
                  "object-name": "dpu-uplink-int-0002",
                  "object-type": "interface",
                  "raised-timestamp": "2021-01-05T21:43:34+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:43:34PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:34+00:00"
                },
                {
                  "description": "Finished action of deploy interface dpu-uplink-int-0003",
                  "event-identity": "deploy dpu-uplink-int-0003",
                  "object-name": "dpu-uplink-int-0003",
                  "object-type": "interface",
                  "raised-timestamp": "2021-01-05T21:43:35+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:43:35PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:35+00:00"
                },
                {
                  "description": "Finished action of deploy interface dpu-uplink-int-0001",
                  "event-identity": "deploy dpu-uplink-int-0001",
                  "object-name": "dpu-uplink-int-0001",
                  "object-type": "interface",
                  "raised-timestamp": "2021-01-05T21:43:36+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:43:36PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:36+00:00"
                },
                {
                  "description": "Finished action of activate interface dpu-uplink-int-0002",
                  "event-identity": "activate dpu-uplink-int-0002",
                  "object-name": "dpu-uplink-int-0002",
                  "object-type": "interface",
                  "raised-timestamp": "2021-01-05T21:43:36+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:43:36PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:36+00:00"
                },
                {
                  "description": "Finished action of activate interface dpu-uplink-int-0003",
                  "event-identity": "activate dpu-uplink-int-0003",
                  "object-name": "dpu-uplink-int-0003",
                  "object-type": "interface",
                  "raised-timestamp": "2021-01-05T21:43:37+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:43:37PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:37+00:00"
                },
                {
                  "description": "Finished action of activate interface dpu-uplink-int-0001",
                  "event-identity": "activate dpu-uplink-int-0001",
                  "object-name": "dpu-uplink-int-0001",
                  "object-type": "interface",
                  "raised-timestamp": "2021-01-05T21:43:37+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:43:37PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:37+00:00"
                }
              ],
              "total-count": 70
            }
          }
        }
      },
      "SortingBasedonEventIdentityRequest": {
        "title": "SortingBasedonEventIdentityRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input8"
          }
        },
        "example": {
          "input": {
            "summary-field": "severity",
            "current": false,
            "cursor": 0,
            "result-size": 2,
            "exact-match": true,
            "sort-by": "identity",
            "order-by": "asc"
          }
        }
      },
      "SortingBasedonEventIdentity": {
        "title": "SortingBasedonEventIdentity",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output1"
          }
        },
        "example": {
          "output": {
            "events": {
              "cursor": 2,
              "event": [
                {
                  "cleared-timestamp": "2021-01-05T21:42:25+00:00",
                  "description": "netconf Session 'OLT' established because the session was established",
                  "event-identity": "NETCONF-session-disconnect",
                  "object-name": "OLT",
                  "object-type": "device",
                  "severity": "Cleared",
                  "source": "OLT",
                  "timestamp": "2021/01/05 09:42:25PM+0000",
                  "timestamp-iso": "2021-01-05T21:42:25+00:00"
                },
                {
                  "description": "netconf Session 'OLT' disconnected because the session dropped connection",
                  "event-identity": "NETCONF-session-disconnect",
                  "object-name": "OLT",
                  "object-type": "device",
                  "raised-timestamp": "2021-01-06T00:00:09+00:00",
                  "severity": "Critical",
                  "source": "OLT",
                  "timestamp": "2021/01/06 12:00:09AM+0000",
                  "timestamp-iso": "2021-01-06T00:00:09+00:00"
                }
              ],
              "total-count": 82
            }
          }
        }
      },
      "SortingBasedonEventSeverityRequest": {
        "title": "SortingBasedonEventSeverityRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input8"
          }
        },
        "example": {
          "input": {
            "summary-field": "severity",
            "current": false,
            "cursor": 0,
            "result-size": 2,
            "exact-match": true,
            "sort-by": "severity",
            "order-by": "asc"
          }
        }
      },
      "SortingBasedonEventSeverity": {
        "title": "SortingBasedonEventSeverity",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output5"
          }
        },
        "example": {
          "output": {
            "events": {
              "cursor": 2,
              "event": [
                {
                  "cleared-timestamp": "2021-01-05T21:42:25+00:00",
                  "description": "netconf Session 'OLT' established because the session was established",
                  "event-identity": "NETCONF-session-disconnect",
                  "object-name": "OLT",
                  "object-type": "device",
                  "severity": "Cleared",
                  "source": "OLT",
                  "timestamp": "2021/01/05 09:42:25PM+0000",
                  "timestamp-iso": "2021-01-05T21:42:25+00:00"
                },
                {
                  "cleared-timestamp": "2021-01-05T21:43:25+00:00",
                  "description": "Subscription to server garfield-simulator_devices failed or server is disconnected",
                  "event-identity": "server-is-offline-alarm",
                  "object-name": "",
                  "object-type": "",
                  "severity": "Cleared",
                  "source": "garfield-simulator_devices",
                  "timestamp": "2021/01/05 09:43:25PM+0000",
                  "timestamp-iso": "2021-01-05T21:43:25+00:00"
                }
              ],
              "total-count": 82
            }
          }
        }
      },
      "Output5": {
        "title": "Output5",
        "required": [
          "events"
        ],
        "type": "object",
        "properties": {
          "events": {
            "$ref": "#/components/schemas/Events5"
          }
        },
        "example": {
          "events": {
            "cursor": 2,
            "event": [
              {
                "cleared-timestamp": "2021-01-05T21:42:25+00:00",
                "description": "netconf Session 'OLT' established because the session was established",
                "event-identity": "NETCONF-session-disconnect",
                "object-name": "OLT",
                "object-type": "device",
                "severity": "Cleared",
                "source": "OLT",
                "timestamp": "2021/01/05 09:42:25PM+0000",
                "timestamp-iso": "2021-01-05T21:42:25+00:00"
              },
              {
                "cleared-timestamp": "2021-01-05T21:43:25+00:00",
                "description": "Subscription to server garfield-simulator_devices failed or server is disconnected",
                "event-identity": "server-is-offline-alarm",
                "object-name": "",
                "object-type": "",
                "severity": "Cleared",
                "source": "garfield-simulator_devices",
                "timestamp": "2021/01/05 09:43:25PM+0000",
                "timestamp-iso": "2021-01-05T21:43:25+00:00"
              }
            ],
            "total-count": 82
          }
        }
      },
      "Events5": {
        "title": "Events5",
        "required": [
          "cursor",
          "event",
          "total-count"
        ],
        "type": "object",
        "properties": {
          "cursor": {
            "type": "integer",
            "format": "int32"
          },
          "event": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Event5"
            },
            "description": ""
          },
          "total-count": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "cursor": 2,
          "event": [
            {
              "cleared-timestamp": "2021-01-05T21:42:25+00:00",
              "description": "netconf Session 'OLT' established because the session was established",
              "event-identity": "NETCONF-session-disconnect",
              "object-name": "OLT",
              "object-type": "device",
              "severity": "Cleared",
              "source": "OLT",
              "timestamp": "2021/01/05 09:42:25PM+0000",
              "timestamp-iso": "2021-01-05T21:42:25+00:00"
            },
            {
              "cleared-timestamp": "2021-01-05T21:43:25+00:00",
              "description": "Subscription to server garfield-simulator_devices failed or server is disconnected",
              "event-identity": "server-is-offline-alarm",
              "object-name": "",
              "object-type": "",
              "severity": "Cleared",
              "source": "garfield-simulator_devices",
              "timestamp": "2021/01/05 09:43:25PM+0000",
              "timestamp-iso": "2021-01-05T21:43:25+00:00"
            }
          ],
          "total-count": 82
        }
      },
      "Event5": {
        "title": "Event5",
        "required": [
          "cleared-timestamp",
          "description",
          "event-identity",
          "object-name",
          "object-type",
          "severity",
          "source",
          "timestamp",
          "timestamp-iso"
        ],
        "type": "object",
        "properties": {
          "cleared-timestamp": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "event-identity": {
            "type": "string"
          },
          "object-name": {
            "type": "string"
          },
          "object-type": {
            "type": "string"
          },
          "severity": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "timestamp": {
            "type": "string"
          },
          "timestamp-iso": {
            "type": "string"
          }
        },
        "example": {
          "cleared-timestamp": "2021-01-05T21:42:25+00:00",
          "description": "netconf Session 'OLT' established because the session was established",
          "event-identity": "NETCONF-session-disconnect",
          "object-name": "OLT",
          "object-type": "device",
          "severity": "Cleared",
          "source": "OLT",
          "timestamp": "2021/01/05 09:42:25PM+0000",
          "timestamp-iso": "2021-01-05T21:42:25+00:00"
        }
      },
      "SortingBasedonEventTimestampRequest": {
        "title": "SortingBasedonEventTimestampRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input8"
          }
        },
        "example": {
          "input": {
            "summary-field": "severity",
            "current": false,
            "cursor": 0,
            "result-size": 2,
            "exact-match": true,
            "sort-by": "timestamp",
            "order-by": "asc"
          }
        }
      },
      "SortingBasedonEventTimestamp": {
        "title": "SortingBasedonEventTimestamp",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output"
          }
        },
        "example": {
          "output": {
            "events": {
              "cursor": 2,
              "event": [
                {
                  "description": "Finished action of create interface OLT-Uplink",
                  "event-identity": "create OLT-Uplink",
                  "object-name": "OLT-Uplink",
                  "object-type": "interface",
                  "raised-timestamp": "2021-01-05T21:41:40+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:41:40PM+0000",
                  "timestamp-iso": "2021-01-05T21:41:40+00:00"
                },
                {
                  "description": "Finished action of deploy interface OLT-Uplink",
                  "event-identity": "deploy OLT-Uplink",
                  "object-name": "OLT-Uplink",
                  "object-type": "interface",
                  "raised-timestamp": "2021-01-05T21:41:49+00:00",
                  "severity": "Informational",
                  "source": "mosaic-cp-cda",
                  "timestamp": "2021/01/05 09:41:49PM+0000",
                  "timestamp-iso": "2021-01-05T21:41:49+00:00"
                }
              ],
              "total-count": 82
            }
          }
        }
      },
      "FilteringBasedonEventRaisedTimeRequest": {
        "title": "FilteringBasedonEventRaisedTimeRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input14"
          }
        },
        "example": {
          "input": {
            "summary-field": "severity",
            "current": false,
            "cursor": 0,
            "result-size": 25,
            "exact-match": true,
            "search-filter-and": [
              {
                "search-field": "raised-timestamp",
                "search-value": [
                  "2021-01-05T23:34:29Z"
                ],
                "search-action": "gte"
              },
              {
                "search-field": "raised-timestamp",
                "search-value": [
                  "2021-01-05T23:34:31Z"
                ],
                "search-action": "lte"
              }
            ]
          }
        }
      },
      "Input14": {
        "title": "Input14",
        "required": [
          "summary-field",
          "current",
          "cursor",
          "result-size",
          "exact-match",
          "search-filter-and"
        ],
        "type": "object",
        "properties": {
          "summary-field": {
            "type": "string"
          },
          "current": {
            "type": "boolean"
          },
          "cursor": {
            "type": "integer",
            "format": "int32"
          },
          "result-size": {
            "type": "integer",
            "format": "int32"
          },
          "exact-match": {
            "type": "boolean"
          },
          "search-filter-and": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/SearchFilterAnd"
            },
            "description": ""
          }
        },
        "example": {
          "summary-field": "severity",
          "current": false,
          "cursor": 0,
          "result-size": 25,
          "exact-match": true,
          "search-filter-and": [
            {
              "search-field": "raised-timestamp",
              "search-value": [
                "2021-01-05T23:34:29Z"
              ],
              "search-action": "gte"
            },
            {
              "search-field": "raised-timestamp",
              "search-value": [
                "2021-01-05T23:34:31Z"
              ],
              "search-action": "lte"
            }
          ]
        }
      },
      "SearchFilterAnd": {
        "title": "SearchFilterAnd",
        "required": [
          "search-field",
          "search-value",
          "search-action"
        ],
        "type": "object",
        "properties": {
          "search-field": {
            "type": "string"
          },
          "search-value": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "search-action": {
            "type": "string"
          }
        },
        "example": {
          "search-field": "raised-timestamp",
          "search-value": [
            "2021-01-05T23:34:29Z"
          ],
          "search-action": "gte"
        }
      },
      "FilteringBasedonEventRaisedTime": {
        "title": "FilteringBasedonEventRaisedTime",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output"
          }
        },
        "example": {
          "output": {
            "events": {
              "cursor": 1,
              "event": [
                {
                  "description": "netconf Session 'OLT' established because the session was established",
                  "event-identity": "netconf Session 'OLT' established",
                  "object-name": "OLT",
                  "object-type": "device",
                  "raised-timestamp": "2021-01-05T23:34:30+00:00",
                  "severity": "Informational",
                  "source": "netconf-client",
                  "timestamp": "2021/01/05 11:34:30PM+0000",
                  "timestamp-iso": "2021-01-05T23:34:30+00:00"
                }
              ],
              "total-count": 1
            }
          }
        }
      },
      "FilteringBasedonEventClearedTimeRequest": {
        "title": "FilteringBasedonEventClearedTimeRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input14"
          }
        },
        "example": {
          "input": {
            "summary-field": "severity",
            "current": false,
            "cursor": 0,
            "result-size": 25,
            "exact-match": true,
            "search-filter-and": [
              {
                "search-field": "cleared-timestamp",
                "search-value": [
                  "2021-01-05T23:34:29Z"
                ],
                "search-action": "gte"
              },
              {
                "search-field": "cleared-timestamp",
                "search-value": [
                  "2021-01-05T23:34:31Z"
                ],
                "search-action": "lte"
              }
            ]
          }
        }
      },
      "FilteringBasedonEventClearedTime": {
        "title": "FilteringBasedonEventClearedTime",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output8"
          }
        },
        "example": {
          "output": {
            "events": {
              "cursor": 1,
              "event": [
                {
                  "cleared-timestamp": "2021-01-05T23:34:30+00:00",
                  "description": "netconf Session 'OLT' established because the session was established",
                  "event-identity": "NETCONF-session-disconnect",
                  "object-name": "OLT",
                  "object-type": "device",
                  "raised-timestamp": "2021-01-05T23:31:28+00:00",
                  "severity": "Cleared",
                  "source": "OLT",
                  "timestamp": "2021/01/05 11:34:30PM+0000",
                  "timestamp-iso": "2021-01-05T23:34:30+00:00"
                }
              ],
              "total-count": 1
            }
          }
        }
      },
      "Output8": {
        "title": "Output8",
        "required": [
          "events"
        ],
        "type": "object",
        "properties": {
          "events": {
            "$ref": "#/components/schemas/Events8"
          }
        },
        "example": {
          "events": {
            "cursor": 1,
            "event": [
              {
                "cleared-timestamp": "2021-01-05T23:34:30+00:00",
                "description": "netconf Session 'OLT' established because the session was established",
                "event-identity": "NETCONF-session-disconnect",
                "object-name": "OLT",
                "object-type": "device",
                "raised-timestamp": "2021-01-05T23:31:28+00:00",
                "severity": "Cleared",
                "source": "OLT",
                "timestamp": "2021/01/05 11:34:30PM+0000",
                "timestamp-iso": "2021-01-05T23:34:30+00:00"
              }
            ],
            "total-count": 1
          }
        }
      },
      "Events8": {
        "title": "Events8",
        "required": [
          "cursor",
          "event",
          "total-count"
        ],
        "type": "object",
        "properties": {
          "cursor": {
            "type": "integer",
            "format": "int32"
          },
          "event": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Event8"
            },
            "description": ""
          },
          "total-count": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "cursor": 1,
          "event": [
            {
              "cleared-timestamp": "2021-01-05T23:34:30+00:00",
              "description": "netconf Session 'OLT' established because the session was established",
              "event-identity": "NETCONF-session-disconnect",
              "object-name": "OLT",
              "object-type": "device",
              "raised-timestamp": "2021-01-05T23:31:28+00:00",
              "severity": "Cleared",
              "source": "OLT",
              "timestamp": "2021/01/05 11:34:30PM+0000",
              "timestamp-iso": "2021-01-05T23:34:30+00:00"
            }
          ],
          "total-count": 1
        }
      },
      "Event8": {
        "title": "Event8",
        "required": [
          "cleared-timestamp",
          "description",
          "event-identity",
          "object-name",
          "object-type",
          "raised-timestamp",
          "severity",
          "source",
          "timestamp",
          "timestamp-iso"
        ],
        "type": "object",
        "properties": {
          "cleared-timestamp": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "event-identity": {
            "type": "string"
          },
          "object-name": {
            "type": "string"
          },
          "object-type": {
            "type": "string"
          },
          "raised-timestamp": {
            "type": "string"
          },
          "severity": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "timestamp": {
            "type": "string"
          },
          "timestamp-iso": {
            "type": "string"
          }
        },
        "example": {
          "cleared-timestamp": "2021-01-05T23:34:30+00:00",
          "description": "netconf Session 'OLT' established because the session was established",
          "event-identity": "NETCONF-session-disconnect",
          "object-name": "OLT",
          "object-type": "device",
          "raised-timestamp": "2021-01-05T23:31:28+00:00",
          "severity": "Cleared",
          "source": "OLT",
          "timestamp": "2021/01/05 11:34:30PM+0000",
          "timestamp-iso": "2021-01-05T23:34:30+00:00"
        }
      },
      "FilteringBasedonBothEventRaisedandClearedTimesRequest": {
        "title": "FilteringBasedonBothEventRaisedandClearedTimesRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input14"
          }
        },
        "example": {
          "input": {
            "summary-field": "severity",
            "current": false,
            "cursor": 0,
            "result-size": 25,
            "exact-match": true,
            "search-filter-and": [
              {
                "search-field": "raised-timestamp",
                "search-value": [
                  "2021-01-05T23:30:29Z"
                ],
                "search-action": "gte"
              },
              {
                "search-field": "raised-timestamp",
                "search-value": [
                  "2021-01-05T23:54:31Z"
                ],
                "search-action": "lte"
              },
              {
                "search-field": "cleared-timestamp",
                "search-value": [
                  "2021-01-05T23:30:29Z"
                ],
                "search-action": "gte"
              },
              {
                "search-field": "cleared-timestamp",
                "search-value": [
                  "2021-01-05T23:54:31Z"
                ],
                "search-action": "lte"
              }
            ]
          }
        }
      },
      "FilteringBasedonBothEventRaisedandClearedTimes": {
        "title": "FilteringBasedonBothEventRaisedandClearedTimes",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output8"
          }
        },
        "example": {
          "output": {
            "events": {
              "cursor": 3,
              "event": [
                {
                  "cleared-timestamp": "2021-01-05T23:34:30+00:00",
                  "description": "netconf Session 'OLT' established because the session was established",
                  "event-identity": "NETCONF-session-disconnect",
                  "object-name": "OLT",
                  "object-type": "device",
                  "raised-timestamp": "2021-01-05T23:31:28+00:00",
                  "severity": "Cleared",
                  "source": "OLT",
                  "timestamp": "2021/01/05 11:34:30PM+0000",
                  "timestamp-iso": "2021-01-05T23:34:30+00:00"
                },
                {
                  "cleared-timestamp": "2021-01-05T23:34:28+00:00",
                  "description": "Subscription to server garfield-simulator_devices failed or server is disconnected",
                  "event-identity": "server-is-offline-alarm",
                  "object-name": "",
                  "object-type": "",
                  "raised-timestamp": "2021-01-05T23:31:28+00:00",
                  "severity": "Cleared",
                  "source": "garfield-simulator_devices",
                  "timestamp": "2021/01/05 11:34:28PM+0000",
                  "timestamp-iso": "2021-01-05T23:34:28+00:00"
                },
                {
                  "cleared-timestamp": "2021-01-05T23:34:28+00:00",
                  "description": "Subscription to server garfield-simulator_pmas failed or server is disconnected",
                  "event-identity": "server-is-offline-alarm",
                  "object-name": "",
                  "object-type": "",
                  "raised-timestamp": "2021-01-05T23:31:28+00:00",
                  "severity": "Cleared",
                  "source": "garfield-simulator_pmas",
                  "timestamp": "2021/01/05 11:34:28PM+0000",
                  "timestamp-iso": "2021-01-05T23:34:28+00:00"
                }
              ],
              "total-count": 3
            }
          }
        }
      },
      "FilteringBasedonMultipleCriteriaRequest": {
        "title": "FilteringBasedonMultipleCriteriaRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input17"
          }
        },
        "example": {
          "input": {
            "summary-field": "severity",
            "current": false,
            "cursor": 0,
            "result-size": 25,
            "source": "netconf-client",
            "exact-match": true,
            "search-filter-and": [
              {
                "search-field": "identity",
                "search-value": [
                  "netconf Session 'OLT' established"
                ],
                "search-action": "include-strict"
              },
              {
                "search-field": "severity",
                "search-value": [
                  "info"
                ],
                "search-action": "include-strict"
              },
              {
                "search-field": "source",
                "search-value": [
                  "netconf-client"
                ],
                "search-action": "include-strict"
              },
              {
                "search-field": "object-name",
                "search-value": [
                  "OLT"
                ],
                "search-action": "include-strict"
              },
              {
                "search-field": "object-type",
                "search-value": [
                  "device"
                ],
                "search-action": "include-strict"
              },
              {
                "search-field": "object-name",
                "search-value": [
                  "OLT"
                ],
                "search-action": "include-strict"
              },
              {
                "search-field": "description",
                "search-value": [
                  ".*session was established.*"
                ],
                "search-action": "include-regex"
              }
            ]
          }
        }
      },
      "Input17": {
        "title": "Input17",
        "required": [
          "summary-field",
          "current",
          "cursor",
          "result-size",
          "source",
          "exact-match",
          "search-filter-and"
        ],
        "type": "object",
        "properties": {
          "summary-field": {
            "type": "string"
          },
          "current": {
            "type": "boolean"
          },
          "cursor": {
            "type": "integer",
            "format": "int32"
          },
          "result-size": {
            "type": "integer",
            "format": "int32"
          },
          "source": {
            "type": "string"
          },
          "exact-match": {
            "type": "boolean"
          },
          "search-filter-and": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/SearchFilterAnd"
            },
            "description": ""
          }
        },
        "example": {
          "summary-field": "severity",
          "current": false,
          "cursor": 0,
          "result-size": 25,
          "source": "netconf-client",
          "exact-match": true,
          "search-filter-and": [
            {
              "search-field": "identity",
              "search-value": [
                "netconf Session 'OLT' established"
              ],
              "search-action": "include-strict"
            },
            {
              "search-field": "severity",
              "search-value": [
                "info"
              ],
              "search-action": "include-strict"
            },
            {
              "search-field": "source",
              "search-value": [
                "netconf-client"
              ],
              "search-action": "include-strict"
            },
            {
              "search-field": "object-name",
              "search-value": [
                "OLT"
              ],
              "search-action": "include-strict"
            },
            {
              "search-field": "object-type",
              "search-value": [
                "device"
              ],
              "search-action": "include-strict"
            },
            {
              "search-field": "object-name",
              "search-value": [
                "OLT"
              ],
              "search-action": "include-strict"
            },
            {
              "search-field": "description",
              "search-value": [
                ".*session was established.*"
              ],
              "search-action": "include-regex"
            }
          ]
        }
      },
      "FilteringBasedonMultipleCriteria": {
        "title": "FilteringBasedonMultipleCriteria",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output"
          }
        },
        "example": {
          "output": {
            "events": {
              "cursor": 4,
              "event": [
                {
                  "description": "netconf Session 'OLT' established because the session was established",
                  "event-identity": "netconf Session 'OLT' established",
                  "object-name": "OLT",
                  "object-type": "device",
                  "raised-timestamp": "2021-01-06T00:02:03+00:00",
                  "severity": "Informational",
                  "source": "netconf-client",
                  "timestamp": "2021/01/06 12:02:03AM+0000",
                  "timestamp-iso": "2021-01-06T00:02:03+00:00"
                },
                {
                  "description": "netconf Session 'OLT' established because the session was established",
                  "event-identity": "netconf Session 'OLT' established",
                  "object-name": "OLT",
                  "object-type": "device",
                  "raised-timestamp": "2021-01-05T23:34:30+00:00",
                  "severity": "Informational",
                  "source": "netconf-client",
                  "timestamp": "2021/01/05 11:34:30PM+0000",
                  "timestamp-iso": "2021-01-05T23:34:30+00:00"
                },
                {
                  "description": "netconf Session 'OLT' established because the session was established",
                  "event-identity": "netconf Session 'OLT' established",
                  "object-name": "OLT",
                  "object-type": "device",
                  "raised-timestamp": "2021-01-05T23:30:55+00:00",
                  "severity": "Informational",
                  "source": "netconf-client",
                  "timestamp": "2021/01/05 11:30:55PM+0000",
                  "timestamp-iso": "2021-01-05T23:30:55+00:00"
                },
                {
                  "description": "netconf Session 'OLT' established because the session was established",
                  "event-identity": "netconf Session 'OLT' established",
                  "object-name": "OLT",
                  "object-type": "device",
                  "raised-timestamp": "2021-01-05T21:42:25+00:00",
                  "severity": "Informational",
                  "source": "netconf-client",
                  "timestamp": "2021/01/05 09:42:25PM+0000",
                  "timestamp-iso": "2021-01-05T21:42:25+00:00"
                }
              ],
              "total-count": 4
            }
          }
        }
      },
      "CreateTopicRequest": {
        "title": "CreateTopicRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input18"
          }
        },
        "example": {
          "input": {
            "topic-name": "mosaic-stream",
            "username": "SampleUser",
            "contains": [
              "uiworkflow-transition-complete"
            ]
          }
        }
      },
      "Input18": {
        "title": "Input18",
        "required": [
          "topic-name",
          "username",
          "contains"
        ],
        "type": "object",
        "properties": {
          "topic-name": {
            "type": "string"
          },
          "username": {
            "type": "string"
          },
          "contains": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "topic-name": "mosaic-stream",
          "username": "SampleUser",
          "contains": [
            "uiworkflow-transition-complete"
          ]
        }
      },
      "TopicAlreadyCreated-409Conflict1": {
        "title": "TopicAlreadyCreated-409Conflict1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "mosaic-stream topic already created."
        }
      },
      "UpdateTopicRequest": {
        "title": "UpdateTopicRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input18"
          }
        },
        "example": {
          "input": {
            "topic-name": "mosaic-stream",
            "username": "SampleUser",
            "contains": [
              "onu-los",
              "NETCONF-session-disconnect"
            ]
          }
        }
      },
      "GetEventTypes": {
        "title": "GetEventTypes",
        "required": [
          "adtran-cloud-platform-topics:event-types"
        ],
        "type": "object",
        "properties": {
          "adtran-cloud-platform-topics:event-types": {
            "$ref": "#/components/schemas/AdtranCloudPlatformTopicsEventTypes"
          }
        },
        "example": {
          "adtran-cloud-platform-topics:event-types": {
            "event-type": [
              {
                "event-type-name": "uiworkflow-transition-complete"
              },
              {
                "event-type-name": "channel-pair-wavelength-mismatch"
              },
              {
                "event-type-name": "channel-partition-los"
              },
              {
                "event-type-name": "netconf-session-events"
              },
              {
                "event-type-name": "olt-hardware-alarms"
              },
              {
                "event-type-name": "olt-high-temp-alarms"
              },
              {
                "event-type-name": "olt-low-temp-alarms"
              },
              {
                "event-type-name": "olt-optical-threshold-alarms"
              },
              {
                "event-type-name": "olt-pluggable-alarms"
              },
              {
                "event-type-name": "olt-power-reduction-alarms"
              },
              {
                "event-type-name": "olt-thermal-shutdown-alarms"
              },
              {
                "event-type-name": "olt-unapproved-transceiver-alarms"
              },
              {
                "event-type-name": "onu-activate"
              },
              {
                "event-type-name": "onu-dying-gasp"
              },
              {
                "event-type-name": "onu-los"
              },
              {
                "event-type-name": "onu-range-adjustment-complete"
              }
            ]
          }
        }
      },
      "AdtranCloudPlatformTopicsEventTypes": {
        "title": "AdtranCloudPlatformTopicsEventTypes",
        "required": [
          "event-type"
        ],
        "type": "object",
        "properties": {
          "event-type": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/EventType"
            },
            "description": ""
          }
        },
        "example": {
          "event-type": [
            {
              "event-type-name": "uiworkflow-transition-complete"
            },
            {
              "event-type-name": "channel-pair-wavelength-mismatch"
            },
            {
              "event-type-name": "channel-partition-los"
            },
            {
              "event-type-name": "netconf-session-events"
            },
            {
              "event-type-name": "olt-hardware-alarms"
            },
            {
              "event-type-name": "olt-high-temp-alarms"
            },
            {
              "event-type-name": "olt-low-temp-alarms"
            },
            {
              "event-type-name": "olt-optical-threshold-alarms"
            },
            {
              "event-type-name": "olt-pluggable-alarms"
            },
            {
              "event-type-name": "olt-power-reduction-alarms"
            },
            {
              "event-type-name": "olt-thermal-shutdown-alarms"
            },
            {
              "event-type-name": "olt-unapproved-transceiver-alarms"
            },
            {
              "event-type-name": "onu-activate"
            },
            {
              "event-type-name": "onu-dying-gasp"
            },
            {
              "event-type-name": "onu-los"
            },
            {
              "event-type-name": "onu-range-adjustment-complete"
            }
          ]
        }
      },
      "EventType": {
        "title": "EventType",
        "required": [
          "event-type-name"
        ],
        "type": "object",
        "properties": {
          "event-type-name": {
            "type": "string"
          }
        },
        "example": {
          "event-type-name": "uiworkflow-transition-complete"
        }
      },
      "GetAllCreatedTopics": {
        "title": "GetAllCreatedTopics",
        "required": [
          "topic"
        ],
        "type": "object",
        "properties": {
          "topic": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Topic"
            },
            "description": ""
          }
        },
        "example": {
          "topic": [
            {
              "username": "ADMIN",
              "topic-name": "mosaic-stream",
              "contains": [
                "device-unit-install-in-progress",
                "PM-FORWARDING"
              ]
            },
            {
              "username": "ADMIN",
              "topic-name": "mosaic-stream1",
              "contains": [
                "PM_FORWARDING"
              ]
            },
            {
              "username": "ADMIN",
              "topic-name": "testkafka-topic",
              "contains": [
                "olt-optical-threshold-alarms",
                "olt-high-temp-alarms",
                "olt-pluggable-alarms",
                "olt-unapproved-transceiver-alarms",
                "olt-hardware-alarms",
                "olt-power-reduction-alarms",
                "olt-thermal-shutdown-alarms",
                "olt-low-temp-alarms",
                "channel-pair-wavelength-mismatch",
                "channel-partition-los",
                "onu-range-adjustment-complete",
                "onu-dying-gasp",
                "onu-los",
                "onu-activate"
              ]
            },
            {
              "username": "ADMIN",
              "topic-name": "uiworkflow-event-topic",
              "contains": [
                "uiworkflow-transition-complete"
              ]
            }
          ]
        }
      },
      "Topic": {
        "title": "Topic",
        "required": [
          "username",
          "topic-name",
          "contains"
        ],
        "type": "object",
        "properties": {
          "username": {
            "type": "string"
          },
          "topic-name": {
            "type": "string"
          },
          "contains": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "username": "ADMIN",
          "topic-name": "mosaic-stream",
          "contains": [
            "device-unit-install-in-progress",
            "PM-FORWARDING"
          ]
        }
      },
      "SNMPv2c-SpecificFilterRequest": {
        "title": "SNMPv2c-SpecificFilterRequest",
        "required": [
          "host",
          "port",
          "identity",
          "trap-severity",
          "source"
        ],
        "type": "object",
        "properties": {
          "host": {
            "type": "string"
          },
          "port": {
            "type": "integer",
            "format": "int32"
          },
          "identity": {
            "$ref": "#/components/schemas/Identity"
          },
          "trap-severity": {
            "$ref": "#/components/schemas/TrapSeverity"
          },
          "source": {
            "$ref": "#/components/schemas/Source"
          }
        },
        "example": {
          "host": "127.0.0.1",
          "port": 162,
          "identity": {
            "identity": [
              "OLT-1"
            ],
            "filter-action": "permit"
          },
          "trap-severity": {
            "severity": [
              "critical"
            ],
            "filter-action": "permit"
          },
          "source": {
            "source": [
              "127.0.0.1"
            ],
            "filter-action": "permit"
          }
        }
      },
      "Identity": {
        "title": "Identity",
        "required": [
          "identity",
          "filter-action"
        ],
        "type": "object",
        "properties": {
          "identity": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "filter-action": {
            "type": "string"
          }
        },
        "example": {
          "identity": [
            "OLT-1"
          ],
          "filter-action": "permit"
        }
      },
      "TrapSeverity": {
        "title": "TrapSeverity",
        "required": [
          "severity",
          "filter-action"
        ],
        "type": "object",
        "properties": {
          "severity": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "filter-action": {
            "type": "string"
          }
        },
        "example": {
          "severity": [
            "critical"
          ],
          "filter-action": "permit"
        }
      },
      "Source": {
        "title": "Source",
        "required": [
          "source",
          "filter-action"
        ],
        "type": "object",
        "properties": {
          "source": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "filter-action": {
            "type": "string"
          }
        },
        "example": {
          "source": [
            "127.0.0.1"
          ],
          "filter-action": "permit"
        }
      },
      "SNMPv2c-GlobalFilterRequest": {
        "title": "SNMPv2c-GlobalFilterRequest",
        "required": [
          "host",
          "port",
          "use-global-filter"
        ],
        "type": "object",
        "properties": {
          "host": {
            "type": "string"
          },
          "port": {
            "type": "integer",
            "format": "int32"
          },
          "use-global-filter": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        }
      },
      "SNMPv3-SpecificFilterRequest": {
        "title": "SNMPv3-SpecificFilterRequest",
        "required": [
          "host",
          "port",
          "v3",
          "identity",
          "trap-severity",
          "source"
        ],
        "type": "object",
        "properties": {
          "host": {
            "type": "string"
          },
          "port": {
            "type": "integer",
            "format": "int32"
          },
          "v3": {
            "$ref": "#/components/schemas/V3"
          },
          "identity": {
            "$ref": "#/components/schemas/Identity"
          },
          "trap-severity": {
            "$ref": "#/components/schemas/TrapSeverity"
          },
          "source": {
            "$ref": "#/components/schemas/Source"
          }
        },
        "example": {
          "host": "10.11.4.134",
          "port": 162,
          "v3": {
            "username": "username",
            "authentication": {
              "mode": "sha",
              "password": "TopSecret!"
            },
            "privacy": {
              "privacy-mode": "des",
              "password": "SuperSecret!"
            }
          },
          "identity": {
            "identity": [
              "OLT-1"
            ],
            "filter-action": "permit"
          },
          "trap-severity": {
            "severity": [
              "critical"
            ],
            "filter-action": "permit"
          },
          "source": {
            "source": [
              "127.0.0.1"
            ],
            "filter-action": "permit"
          }
        }
      },
      "V3": {
        "title": "V3",
        "required": [
          "username",
          "authentication",
          "privacy"
        ],
        "type": "object",
        "properties": {
          "username": {
            "type": "string"
          },
          "authentication": {
            "$ref": "#/components/schemas/Authentication"
          },
          "privacy": {
            "$ref": "#/components/schemas/Privacy"
          }
        },
        "example": {
          "username": "username",
          "authentication": {
            "mode": "sha",
            "password": "TopSecret!"
          },
          "privacy": {
            "privacy-mode": "des",
            "password": "SuperSecret!"
          }
        }
      },
      "Authentication": {
        "title": "Authentication",
        "required": [
          "mode",
          "password"
        ],
        "type": "object",
        "properties": {
          "mode": {
            "type": "string"
          },
          "password": {
            "type": "string"
          }
        },
        "example": {
          "mode": "sha",
          "password": "TopSecret!"
        }
      },
      "Privacy": {
        "title": "Privacy",
        "required": [
          "privacy-mode",
          "password"
        ],
        "type": "object",
        "properties": {
          "privacy-mode": {
            "type": "string"
          },
          "password": {
            "type": "string"
          }
        },
        "example": {
          "privacy-mode": "des",
          "password": "SuperSecret!"
        }
      },
      "SNMPv3-GlobalFilterRequest": {
        "title": "SNMPv3-GlobalFilterRequest",
        "required": [
          "host",
          "port",
          "use-global-filter",
          "v3"
        ],
        "type": "object",
        "properties": {
          "host": {
            "type": "string"
          },
          "port": {
            "type": "integer",
            "format": "int32"
          },
          "use-global-filter": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "v3": {
            "$ref": "#/components/schemas/V3"
          }
        }
      },
      "RetrieveAllTrapHosts-4hostsspecificfilterandglobalfilter": {
        "title": "RetrieveAllTrapHosts-4hostsspecificfilterandglobalfilter",
        "required": [
          "host",
          "port",
          "source",
          "trap-severity",
          "identity"
        ],
        "type": "object",
        "properties": {
          "host": {
            "type": "string"
          },
          "port": {
            "type": "integer",
            "format": "int32"
          },
          "use-global-filter": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "source": {
            "$ref": "#/components/schemas/Source2"
          },
          "trap-severity": {
            "$ref": "#/components/schemas/TrapSeverity2"
          },
          "identity": {
            "$ref": "#/components/schemas/Identity2"
          },
          "v3": {
            "$ref": "#/components/schemas/V3"
          }
        }
      },
      "Source2": {
        "title": "Source2",
        "required": [
          "filter-action"
        ],
        "type": "object",
        "properties": {
          "any-source": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "filter-action": {
            "type": "string"
          },
          "source": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        }
      },
      "TrapSeverity2": {
        "title": "TrapSeverity2",
        "required": [
          "filter-action"
        ],
        "type": "object",
        "properties": {
          "any-severity": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "filter-action": {
            "type": "string"
          },
          "severity": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        }
      },
      "Identity2": {
        "title": "Identity2",
        "required": [
          "filter-action"
        ],
        "type": "object",
        "properties": {
          "any-identity": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "filter-action": {
            "type": "string"
          },
          "identity": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        }
      },
      "RetrieveTrapHosts-Successful": {
        "title": "RetrieveTrapHosts-Successful",
        "required": [
          "source",
          "host",
          "port",
          "trap-severity",
          "identity"
        ],
        "type": "object",
        "properties": {
          "source": {
            "$ref": "#/components/schemas/Source"
          },
          "host": {
            "type": "string"
          },
          "port": {
            "type": "integer",
            "format": "int32"
          },
          "trap-severity": {
            "$ref": "#/components/schemas/TrapSeverity"
          },
          "identity": {
            "$ref": "#/components/schemas/Identity"
          }
        },
        "example": {
          "source": {
            "source": [
              "127.0.0.1"
            ],
            "filter-action": "permit"
          },
          "host": "127.0.0.1",
          "port": 162,
          "trap-severity": {
            "severity": [
              "critical"
            ],
            "filter-action": "permit"
          },
          "identity": {
            "identity": [
              "OLT-1"
            ],
            "filter-action": "permit"
          }
        }
      },
      "RetrieveSpecificTrapHost-GlobalFilter-Successful": {
        "title": "RetrieveSpecificTrapHost-GlobalFilter-Successful",
        "required": [
          "host",
          "port",
          "source",
          "trap-severity",
          "identity"
        ],
        "type": "object",
        "properties": {
          "host": {
            "type": "string"
          },
          "port": {
            "type": "integer",
            "format": "int32"
          },
          "source": {
            "$ref": "#/components/schemas/Source"
          },
          "trap-severity": {
            "$ref": "#/components/schemas/TrapSeverity"
          },
          "identity": {
            "$ref": "#/components/schemas/Identity"
          }
        },
        "example": {
          "host": "127.0.0.1",
          "port": 162,
          "source": {
            "source": [
              "127.0.0.1"
            ],
            "filter-action": "permit"
          },
          "trap-severity": {
            "severity": [
              "critical"
            ],
            "filter-action": "permit"
          },
          "identity": {
            "identity": [
              "OLT-1"
            ],
            "filter-action": "permit"
          }
        }
      },
      "RetrieveGlobalFilter": {
        "title": "RetrieveGlobalFilter",
        "required": [
          "trap-severity",
          "source",
          "identity"
        ],
        "type": "object",
        "properties": {
          "trap-severity": {
            "$ref": "#/components/schemas/TrapSeverity5"
          },
          "source": {
            "$ref": "#/components/schemas/Source5"
          },
          "identity": {
            "$ref": "#/components/schemas/Identity5"
          }
        }
      },
      "TrapSeverity5": {
        "title": "TrapSeverity5",
        "required": [
          "any-severity",
          "filter-action"
        ],
        "type": "object",
        "properties": {
          "any-severity": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "filter-action": {
            "type": "string"
          }
        }
      },
      "Source5": {
        "title": "Source5",
        "required": [
          "any-source",
          "filter-action"
        ],
        "type": "object",
        "properties": {
          "any-source": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "filter-action": {
            "type": "string"
          }
        }
      },
      "Identity5": {
        "title": "Identity5",
        "required": [
          "any-identity",
          "filter-action"
        ],
        "type": "object",
        "properties": {
          "any-identity": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "filter-action": {
            "type": "string"
          }
        }
      },
      "RetrieveTrapForwarderStatei.eengine-id": {
        "title": "RetrieveTrapForwarderStatei.eengine-id",
        "required": [
          "engine-id"
        ],
        "type": "object",
        "properties": {
          "engine-id": {
            "type": "string"
          }
        },
        "example": {
          "engine-id": "80:00:13:70:01:c0:a8:01:08:58:1c:8c:29"
        }
      },
      "ModifyTrapHostRequest": {
        "title": "ModifyTrapHostRequest",
        "required": [
          "host",
          "port",
          "identity",
          "trap-severity",
          "source"
        ],
        "type": "object",
        "properties": {
          "host": {
            "type": "string"
          },
          "port": {
            "type": "integer",
            "format": "int32"
          },
          "identity": {
            "$ref": "#/components/schemas/Identity"
          },
          "trap-severity": {
            "$ref": "#/components/schemas/TrapSeverity"
          },
          "source": {
            "$ref": "#/components/schemas/Source"
          }
        },
        "example": {
          "host": "127.0.0.1",
          "port": 162,
          "identity": {
            "identity": [
              "OLT-1"
            ],
            "filter-action": "permit"
          },
          "trap-severity": {
            "severity": [
              "critical"
            ],
            "filter-action": "permit"
          },
          "source": {
            "source": [
              "127.0.0.1"
            ],
            "filter-action": "permit"
          }
        }
      },
      "ModifyGlobalFilterRequest": {
        "title": "ModifyGlobalFilterRequest",
        "required": [
          "identity",
          "trap-severity",
          "source"
        ],
        "type": "object",
        "properties": {
          "identity": {
            "$ref": "#/components/schemas/Identity"
          },
          "trap-severity": {
            "$ref": "#/components/schemas/TrapSeverity"
          },
          "source": {
            "$ref": "#/components/schemas/Source"
          }
        },
        "example": {
          "identity": {
            "identity": [
              "OLT-1"
            ],
            "filter-action": "permit"
          },
          "trap-severity": {
            "severity": [
              "critical"
            ],
            "filter-action": "permit"
          },
          "source": {
            "source": [
              "127.0.0.1"
            ],
            "filter-action": "permit"
          }
        }
      },
      "GetLatestEvent-Success": {
        "title": "GetLatestEvent-Success",
        "required": [
          "session-name",
          "timestamp"
        ],
        "type": "object",
        "properties": {
          "session-name": {
            "type": "string"
          },
          "timestamp": {
            "type": "string"
          }
        },
        "example": {
          "session-name": "SampleSessionName",
          "timestamp": "2022-01-01T00:00:00.015Z"
        }
      },
      "GetLatestEvent-Sessionnotfound1": {
        "title": "GetLatestEvent-Sessionnotfound1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "event-session-name BadSessionName was not found"
        }
      },
      "GetLatestEvent-Storagenotready1": {
        "title": "GetLatestEvent-Storagenotready1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "the cache is not yet ready to provide a response"
        }
      },
      "DeleteLatestEventRequest": {
        "title": "DeleteLatestEventRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input20"
          }
        },
        "example": {
          "input": {
            "event-session-name": "SDXOne"
          }
        }
      },
      "Input20": {
        "title": "Input20",
        "required": [
          "event-session-name"
        ],
        "type": "object",
        "properties": {
          "event-session-name": {
            "type": "string"
          }
        },
        "example": {
          "event-session-name": "SDXOne"
        }
      },
      "DeleteLatestEvent-Sessionnotfound1": {
        "title": "DeleteLatestEvent-Sessionnotfound1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "event-session-name BadSessionName was not found"
        }
      },
      "DeleteLatestEvent-Sessionnotready1": {
        "title": "DeleteLatestEvent-Sessionnotready1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "the cache is not yet ready to provide a response"
        }
      },
      "CreateJob-BackupDeviceConfigurationRequest": {
        "title": "CreateJob-BackupDeviceConfigurationRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input21"
          }
        },
        "example": {
          "input": {
            "job-context": {
              "job-name": "Backup Device Configuration Job",
              "action": "Backup Device Configuration",
              "trigger": "On Activate"
            }
          }
        }
      },
      "Input21": {
        "title": "Input21",
        "required": [
          "job-context"
        ],
        "type": "object",
        "properties": {
          "job-context": {
            "$ref": "#/components/schemas/JobContext"
          }
        },
        "example": {
          "job-context": {
            "job-name": "Backup Device Configuration Job",
            "action": "Backup Device Configuration",
            "trigger": "On Activate"
          }
        }
      },
      "JobContext": {
        "title": "JobContext",
        "required": [
          "job-name",
          "action",
          "trigger"
        ],
        "type": "object",
        "properties": {
          "job-name": {
            "type": "string"
          },
          "action": {
            "type": "string"
          },
          "trigger": {
            "type": "string"
          }
        },
        "example": {
          "job-name": "Backup Device Configuration Job",
          "action": "Backup Device Configuration",
          "trigger": "On Activate"
        }
      },
      "JobCreate-BackupDeviceConfiguration": {
        "title": "JobCreate-BackupDeviceConfiguration",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T14:44:25.588000",
            "job-name": "Backup Device Configuration Job",
            "status": "configuring",
            "trans-id": "0baef8e1-dce1-4165-b7a2-272470f55d68",
            "completion-status": "in-progress"
          }
        }
      },
      "Output11": {
        "title": "Output11",
        "required": [
          "timestamp",
          "job-name",
          "status",
          "trans-id",
          "completion-status"
        ],
        "type": "object",
        "properties": {
          "timestamp": {
            "type": "string"
          },
          "job-name": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "trans-id": {
            "type": "string"
          },
          "completion-status": {
            "type": "string"
          }
        },
        "example": {
          "timestamp": "2020-05-08T14:44:25.588000",
          "job-name": "Backup Device Configuration Job",
          "status": "configuring",
          "trans-id": "0baef8e1-dce1-4165-b7a2-272470f55d68",
          "completion-status": "in-progress"
        }
      },
      "DeployJob-BackupDeviceConfigurationRequest": {
        "title": "DeployJob-BackupDeviceConfigurationRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input22"
          }
        },
        "example": {
          "input": {
            "job-context": {
              "job-name": "Backup Device Configuration Job",
              "action-context": [
                {
                  "name": "Filter Criteria",
                  "type": "device",
                  "filter-list": [
                    {
                      "name": "By Label",
                      "type": "label",
                      "hint": "Enter the label(s) used to select devices; these will be evaluated together as a logic OR.",
                      "value-list": [],
                      "filter-criteria": "by-label"
                    },
                    {
                      "name": "By Management Domain",
                      "type": "management-domain",
                      "hint": "Enter Management domain(s) used to select devices; these will be evaluated together as a logic OR.",
                      "value-list": [],
                      "filter-criteria": "by-management-domain"
                    },
                    {
                      "name": "By Parent Device",
                      "type": "device",
                      "hint": "Enter parent device(s) used to select children devices.",
                      "value-list": [],
                      "filter-criteria": "by-parent-device"
                    },
                    {
                      "name": "By Name",
                      "type": "device",
                      "hint": "Enter the device name(s) used to select devices",
                      "value-list": [
                        "device-1"
                      ],
                      "filter-criteria": "by-name"
                    }
                  ],
                  "hint": "Choose how you would like to select the devices that would be affected by this job.",
                  "value-list": []
                }
              ],
              "trigger-context": []
            }
          }
        }
      },
      "Input22": {
        "title": "Input22",
        "required": [
          "job-context"
        ],
        "type": "object",
        "properties": {
          "job-context": {
            "$ref": "#/components/schemas/JobContext1"
          }
        },
        "example": {
          "job-context": {
            "job-name": "Backup Device Configuration Job",
            "action-context": [
              {
                "name": "Filter Criteria",
                "type": "device",
                "filter-list": [
                  {
                    "name": "By Label",
                    "type": "label",
                    "hint": "Enter the label(s) used to select devices; these will be evaluated together as a logic OR.",
                    "value-list": [],
                    "filter-criteria": "by-label"
                  },
                  {
                    "name": "By Management Domain",
                    "type": "management-domain",
                    "hint": "Enter Management domain(s) used to select devices; these will be evaluated together as a logic OR.",
                    "value-list": [],
                    "filter-criteria": "by-management-domain"
                  },
                  {
                    "name": "By Parent Device",
                    "type": "device",
                    "hint": "Enter parent device(s) used to select children devices.",
                    "value-list": [],
                    "filter-criteria": "by-parent-device"
                  },
                  {
                    "name": "By Name",
                    "type": "device",
                    "hint": "Enter the device name(s) used to select devices",
                    "value-list": [
                      "device-1"
                    ],
                    "filter-criteria": "by-name"
                  }
                ],
                "hint": "Choose how you would like to select the devices that would be affected by this job.",
                "value-list": []
              }
            ],
            "trigger-context": []
          }
        }
      },
      "JobContext1": {
        "title": "JobContext1",
        "required": [
          "job-name",
          "action-context",
          "trigger-context"
        ],
        "type": "object",
        "properties": {
          "job-name": {
            "type": "string"
          },
          "action-context": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ActionContext"
            },
            "description": ""
          },
          "trigger-context": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "job-name": "Backup Device Configuration Job",
          "action-context": [
            {
              "name": "Filter Criteria",
              "type": "device",
              "filter-list": [
                {
                  "name": "By Label",
                  "type": "label",
                  "hint": "Enter the label(s) used to select devices; these will be evaluated together as a logic OR.",
                  "value-list": [],
                  "filter-criteria": "by-label"
                },
                {
                  "name": "By Management Domain",
                  "type": "management-domain",
                  "hint": "Enter Management domain(s) used to select devices; these will be evaluated together as a logic OR.",
                  "value-list": [],
                  "filter-criteria": "by-management-domain"
                },
                {
                  "name": "By Parent Device",
                  "type": "device",
                  "hint": "Enter parent device(s) used to select children devices.",
                  "value-list": [],
                  "filter-criteria": "by-parent-device"
                },
                {
                  "name": "By Name",
                  "type": "device",
                  "hint": "Enter the device name(s) used to select devices",
                  "value-list": [
                    "device-1"
                  ],
                  "filter-criteria": "by-name"
                }
              ],
              "hint": "Choose how you would like to select the devices that would be affected by this job.",
              "value-list": []
            }
          ],
          "trigger-context": []
        }
      },
      "ActionContext": {
        "title": "ActionContext",
        "required": [
          "name",
          "type",
          "filter-list",
          "hint",
          "value-list"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "filter-list": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/FilterList"
            },
            "description": ""
          },
          "hint": {
            "type": "string"
          },
          "value-list": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "name": "Filter Criteria",
          "type": "device",
          "filter-list": [
            {
              "name": "By Label",
              "type": "label",
              "hint": "Enter the label(s) used to select devices; these will be evaluated together as a logic OR.",
              "value-list": [],
              "filter-criteria": "by-label"
            },
            {
              "name": "By Management Domain",
              "type": "management-domain",
              "hint": "Enter Management domain(s) used to select devices; these will be evaluated together as a logic OR.",
              "value-list": [],
              "filter-criteria": "by-management-domain"
            },
            {
              "name": "By Parent Device",
              "type": "device",
              "hint": "Enter parent device(s) used to select children devices.",
              "value-list": [],
              "filter-criteria": "by-parent-device"
            },
            {
              "name": "By Name",
              "type": "device",
              "hint": "Enter the device name(s) used to select devices",
              "value-list": [
                "device-1"
              ],
              "filter-criteria": "by-name"
            }
          ],
          "hint": "Choose how you would like to select the devices that would be affected by this job.",
          "value-list": []
        }
      },
      "FilterList": {
        "title": "FilterList",
        "required": [
          "name",
          "type",
          "hint",
          "value-list",
          "filter-criteria"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "hint": {
            "type": "string"
          },
          "value-list": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "filter-criteria": {
            "type": "string"
          }
        },
        "example": {
          "name": "By Label",
          "type": "label",
          "hint": "Enter the label(s) used to select devices; these will be evaluated together as a logic OR.",
          "value-list": [],
          "filter-criteria": "by-label"
        }
      },
      "JobDeploy-BackupDeviceConfiguration": {
        "title": "JobDeploy-BackupDeviceConfiguration",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T14:45:13.034000",
            "job-name": "Backup Device Configuration Job",
            "status": "deploying",
            "trans-id": "7da3716c-4602-4006-a48c-e3507307cd0c",
            "completion-status": "in-progress"
          }
        }
      },
      "ActivateJob-BackupDeviceConfigurationRequest": {
        "title": "ActivateJob-BackupDeviceConfigurationRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input23"
          }
        },
        "example": {
          "input": {
            "job-context": {
              "job-name": "Backup Device Configuration Job"
            }
          }
        }
      },
      "Input23": {
        "title": "Input23",
        "required": [
          "job-context"
        ],
        "type": "object",
        "properties": {
          "job-context": {
            "$ref": "#/components/schemas/JobContext2"
          }
        },
        "example": {
          "job-context": {
            "job-name": "Backup Device Configuration Job"
          }
        }
      },
      "JobContext2": {
        "title": "JobContext2",
        "required": [
          "job-name"
        ],
        "type": "object",
        "properties": {
          "job-name": {
            "type": "string"
          }
        },
        "example": {
          "job-name": "Backup Device Configuration Job"
        }
      },
      "JobActivate-BackupDeviceConfiguration": {
        "title": "JobActivate-BackupDeviceConfiguration",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T14:45:26.096000",
            "job-name": "Backup Device Configuration Job",
            "status": "activating",
            "trans-id": "f3a475c0-1c45-48b9-8abe-3e6f4da28864",
            "completion-status": "in-progress"
          }
        }
      },
      "RunJob-BackupDeviceConfigurationRequest": {
        "title": "RunJob-BackupDeviceConfigurationRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input24"
          }
        },
        "example": {
          "input": {
            "job-name": "Backup Device Configuration Job"
          }
        }
      },
      "Input24": {
        "title": "Input24",
        "required": [
          "job-name"
        ],
        "type": "object",
        "properties": {
          "job-name": {
            "type": "string"
          }
        },
        "example": {
          "job-name": "Backup Device Configuration Job"
        }
      },
      "JobRun-BackupDeviceConfiguration": {
        "title": "JobRun-BackupDeviceConfiguration",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output14"
          }
        },
        "example": {
          "output": {
            "trans-id": "9a1cbbbd-a75d-4b98-947c-e4e994f15624",
            "completion-status": "in-progress"
          }
        }
      },
      "Output14": {
        "title": "Output14",
        "required": [
          "trans-id",
          "completion-status"
        ],
        "type": "object",
        "properties": {
          "trans-id": {
            "type": "string"
          },
          "completion-status": {
            "type": "string"
          }
        },
        "example": {
          "trans-id": "9a1cbbbd-a75d-4b98-947c-e4e994f15624",
          "completion-status": "in-progress"
        }
      },
      "CreateJob-RestoreDeviceConfigurationRequest": {
        "title": "CreateJob-RestoreDeviceConfigurationRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input21"
          }
        },
        "example": {
          "input": {
            "job-context": {
              "job-name": "Restore Device Configuration Job",
              "action": "Restore Device Configuration",
              "trigger": "On Activate"
            }
          }
        }
      },
      "JobCreate-RestoreDeviceConfiguration": {
        "title": "JobCreate-RestoreDeviceConfiguration",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T14:50:04.523000",
            "job-name": "Restore Device Configuration Job",
            "status": "configuring",
            "trans-id": "f34849cf-57d0-454e-aca2-089ef558fe1c",
            "completion-status": "in-progress"
          }
        }
      },
      "DeployJob-RestoreDeviceConfigurationRequest": {
        "title": "DeployJob-RestoreDeviceConfigurationRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input26"
          }
        },
        "example": {
          "input": {
            "job-context": {
              "job-name": "Restore Device Configuration Job",
              "action-context": [
                {
                  "name": "Device Name",
                  "type": "device",
                  "value": "device-1"
                },
                {
                  "name": "Backup Instance",
                  "type": "string-list",
                  "value": "2020-06-17T19:19:31Z_11971320F1-RL-20.3-9"
                }
              ],
              "trigger-context": []
            }
          }
        }
      },
      "Input26": {
        "title": "Input26",
        "required": [
          "job-context"
        ],
        "type": "object",
        "properties": {
          "job-context": {
            "$ref": "#/components/schemas/JobContext4"
          }
        },
        "example": {
          "job-context": {
            "job-name": "Restore Device Configuration Job",
            "action-context": [
              {
                "name": "Device Name",
                "type": "device",
                "value": "device-1"
              },
              {
                "name": "Backup Instance",
                "type": "string-list",
                "value": "2020-06-17T19:19:31Z_11971320F1-RL-20.3-9"
              }
            ],
            "trigger-context": []
          }
        }
      },
      "JobContext4": {
        "title": "JobContext4",
        "required": [
          "job-name",
          "action-context",
          "trigger-context"
        ],
        "type": "object",
        "properties": {
          "job-name": {
            "type": "string"
          },
          "action-context": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ActionContext1"
            },
            "description": ""
          },
          "trigger-context": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "job-name": "Restore Device Configuration Job",
          "action-context": [
            {
              "name": "Device Name",
              "type": "device",
              "value": "device-1"
            },
            {
              "name": "Backup Instance",
              "type": "string-list",
              "value": "2020-06-17T19:19:31Z_11971320F1-RL-20.3-9"
            }
          ],
          "trigger-context": []
        }
      },
      "ActionContext1": {
        "title": "ActionContext1",
        "required": [
          "name",
          "type",
          "value"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "value": {
            "type": "string"
          }
        },
        "example": {
          "name": "Device Name",
          "type": "device",
          "value": "device-1"
        }
      },
      "JobDeploy-RestoreDeviceConfiguration": {
        "title": "JobDeploy-RestoreDeviceConfiguration",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T14:51:26.066000",
            "job-name": "Restore Device Configuration Job",
            "status": "deploying",
            "trans-id": "33a0da8c-f0f4-4259-b55d-51539127ad79",
            "completion-status": "in-progress"
          }
        }
      },
      "ActivateJob-RestoreDeviceConfigurationRequest": {
        "title": "ActivateJob-RestoreDeviceConfigurationRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input23"
          }
        },
        "example": {
          "input": {
            "job-context": {
              "job-name": "Restore Device Configuration Job"
            }
          }
        }
      },
      "JobActivate-RestoreDeviceConfiguration": {
        "title": "JobActivate-RestoreDeviceConfiguration",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T14:52:47.499000",
            "job-name": "Restore Device Configuration Job",
            "status": "activating",
            "trans-id": "15fc40ea-b555-4ec3-90dd-1ba97b3b4d39",
            "completion-status": "in-progress"
          }
        }
      },
      "RunJob-RestoreDeviceConfigurationRequest": {
        "title": "RunJob-RestoreDeviceConfigurationRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input24"
          }
        },
        "example": {
          "input": {
            "job-name": "Restore Device Configuration Job"
          }
        }
      },
      "JobRun-RestoreDeviceConfiguration": {
        "title": "JobRun-RestoreDeviceConfiguration",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output14"
          }
        },
        "example": {
          "output": {
            "trans-id": "9a1cbbbd-a75d-4b98-947c-e4e994f15624",
            "completion-status": "in-progress"
          }
        }
      },
      "CreateJob-DownloadJobRequest": {
        "title": "CreateJob-DownloadJobRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input21"
          }
        },
        "example": {
          "input": {
            "job-context": {
              "job-name": "Download Job",
              "action": "Download",
              "trigger": "On Activate"
            }
          }
        }
      },
      "JobCreate-DownloadandCommit": {
        "title": "JobCreate-DownloadandCommit",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T12:06:57.592000",
            "job-name": "Download and Commit Job",
            "status": "configuring",
            "trans-id": "24ed8a85-71d3-41f4-bc84-9313385ebbd7",
            "completion-status": "in-progress"
          }
        }
      },
      "JobCreate-DownloadSoftwareOnly": {
        "title": "JobCreate-DownloadSoftwareOnly",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T12:06:57.592000",
            "job-name": "Download Software Only Job",
            "status": "configuring",
            "trans-id": "24ed8a85-71d3-41f4-bc84-9313385ebbd7",
            "completion-status": "in-progress"
          }
        }
      },
      "JobCreate-ActivateDeviceSoftware": {
        "title": "JobCreate-ActivateDeviceSoftware",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T12:06:57.592000",
            "job-name": "Activate Device Software Job",
            "status": "configuring",
            "trans-id": "24ed8a85-71d3-41f4-bc84-9313385ebbd7",
            "completion-status": "in-progress"
          }
        }
      },
      "JobCreate-Download": {
        "title": "JobCreate-Download",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T12:06:57.592000",
            "job-name": "Download Job",
            "status": "configuring",
            "trans-id": "24ed8a85-71d3-41f4-bc84-9313385ebbd7",
            "completion-status": "in-progress"
          }
        }
      },
      "JobCreate-DownloadSoftwareOnlybyManagementDomain": {
        "title": "JobCreate-DownloadSoftwareOnlybyManagementDomain",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-10T06:51:59.287000",
            "job-name": "Download Software Only by Management Domain Job",
            "status": "configuring",
            "trans-id": "0dfe781f-3535-47ae-af43-603a5b5a247f",
            "completion-status": "in-progress"
          }
        }
      },
      "JobCreate-Commit": {
        "title": "JobCreate-Commit",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T12:06:57.592000",
            "job-name": "Commit Job",
            "status": "configuring",
            "trans-id": "24ed8a85-71d3-41f4-bc84-9313385ebbd7",
            "completion-status": "in-progress"
          }
        }
      },
      "JobCreate-DownloadSoftwareOnlybyLabel": {
        "title": "JobCreate-DownloadSoftwareOnlybyLabel",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T12:06:57.592000",
            "job-name": "Download Software Only by Label Job",
            "status": "configuring",
            "trans-id": "24ed8a85-71d3-41f4-bc84-9313385ebbd7",
            "completion-status": "in-progress"
          }
        }
      },
      "JobCreate-ActivateDeviceSoftwarebyChannelPartition": {
        "title": "JobCreate-ActivateDeviceSoftwarebyChannelPartition",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T12:06:57.592000",
            "job-name": "Activate Device Software by Channel Partition Job",
            "status": "configuring",
            "trans-id": "24ed8a85-71d3-41f4-bc84-9313385ebbd7",
            "completion-status": "in-progress"
          }
        }
      },
      "JobCreate-DownloadSoftwareOnlybyParentDevice": {
        "title": "JobCreate-DownloadSoftwareOnlybyParentDevice",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T12:06:57.592000",
            "job-name": "Download Software Only by Parent Device Job",
            "status": "configuring",
            "trans-id": "24ed8a85-71d3-41f4-bc84-9313385ebbd7",
            "completion-status": "in-progress"
          }
        }
      },
      "DeployJob-DownloadJobRequest": {
        "title": "DeployJob-DownloadJobRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input30"
          }
        },
        "example": {
          "input": {
            "job-context": {
              "job-name": "Download Job",
              "action-context": [
                {
                  "name": "Duration",
                  "type": "string",
                  "hint": "Time limit in minutes to run the job.",
                  "value": "120"
                },
                {
                  "name": "Server",
                  "type": "server",
                  "hint": "Server name.",
                  "value": "server-1"
                },
                {
                  "name": "Software Profile",
                  "type": "profile",
                  "subtype": [
                    "device-software-profile"
                  ],
                  "hint": "Software profile name.",
                  "value": "SDX 6310 OLT Upgrade Profile"
                },
                {
                  "name": "Device Model",
                  "type": "string-list",
                  "subtype": [
                    "NGPON2 16P OLT Access Switch",
                    "SDX 6310 16-port 10G OLT",
                    "SDX 6010 16-port GPON OLT",
                    "SDX 6312 4-port Combo Remote OLT",
                    "SDX 6320 16-port Combo OLT",
                    "SDX 8310 32x100 ToR Switch",
                    "SDX 602X XGS-PON ONU",
                    "SDX 621X XGS-PON ONU",
                    "SDX 621V NGPON2 ONU",
                    "SDX 602V NGPON2 IBONT",
                    "401 GPON ONU",
                    "411 GPON ONU",
                    "SDX 611 GPON ONU"
                  ],
                  "hint": "Device model to upgrade.",
                  "value": "SDX 6310 16-port 10G OLT"
                },
                {
                  "name": "Filter Criteria",
                  "type": "device",
                  "filter-list": [
                    {
                      "name": "By Label",
                      "type": "label",
                      "hint": "Enter the label(s) used to select devices; these will be evaluated together as a logic OR.",
                      "value-list": []
                    },
                    {
                      "name": "By Management Domain",
                      "type": "management-domain",
                      "hint": "Enter Management domain(s) used to select devices; these will be evaluated together as a logic OR.",
                      "value-list": []
                    },
                    {
                      "name": "By Parent Device",
                      "type": "device",
                      "hint": "Enter parent device(s) used to select children devices.",
                      "value-list": []
                    },
                    {
                      "name": "By Name",
                      "type": "device",
                      "hint": "Enter the device name(s) used to select devices",
                      "value-list": [
                        "device-1"
                      ]
                    }
                  ],
                  "hint": "Choose how you would like to select the devices that would be affected by this job.",
                  "value-list": []
                }
              ],
              "trigger-context": []
            }
          }
        }
      },
      "Input30": {
        "title": "Input30",
        "required": [
          "job-context"
        ],
        "type": "object",
        "properties": {
          "job-context": {
            "$ref": "#/components/schemas/JobContext7"
          }
        },
        "example": {
          "job-context": {
            "job-name": "Download Job",
            "action-context": [
              {
                "name": "Duration",
                "type": "string",
                "hint": "Time limit in minutes to run the job.",
                "value": "120"
              },
              {
                "name": "Server",
                "type": "server",
                "hint": "Server name.",
                "value": "server-1"
              },
              {
                "name": "Software Profile",
                "type": "profile",
                "subtype": [
                  "device-software-profile"
                ],
                "hint": "Software profile name.",
                "value": "SDX 6310 OLT Upgrade Profile"
              },
              {
                "name": "Device Model",
                "type": "string-list",
                "subtype": [
                  "NGPON2 16P OLT Access Switch",
                  "SDX 6310 16-port 10G OLT",
                  "SDX 6010 16-port GPON OLT",
                  "SDX 6312 4-port Combo Remote OLT",
                  "SDX 6320 16-port Combo OLT",
                  "SDX 8310 32x100 ToR Switch",
                  "SDX 602X XGS-PON ONU",
                  "SDX 621X XGS-PON ONU",
                  "SDX 621V NGPON2 ONU",
                  "SDX 602V NGPON2 IBONT",
                  "401 GPON ONU",
                  "411 GPON ONU",
                  "SDX 611 GPON ONU"
                ],
                "hint": "Device model to upgrade.",
                "value": "SDX 6310 16-port 10G OLT"
              },
              {
                "name": "Filter Criteria",
                "type": "device",
                "filter-list": [
                  {
                    "name": "By Label",
                    "type": "label",
                    "hint": "Enter the label(s) used to select devices; these will be evaluated together as a logic OR.",
                    "value-list": []
                  },
                  {
                    "name": "By Management Domain",
                    "type": "management-domain",
                    "hint": "Enter Management domain(s) used to select devices; these will be evaluated together as a logic OR.",
                    "value-list": []
                  },
                  {
                    "name": "By Parent Device",
                    "type": "device",
                    "hint": "Enter parent device(s) used to select children devices.",
                    "value-list": []
                  },
                  {
                    "name": "By Name",
                    "type": "device",
                    "hint": "Enter the device name(s) used to select devices",
                    "value-list": [
                      "device-1"
                    ]
                  }
                ],
                "hint": "Choose how you would like to select the devices that would be affected by this job.",
                "value-list": []
              }
            ],
            "trigger-context": []
          }
        }
      },
      "JobContext7": {
        "title": "JobContext7",
        "required": [
          "job-name",
          "action-context",
          "trigger-context"
        ],
        "type": "object",
        "properties": {
          "job-name": {
            "type": "string"
          },
          "action-context": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ActionContext2"
            },
            "description": ""
          },
          "trigger-context": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "job-name": "Download Job",
          "action-context": [
            {
              "name": "Duration",
              "type": "string",
              "hint": "Time limit in minutes to run the job.",
              "value": "120"
            },
            {
              "name": "Server",
              "type": "server",
              "hint": "Server name.",
              "value": "server-1"
            },
            {
              "name": "Software Profile",
              "type": "profile",
              "subtype": [
                "device-software-profile"
              ],
              "hint": "Software profile name.",
              "value": "SDX 6310 OLT Upgrade Profile"
            },
            {
              "name": "Device Model",
              "type": "string-list",
              "subtype": [
                "NGPON2 16P OLT Access Switch",
                "SDX 6310 16-port 10G OLT",
                "SDX 6010 16-port GPON OLT",
                "SDX 6312 4-port Combo Remote OLT",
                "SDX 6320 16-port Combo OLT",
                "SDX 8310 32x100 ToR Switch",
                "SDX 602X XGS-PON ONU",
                "SDX 621X XGS-PON ONU",
                "SDX 621V NGPON2 ONU",
                "SDX 602V NGPON2 IBONT",
                "401 GPON ONU",
                "411 GPON ONU",
                "SDX 611 GPON ONU"
              ],
              "hint": "Device model to upgrade.",
              "value": "SDX 6310 16-port 10G OLT"
            },
            {
              "name": "Filter Criteria",
              "type": "device",
              "filter-list": [
                {
                  "name": "By Label",
                  "type": "label",
                  "hint": "Enter the label(s) used to select devices; these will be evaluated together as a logic OR.",
                  "value-list": []
                },
                {
                  "name": "By Management Domain",
                  "type": "management-domain",
                  "hint": "Enter Management domain(s) used to select devices; these will be evaluated together as a logic OR.",
                  "value-list": []
                },
                {
                  "name": "By Parent Device",
                  "type": "device",
                  "hint": "Enter parent device(s) used to select children devices.",
                  "value-list": []
                },
                {
                  "name": "By Name",
                  "type": "device",
                  "hint": "Enter the device name(s) used to select devices",
                  "value-list": [
                    "device-1"
                  ]
                }
              ],
              "hint": "Choose how you would like to select the devices that would be affected by this job.",
              "value-list": []
            }
          ],
          "trigger-context": []
        }
      },
      "ActionContext2": {
        "title": "ActionContext2",
        "required": [
          "name",
          "type",
          "hint"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "hint": {
            "type": "string"
          },
          "value": {
            "type": "string"
          },
          "subtype": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "filter-list": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/FilterList1"
            },
            "description": ""
          },
          "value-list": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "name": "Duration",
          "type": "string",
          "hint": "Time limit in minutes to run the job.",
          "value": "120"
        }
      },
      "FilterList1": {
        "title": "FilterList1",
        "required": [
          "name",
          "type",
          "hint",
          "value-list"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "hint": {
            "type": "string"
          },
          "value-list": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "name": "By Label",
          "type": "label",
          "hint": "Enter the label(s) used to select devices; these will be evaluated together as a logic OR.",
          "value-list": []
        }
      },
      "JobDeploy-Commit": {
        "title": "JobDeploy-Commit",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T12:13:02.545000",
            "job-name": "Commit Job",
            "status": "deploying",
            "trans-id": "2cd9aab2-4d12-49fe-afba-b1df61cf4aad",
            "completion-status": "in-progress"
          }
        }
      },
      "JobDeploy-DownloadSoftwareOnly": {
        "title": "JobDeploy-DownloadSoftwareOnly",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T12:13:02.545000",
            "job-name": "Download Software Only Job",
            "status": "deploying",
            "trans-id": "2cd9aab2-4d12-49fe-afba-b1df61cf4aad",
            "completion-status": "in-progress"
          }
        }
      },
      "JobDeploy-DownloadSoftwareOnlybyParentDevice": {
        "title": "JobDeploy-DownloadSoftwareOnlybyParentDevice",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T12:13:02.545000",
            "job-name": "Download Software Only by Parent Device Job",
            "status": "deploying",
            "trans-id": "2cd9aab2-4d12-49fe-afba-b1df61cf4aad",
            "completion-status": "in-progress"
          }
        }
      },
      "JobDeploy-DownloadSoftwareOnlybyLabel": {
        "title": "JobDeploy-DownloadSoftwareOnlybyLabel",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T12:13:02.545000",
            "job-name": "Download Software Only by Label Job",
            "status": "deploying",
            "trans-id": "2cd9aab2-4d12-49fe-afba-b1df61cf4aad",
            "completion-status": "in-progress"
          }
        }
      },
      "JobDeploy-ActivateDeviceSoftware": {
        "title": "JobDeploy-ActivateDeviceSoftware",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T12:13:02.545000",
            "job-name": "Activate Device Software Job",
            "status": "deploying",
            "trans-id": "2cd9aab2-4d12-49fe-afba-b1df61cf4aad",
            "completion-status": "in-progress"
          }
        }
      },
      "JobDeploy-DownloadandCommit": {
        "title": "JobDeploy-DownloadandCommit",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T12:13:02.545000",
            "job-name": "Download and Commit Job",
            "status": "deploying",
            "trans-id": "2cd9aab2-4d12-49fe-afba-b1df61cf4aad",
            "completion-status": "in-progress"
          }
        }
      },
      "JobDeploy-ActivateDeviceSoftwarebyChannelPartition": {
        "title": "JobDeploy-ActivateDeviceSoftwarebyChannelPartition",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T12:13:02.545000",
            "job-name": "Activate Device Software by Channel Partition Job",
            "status": "deploying",
            "trans-id": "2cd9aab2-4d12-49fe-afba-b1df61cf4aad",
            "completion-status": "in-progress"
          }
        }
      },
      "JobDeploy-DownloadSoftwareOnlybyManagementDomain": {
        "title": "JobDeploy-DownloadSoftwareOnlybyManagementDomain",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-10T06:53:04.142000",
            "job-name": "Download Software Only by Management Domain Job",
            "status": "deploying",
            "trans-id": "20086ec4-f785-41d9-9ac9-b9c615873695",
            "completion-status": "in-progress"
          }
        }
      },
      "JobDeploy-Download": {
        "title": "JobDeploy-Download",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T12:13:02.545000",
            "job-name": "Download Job",
            "status": "deploying",
            "trans-id": "2cd9aab2-4d12-49fe-afba-b1df61cf4aad",
            "completion-status": "in-progress"
          }
        }
      },
      "ActivateJob-DownloadJobRequest": {
        "title": "ActivateJob-DownloadJobRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input23"
          }
        },
        "example": {
          "input": {
            "job-context": {
              "job-name": "Download Job"
            }
          }
        }
      },
      "JobActivate-ActivateDeviceSoftwarebyChannelPartition": {
        "title": "JobActivate-ActivateDeviceSoftwarebyChannelPartition",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T12:18:19.749000",
            "job-name": "Activate Device Software by Channel Partition Job",
            "status": "activating",
            "trans-id": "0c2a741e-6b93-4882-bd0a-c11d782dac7c",
            "completion-status": "in-progress"
          }
        }
      },
      "JobActivate-Download": {
        "title": "JobActivate-Download",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T12:18:19.749000",
            "job-name": "Download Job",
            "status": "activating",
            "trans-id": "0c2a741e-6b93-4882-bd0a-c11d782dac7c",
            "completion-status": "in-progress"
          }
        }
      },
      "JobActivate-DownloadSoftwareOnlybyParentDevice": {
        "title": "JobActivate-DownloadSoftwareOnlybyParentDevice",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T12:18:19.749000",
            "job-name": "Download Software Only by Parent Device Job",
            "status": "activating",
            "trans-id": "0c2a741e-6b93-4882-bd0a-c11d782dac7c",
            "completion-status": "in-progress"
          }
        }
      },
      "JobActivate-Commit": {
        "title": "JobActivate-Commit",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T12:18:19.749000",
            "job-name": "Commit Job",
            "status": "activating",
            "trans-id": "0c2a741e-6b93-4882-bd0a-c11d782dac7c",
            "completion-status": "in-progress"
          }
        }
      },
      "JobActivate-DownloadSoftwareOnly": {
        "title": "JobActivate-DownloadSoftwareOnly",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T12:18:19.749000",
            "job-name": "Download Software Only Job",
            "status": "activating",
            "trans-id": "0c2a741e-6b93-4882-bd0a-c11d782dac7c",
            "completion-status": "in-progress"
          }
        }
      },
      "JobActivate-DownloadSoftwareOnlybyLabel": {
        "title": "JobActivate-DownloadSoftwareOnlybyLabel",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T12:18:19.749000",
            "job-name": "Download Software Only by Label Job",
            "status": "activating",
            "trans-id": "0c2a741e-6b93-4882-bd0a-c11d782dac7c",
            "completion-status": "in-progress"
          }
        }
      },
      "JobActivate-DownloadandCommit": {
        "title": "JobActivate-DownloadandCommit",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T12:18:19.749000",
            "job-name": "Download and Commit Job",
            "status": "activating",
            "trans-id": "0c2a741e-6b93-4882-bd0a-c11d782dac7c",
            "completion-status": "in-progress"
          }
        }
      },
      "JobActivate-DownloadSoftwareOnlybyManagementDomain": {
        "title": "JobActivate-DownloadSoftwareOnlybyManagementDomain",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-10T06:54:38.369000",
            "job-name": "Download Software Only by Management Domain Job",
            "status": "activating",
            "trans-id": "5e9bdcf7-251d-407f-bec9-229cb024b363",
            "completion-status": "in-progress"
          }
        }
      },
      "JobActivate-ActivateDeviceSoftware": {
        "title": "JobActivate-ActivateDeviceSoftware",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T12:18:19.749000",
            "job-name": "Activate Device Software Job",
            "status": "activating",
            "trans-id": "0c2a741e-6b93-4882-bd0a-c11d782dac7c",
            "completion-status": "in-progress"
          }
        }
      },
      "RunJob-DownloadJobRequest": {
        "title": "RunJob-DownloadJobRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input32"
          }
        },
        "example": {
          "input": {
            "job-name": "Download Job",
            "blocking": true,
            "context": [
              {
                "name": "Device Name",
                "value-list": [
                  "device-1"
                ]
              }
            ]
          }
        }
      },
      "Input32": {
        "title": "Input32",
        "required": [
          "job-name",
          "blocking",
          "context"
        ],
        "type": "object",
        "properties": {
          "job-name": {
            "type": "string"
          },
          "blocking": {
            "type": "boolean"
          },
          "context": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Context"
            },
            "description": ""
          }
        },
        "example": {
          "job-name": "Download Job",
          "blocking": true,
          "context": [
            {
              "name": "Device Name",
              "value-list": [
                "device-1"
              ]
            }
          ]
        }
      },
      "Context": {
        "title": "Context",
        "required": [
          "name",
          "value-list"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "value-list": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "name": "Device Name",
          "value-list": [
            "device-1"
          ]
        }
      },
      "JobRun-ActivateDeviceSoftwareerror": {
        "title": "JobRun-ActivateDeviceSoftwareerror",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output46"
          }
        },
        "example": {
          "output": {
            "trans-id": "62621e75-df7e-475a-8cba-0e618730753c",
            "completion-status": "failure",
            "final-result": [
              {
                "input": {
                  "device-name": "device-1",
                  "action": "Activate Device Software",
                  "prev-blocking": true
                },
                "output": {
                  "error_description": "Software activation is not performed as the candidate revision:11971320F1-ML-6713 is not same as target revision:NA"
                }
              }
            ]
          }
        }
      },
      "Output46": {
        "title": "Output46",
        "required": [
          "trans-id",
          "completion-status",
          "final-result"
        ],
        "type": "object",
        "properties": {
          "trans-id": {
            "type": "string"
          },
          "completion-status": {
            "type": "string"
          },
          "final-result": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/FinalResult"
            },
            "description": ""
          }
        },
        "example": {
          "trans-id": "62621e75-df7e-475a-8cba-0e618730753c",
          "completion-status": "failure",
          "final-result": [
            {
              "input": {
                "device-name": "device-1",
                "action": "Activate Device Software",
                "prev-blocking": true
              },
              "output": {
                "error_description": "Software activation is not performed as the candidate revision:11971320F1-ML-6713 is not same as target revision:NA"
              }
            }
          ]
        }
      },
      "FinalResult": {
        "title": "FinalResult",
        "required": [
          "input",
          "output"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input33"
          },
          "output": {
            "$ref": "#/components/schemas/Output47"
          }
        },
        "example": {
          "input": {
            "device-name": "device-1",
            "action": "Activate Device Software",
            "prev-blocking": true
          },
          "output": {
            "error_description": "Software activation is not performed as the candidate revision:11971320F1-ML-6713 is not same as target revision:NA"
          }
        }
      },
      "Input33": {
        "title": "Input33",
        "required": [
          "device-name",
          "action",
          "prev-blocking"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "action": {
            "type": "string"
          },
          "prev-blocking": {
            "type": "boolean"
          }
        },
        "example": {
          "device-name": "device-1",
          "action": "Activate Device Software",
          "prev-blocking": true
        }
      },
      "Output47": {
        "title": "Output47",
        "required": [
          "error_description"
        ],
        "type": "object",
        "properties": {
          "error_description": {
            "type": "string"
          }
        },
        "example": {
          "error_description": "Software activation is not performed as the candidate revision:11971320F1-ML-6713 is not same as target revision:NA"
        }
      },
      "JobRun-DownloadSoftwareOnlybyParentDevice": {
        "title": "JobRun-DownloadSoftwareOnlybyParentDevice",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output48"
          }
        },
        "example": {
          "output": {
            "trans-id": "8cb07f3f-5f8c-4c54-b4fa-db564bccc7e2",
            "completion-status": "completed-ok",
            "final-result": [
              {
                "input": {
                  "device-name": "device-1",
                  "trans-id": "76b1f843-d755-42d5-9e44-9bb47fa1d60e",
                  "completion-status": "completed-ok",
                  "message": "Download Software Only by Parent Device chain complete",
                  "action": "complete-chain",
                  "prev-blocking": true
                },
                "output": {
                  "message": "Download Software Only by Parent Device chain complete",
                  "success": "ok"
                }
              }
            ]
          }
        }
      },
      "Output48": {
        "title": "Output48",
        "required": [
          "trans-id",
          "completion-status",
          "final-result"
        ],
        "type": "object",
        "properties": {
          "trans-id": {
            "type": "string"
          },
          "completion-status": {
            "type": "string"
          },
          "final-result": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/FinalResult1"
            },
            "description": ""
          }
        },
        "example": {
          "trans-id": "8cb07f3f-5f8c-4c54-b4fa-db564bccc7e2",
          "completion-status": "completed-ok",
          "final-result": [
            {
              "input": {
                "device-name": "device-1",
                "trans-id": "76b1f843-d755-42d5-9e44-9bb47fa1d60e",
                "completion-status": "completed-ok",
                "message": "Download Software Only by Parent Device chain complete",
                "action": "complete-chain",
                "prev-blocking": true
              },
              "output": {
                "message": "Download Software Only by Parent Device chain complete",
                "success": "ok"
              }
            }
          ]
        }
      },
      "FinalResult1": {
        "title": "FinalResult1",
        "required": [
          "input",
          "output"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input34"
          },
          "output": {
            "$ref": "#/components/schemas/Output49"
          }
        },
        "example": {
          "input": {
            "device-name": "device-1",
            "trans-id": "76b1f843-d755-42d5-9e44-9bb47fa1d60e",
            "completion-status": "completed-ok",
            "message": "Download Software Only by Parent Device chain complete",
            "action": "complete-chain",
            "prev-blocking": true
          },
          "output": {
            "message": "Download Software Only by Parent Device chain complete",
            "success": "ok"
          }
        }
      },
      "Input34": {
        "title": "Input34",
        "required": [
          "device-name",
          "trans-id",
          "completion-status",
          "message",
          "action",
          "prev-blocking"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "trans-id": {
            "type": "string"
          },
          "completion-status": {
            "type": "string"
          },
          "message": {
            "type": "string"
          },
          "action": {
            "type": "string"
          },
          "prev-blocking": {
            "type": "boolean"
          }
        },
        "example": {
          "device-name": "device-1",
          "trans-id": "76b1f843-d755-42d5-9e44-9bb47fa1d60e",
          "completion-status": "completed-ok",
          "message": "Download Software Only by Parent Device chain complete",
          "action": "complete-chain",
          "prev-blocking": true
        }
      },
      "Output49": {
        "title": "Output49",
        "required": [
          "message",
          "success"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          },
          "success": {
            "type": "string"
          }
        },
        "example": {
          "message": "Download Software Only by Parent Device chain complete",
          "success": "ok"
        }
      },
      "JobRun-DownloadSoftwareOnlywitherror": {
        "title": "JobRun-DownloadSoftwareOnlywitherror",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output46"
          }
        },
        "example": {
          "output": {
            "trans-id": "e45d3232-ad05-4e6c-a6b4-e58e62ce1212",
            "completion-status": "failure",
            "final-result": [
              {
                "input": {
                  "device-name": "device-1",
                  "action": "Download Software Only",
                  "prev-blocking": true
                },
                "output": {
                  "error_description": "Warning: upgrade failed! Target version is not defined"
                }
              }
            ]
          }
        }
      },
      "JobRun-DownloadSoftwareOnlybyLabel": {
        "title": "JobRun-DownloadSoftwareOnlybyLabel",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output52"
          }
        },
        "example": {
          "output": {
            "trans-id": "150a9a46-c000-4d40-a33e-cff423975881",
            "completion-status": "completed-ok",
            "final-result": [
              {
                "input": {
                  "label": "device-label",
                  "trans-id": "7b7356ff-28c6-47d5-8b0c-5439d5ec1dfc",
                  "completion-status": "completed-ok",
                  "message": "Download Software Only by Label chain complete",
                  "action": "complete-chain",
                  "prev-blocking": true
                },
                "output": {
                  "message": "Download Software Only by Label chain complete",
                  "success": "ok"
                }
              }
            ]
          }
        }
      },
      "Output52": {
        "title": "Output52",
        "required": [
          "trans-id",
          "completion-status",
          "final-result"
        ],
        "type": "object",
        "properties": {
          "trans-id": {
            "type": "string"
          },
          "completion-status": {
            "type": "string"
          },
          "final-result": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/FinalResult3"
            },
            "description": ""
          }
        },
        "example": {
          "trans-id": "150a9a46-c000-4d40-a33e-cff423975881",
          "completion-status": "completed-ok",
          "final-result": [
            {
              "input": {
                "label": "device-label",
                "trans-id": "7b7356ff-28c6-47d5-8b0c-5439d5ec1dfc",
                "completion-status": "completed-ok",
                "message": "Download Software Only by Label chain complete",
                "action": "complete-chain",
                "prev-blocking": true
              },
              "output": {
                "message": "Download Software Only by Label chain complete",
                "success": "ok"
              }
            }
          ]
        }
      },
      "FinalResult3": {
        "title": "FinalResult3",
        "required": [
          "input",
          "output"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input36"
          },
          "output": {
            "$ref": "#/components/schemas/Output49"
          }
        },
        "example": {
          "input": {
            "label": "device-label",
            "trans-id": "7b7356ff-28c6-47d5-8b0c-5439d5ec1dfc",
            "completion-status": "completed-ok",
            "message": "Download Software Only by Label chain complete",
            "action": "complete-chain",
            "prev-blocking": true
          },
          "output": {
            "message": "Download Software Only by Label chain complete",
            "success": "ok"
          }
        }
      },
      "Input36": {
        "title": "Input36",
        "required": [
          "label",
          "trans-id",
          "completion-status",
          "message",
          "action",
          "prev-blocking"
        ],
        "type": "object",
        "properties": {
          "label": {
            "type": "string"
          },
          "trans-id": {
            "type": "string"
          },
          "completion-status": {
            "type": "string"
          },
          "message": {
            "type": "string"
          },
          "action": {
            "type": "string"
          },
          "prev-blocking": {
            "type": "boolean"
          }
        },
        "example": {
          "label": "device-label",
          "trans-id": "7b7356ff-28c6-47d5-8b0c-5439d5ec1dfc",
          "completion-status": "completed-ok",
          "message": "Download Software Only by Label chain complete",
          "action": "complete-chain",
          "prev-blocking": true
        }
      },
      "JobRun-ActivateDeviceSoftwarebyChannelPartitionerror": {
        "title": "JobRun-ActivateDeviceSoftwarebyChannelPartitionerror",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output54"
          }
        },
        "example": {
          "output": {
            "trans-id": "1641e153-7d30-4374-b608-d1aa45dcae12",
            "completion-status": "failure",
            "final-result": [
              {
                "input": {
                  "channel-partition-name": "bundle-1",
                  "action": "Activate Device Software by Channel Partition",
                  "prev-blocking": true
                },
                "output": {
                  "error_description": "Failed to Activate software on ONUs"
                }
              }
            ]
          }
        }
      },
      "Output54": {
        "title": "Output54",
        "required": [
          "trans-id",
          "completion-status",
          "final-result"
        ],
        "type": "object",
        "properties": {
          "trans-id": {
            "type": "string"
          },
          "completion-status": {
            "type": "string"
          },
          "final-result": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/FinalResult4"
            },
            "description": ""
          }
        },
        "example": {
          "trans-id": "1641e153-7d30-4374-b608-d1aa45dcae12",
          "completion-status": "failure",
          "final-result": [
            {
              "input": {
                "channel-partition-name": "bundle-1",
                "action": "Activate Device Software by Channel Partition",
                "prev-blocking": true
              },
              "output": {
                "error_description": "Failed to Activate software on ONUs"
              }
            }
          ]
        }
      },
      "FinalResult4": {
        "title": "FinalResult4",
        "required": [
          "input",
          "output"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input37"
          },
          "output": {
            "$ref": "#/components/schemas/Output47"
          }
        },
        "example": {
          "input": {
            "channel-partition-name": "bundle-1",
            "action": "Activate Device Software by Channel Partition",
            "prev-blocking": true
          },
          "output": {
            "error_description": "Failed to Activate software on ONUs"
          }
        }
      },
      "Input37": {
        "title": "Input37",
        "required": [
          "channel-partition-name",
          "action",
          "prev-blocking"
        ],
        "type": "object",
        "properties": {
          "channel-partition-name": {
            "type": "string"
          },
          "action": {
            "type": "string"
          },
          "prev-blocking": {
            "type": "boolean"
          }
        },
        "example": {
          "channel-partition-name": "bundle-1",
          "action": "Activate Device Software by Channel Partition",
          "prev-blocking": true
        }
      },
      "JobCreate-RebootDeviceRequest": {
        "title": "JobCreate-RebootDeviceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input21"
          }
        },
        "example": {
          "input": {
            "job-context": {
              "job-name": "Reboot Device Job",
              "action": "Reboot Device",
              "trigger": "On Activate"
            }
          }
        }
      },
      "Errors": {
        "title": "Errors",
        "required": [
          "error-type",
          "error-tag",
          "error-message"
        ],
        "type": "object",
        "properties": {
          "error-type": {
            "type": "string"
          },
          "error-tag": {
            "type": "string"
          },
          "error-message": {
            "type": "string"
          }
        },
        "example": {
          "error-type": "rpc",
          "error-tag": "Validation of precondition failed",
          "error-message": "Job Reboot Device Job already exists"
        }
      },
      "JobCreate-RebootDeviceFailure1": {
        "title": "JobCreate-RebootDeviceFailure1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Job Reboot Device Job already exists"
          }
        }
      },
      "JobCreate-RebootDevice": {
        "title": "JobCreate-RebootDevice",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-09T08:34:33.877000",
            "job-name": "Reboot Device Job",
            "status": "configuring",
            "trans-id": "cda68968-76bb-416c-8e42-04f3cc0b24a5",
            "completion-status": "in-progress"
          }
        }
      },
      "JobDeploy-RebootDeviceRequest": {
        "title": "JobDeploy-RebootDeviceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input39"
          }
        },
        "example": {
          "input": {
            "job-context": {
              "job-name": "Reboot Device Job",
              "action-context": [
                {
                  "name": "Filter Criteria",
                  "type": "device",
                  "filter-list": [
                    {
                      "name": "By Label",
                      "type": "label",
                      "hint": "Enter the label(s) used to select devices; these will be evaluated together as a logic OR.",
                      "value-list": []
                    },
                    {
                      "name": "By Management Domain",
                      "type": "management-domain",
                      "hint": "Enter Management domain(s) used to select devices; these will be evaluated together as a logic OR.",
                      "value-list": []
                    },
                    {
                      "name": "By Parent Device",
                      "type": "device",
                      "hint": "Enter parent device(s) used to select children devices.",
                      "value-list": []
                    },
                    {
                      "name": "By Name",
                      "type": "device",
                      "hint": "Enter the device name(s) used to select devices",
                      "value-list": [
                        "device-1"
                      ]
                    }
                  ],
                  "hint": "Choose how you would like to select the devices that would be affected by this job.",
                  "value-list": []
                }
              ],
              "trigger-context": []
            }
          }
        }
      },
      "Input39": {
        "title": "Input39",
        "required": [
          "job-context"
        ],
        "type": "object",
        "properties": {
          "job-context": {
            "$ref": "#/components/schemas/JobContext10"
          }
        },
        "example": {
          "job-context": {
            "job-name": "Reboot Device Job",
            "action-context": [
              {
                "name": "Filter Criteria",
                "type": "device",
                "filter-list": [
                  {
                    "name": "By Label",
                    "type": "label",
                    "hint": "Enter the label(s) used to select devices; these will be evaluated together as a logic OR.",
                    "value-list": []
                  },
                  {
                    "name": "By Management Domain",
                    "type": "management-domain",
                    "hint": "Enter Management domain(s) used to select devices; these will be evaluated together as a logic OR.",
                    "value-list": []
                  },
                  {
                    "name": "By Parent Device",
                    "type": "device",
                    "hint": "Enter parent device(s) used to select children devices.",
                    "value-list": []
                  },
                  {
                    "name": "By Name",
                    "type": "device",
                    "hint": "Enter the device name(s) used to select devices",
                    "value-list": [
                      "device-1"
                    ]
                  }
                ],
                "hint": "Choose how you would like to select the devices that would be affected by this job.",
                "value-list": []
              }
            ],
            "trigger-context": []
          }
        }
      },
      "JobContext10": {
        "title": "JobContext10",
        "required": [
          "job-name",
          "action-context",
          "trigger-context"
        ],
        "type": "object",
        "properties": {
          "job-name": {
            "type": "string"
          },
          "action-context": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ActionContext3"
            },
            "description": ""
          },
          "trigger-context": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "job-name": "Reboot Device Job",
          "action-context": [
            {
              "name": "Filter Criteria",
              "type": "device",
              "filter-list": [
                {
                  "name": "By Label",
                  "type": "label",
                  "hint": "Enter the label(s) used to select devices; these will be evaluated together as a logic OR.",
                  "value-list": []
                },
                {
                  "name": "By Management Domain",
                  "type": "management-domain",
                  "hint": "Enter Management domain(s) used to select devices; these will be evaluated together as a logic OR.",
                  "value-list": []
                },
                {
                  "name": "By Parent Device",
                  "type": "device",
                  "hint": "Enter parent device(s) used to select children devices.",
                  "value-list": []
                },
                {
                  "name": "By Name",
                  "type": "device",
                  "hint": "Enter the device name(s) used to select devices",
                  "value-list": [
                    "device-1"
                  ]
                }
              ],
              "hint": "Choose how you would like to select the devices that would be affected by this job.",
              "value-list": []
            }
          ],
          "trigger-context": []
        }
      },
      "ActionContext3": {
        "title": "ActionContext3",
        "required": [
          "name",
          "type",
          "filter-list",
          "hint",
          "value-list"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "filter-list": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/FilterList1"
            },
            "description": ""
          },
          "hint": {
            "type": "string"
          },
          "value-list": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "name": "Filter Criteria",
          "type": "device",
          "filter-list": [
            {
              "name": "By Label",
              "type": "label",
              "hint": "Enter the label(s) used to select devices; these will be evaluated together as a logic OR.",
              "value-list": []
            },
            {
              "name": "By Management Domain",
              "type": "management-domain",
              "hint": "Enter Management domain(s) used to select devices; these will be evaluated together as a logic OR.",
              "value-list": []
            },
            {
              "name": "By Parent Device",
              "type": "device",
              "hint": "Enter parent device(s) used to select children devices.",
              "value-list": []
            },
            {
              "name": "By Name",
              "type": "device",
              "hint": "Enter the device name(s) used to select devices",
              "value-list": [
                "device-1"
              ]
            }
          ],
          "hint": "Choose how you would like to select the devices that would be affected by this job.",
          "value-list": []
        }
      },
      "JobDeploy-RebootDevice": {
        "title": "JobDeploy-RebootDevice",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-09T08:35:48.668000",
            "job-name": "Reboot Device Job",
            "status": "deploying",
            "trans-id": "c8be4e17-6752-476b-b8bf-6506671223c3",
            "completion-status": "in-progress"
          }
        }
      },
      "JobDeploy-RebootDeviceerror1": {
        "title": "JobDeploy-RebootDeviceerror1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'deploy' not allowed for Reboot Device Job with state 'deployed'"
          }
        }
      },
      "JobActivate-RebootDeviceRequest": {
        "title": "JobActivate-RebootDeviceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input23"
          }
        },
        "example": {
          "input": {
            "job-context": {
              "job-name": "Reboot Device Job"
            }
          }
        }
      },
      "JobActivate-RebootDevice": {
        "title": "JobActivate-RebootDevice",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-09T09:43:18.311000",
            "job-name": "Reboot Device Job",
            "status": "activating",
            "trans-id": "8a8df4e3-b3c6-4646-80be-27a9dd0c7e6d",
            "completion-status": "in-progress"
          }
        }
      },
      "JobRun-RebootDeviceRequest": {
        "title": "JobRun-RebootDeviceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input24"
          }
        },
        "example": {
          "input": {
            "job-name": "Reboot Device Job"
          }
        }
      },
      "CreateJob-ReflowJobRequest": {
        "title": "CreateJob-ReflowJobRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input21"
          }
        },
        "example": {
          "input": {
            "job-context": {
              "job-name": "Reflow Device Job",
              "action": "Reflow Device",
              "trigger": "On Activate"
            }
          }
        }
      },
      "JobCreate-ReflowService": {
        "title": "JobCreate-ReflowService",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T10:28:36.848000",
            "job-name": "Reflow Service Job",
            "status": "configuring",
            "trans-id": "194e62ef-9bbd-44dc-9ead-4f734268320a",
            "completion-status": "in-progress"
          }
        }
      },
      "JobCreate-ReflowDevice": {
        "title": "JobCreate-ReflowDevice",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T10:28:36.848000",
            "job-name": "Reflow Device Job",
            "status": "configuring",
            "trans-id": "194e62ef-9bbd-44dc-9ead-4f734268320a",
            "completion-status": "in-progress"
          }
        }
      },
      "JobCreatewithDate-TimeTrigger": {
        "title": "JobCreatewithDate-TimeTrigger",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-09T12:28:38.120000",
            "job-name": "Reflow Device Date-Time Job",
            "status": "configuring",
            "trans-id": "93fb9484-98da-48ff-8b3e-efd7d1ba8ae2",
            "completion-status": "in-progress"
          }
        }
      },
      "JobCreate-ReflowInterface": {
        "title": "JobCreate-ReflowInterface",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T10:28:36.848000",
            "job-name": "Reflow Interface Job",
            "status": "configuring",
            "trans-id": "194e62ef-9bbd-44dc-9ead-4f734268320a",
            "completion-status": "in-progress"
          }
        }
      },
      "JobCreate-ReflowDeviceOnly": {
        "title": "JobCreate-ReflowDeviceOnly",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T10:28:36.848000",
            "job-name": "Reflow Device Only Job",
            "status": "configuring",
            "trans-id": "194e62ef-9bbd-44dc-9ead-4f734268320a",
            "completion-status": "in-progress"
          }
        }
      },
      "CreateJobErrorJobalreadyExist1": {
        "title": "CreateJobErrorJobalreadyExist1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Job Reflow Device Job already exists"
          }
        }
      },
      "DeployJob-ReflowJobRequest": {
        "title": "DeployJob-ReflowJobRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input43"
          }
        },
        "example": {
          "input": {
            "job-context": {
              "job-name": "Reflow Device Job",
              "action-context": [
                {
                  "name": "device-name",
                  "type": "device",
                  "hint": "The name of the specific device to reflow",
                  "value-list": [
                    "device-1"
                  ]
                }
              ],
              "trigger-context": []
            }
          }
        }
      },
      "Input43": {
        "title": "Input43",
        "required": [
          "job-context"
        ],
        "type": "object",
        "properties": {
          "job-context": {
            "$ref": "#/components/schemas/JobContext13"
          }
        },
        "example": {
          "job-context": {
            "job-name": "Reflow Device Job",
            "action-context": [
              {
                "name": "device-name",
                "type": "device",
                "hint": "The name of the specific device to reflow",
                "value-list": [
                  "device-1"
                ]
              }
            ],
            "trigger-context": []
          }
        }
      },
      "JobContext13": {
        "title": "JobContext13",
        "required": [
          "job-name",
          "action-context",
          "trigger-context"
        ],
        "type": "object",
        "properties": {
          "job-name": {
            "type": "string"
          },
          "action-context": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ActionContext4"
            },
            "description": ""
          },
          "trigger-context": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "job-name": "Reflow Device Job",
          "action-context": [
            {
              "name": "device-name",
              "type": "device",
              "hint": "The name of the specific device to reflow",
              "value-list": [
                "device-1"
              ]
            }
          ],
          "trigger-context": []
        }
      },
      "ActionContext4": {
        "title": "ActionContext4",
        "required": [
          "name",
          "type",
          "hint",
          "value-list"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "hint": {
            "type": "string"
          },
          "value-list": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "name": "device-name",
          "type": "device",
          "hint": "The name of the specific device to reflow",
          "value-list": [
            "device-1"
          ]
        }
      },
      "JobDeploy-ReflowInterface": {
        "title": "JobDeploy-ReflowInterface",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T10:56:08.360000",
            "job-name": "Reflow Interface Job",
            "status": "deploying",
            "trans-id": "76a43687-1026-4f1c-bd6b-75d93fe203ba",
            "completion-status": "in-progress"
          }
        }
      },
      "JobDeploy-ReflowService": {
        "title": "JobDeploy-ReflowService",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T10:56:08.360000",
            "job-name": "Reflow Service Job",
            "status": "deploying",
            "trans-id": "76a43687-1026-4f1c-bd6b-75d93fe203ba",
            "completion-status": "in-progress"
          }
        }
      },
      "JobDeploy-ReflowDeviceOnly": {
        "title": "JobDeploy-ReflowDeviceOnly",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T10:56:08.360000",
            "job-name": "Reflow Device Only Job",
            "status": "deploying",
            "trans-id": "76a43687-1026-4f1c-bd6b-75d93fe203ba",
            "completion-status": "in-progress"
          }
        }
      },
      "DeployJobErrorJobisalreadyinactivatedstate1": {
        "title": "DeployJobErrorJobisalreadyinactivatedstate1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'deploy' not allowed for Reflow Device Job with state 'activated'"
          }
        }
      },
      "JobDeploywithDate-TimeTrigger": {
        "title": "JobDeploywithDate-TimeTrigger",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-09T12:31:16.211000",
            "job-name": "Reflow Device Date-Time Job",
            "status": "deploying",
            "trans-id": "eb7f9d41-1b3c-409b-a9c4-bae47eea104f",
            "completion-status": "in-progress"
          }
        }
      },
      "JobDeploy-ReflowDevice": {
        "title": "JobDeploy-ReflowDevice",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T10:56:08.360000",
            "job-name": "Reflow Device Job",
            "status": "deploying",
            "trans-id": "76a43687-1026-4f1c-bd6b-75d93fe203ba",
            "completion-status": "in-progress"
          }
        }
      },
      "DeployJobmultipledeviceinalist": {
        "title": "DeployJobmultipledeviceinalist",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-09T08:24:32.376000",
            "job-name": "Reflow Device Job",
            "status": "deploying",
            "trans-id": "c564081b-9d2b-473b-a30f-b245653fde4e",
            "completion-status": "in-progress"
          }
        }
      },
      "ActivateJob-ReflowJobRequest": {
        "title": "ActivateJob-ReflowJobRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input23"
          }
        },
        "example": {
          "input": {
            "job-context": {
              "job-name": "Reflow Device Job"
            }
          }
        }
      },
      "JobActivate-ReflowService": {
        "title": "JobActivate-ReflowService",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T11:01:15.495000",
            "job-name": "Reflow Service Job",
            "status": "activating",
            "trans-id": "43a3033c-4a77-4762-b668-aa5cfb583f2b",
            "completion-status": "in-progress"
          }
        }
      },
      "JobActivate-ReflowInterface": {
        "title": "JobActivate-ReflowInterface",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T11:01:15.495000",
            "job-name": "Reflow Interface Job",
            "status": "activating",
            "trans-id": "43a3033c-4a77-4762-b668-aa5cfb583f2b",
            "completion-status": "in-progress"
          }
        }
      },
      "JobActivate-ReflowDeviceOnly": {
        "title": "JobActivate-ReflowDeviceOnly",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T11:01:15.495000",
            "job-name": "Reflow Device Only Job",
            "status": "activating",
            "trans-id": "43a3033c-4a77-4762-b668-aa5cfb583f2b",
            "completion-status": "in-progress"
          }
        }
      },
      "JobActivate-ReflowDevice": {
        "title": "JobActivate-ReflowDevice",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T11:01:15.495000",
            "job-name": "Reflow Device Job",
            "status": "activating",
            "trans-id": "43a3033c-4a77-4762-b668-aa5cfb583f2b",
            "completion-status": "in-progress"
          }
        }
      },
      "ActivateJobErrorJobdoesnotexist1": {
        "title": "ActivateJobErrorJobdoesnotexist1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Job Unknown Job does not exist"
          }
        }
      },
      "RunJob-ReflowJobRequest": {
        "title": "RunJob-ReflowJobRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input32"
          }
        },
        "example": {
          "input": {
            "job-name": "Reflow Device Job",
            "blocking": true,
            "context": [
              {
                "name": "device-name",
                "value-list": [
                  "device-1"
                ]
              }
            ]
          }
        }
      },
      "JobResult-ReflowInterfaceErrorunknowndevice": {
        "title": "JobResult-ReflowInterfaceErrorunknowndevice",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output74"
          }
        },
        "example": {
          "output": {
            "trans-id": "52333eee-23ec-499f-91cb-fcafdfacbb6c",
            "completion-status": "failure",
            "final-result": [
              {
                "input": {
                  "interface-name": "unknown",
                  "action": "Reflow Interface",
                  "prev-blocking": true
                },
                "output": {
                  "error_description": "('{\"errors\":{\"error-type\":\"application\",\"error-message\":\"\\'unknown\\' not found\"}}', {'status': 404})"
                }
              }
            ]
          }
        }
      },
      "Output74": {
        "title": "Output74",
        "required": [
          "trans-id",
          "completion-status",
          "final-result"
        ],
        "type": "object",
        "properties": {
          "trans-id": {
            "type": "string"
          },
          "completion-status": {
            "type": "string"
          },
          "final-result": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/FinalResult5"
            },
            "description": ""
          }
        },
        "example": {
          "trans-id": "52333eee-23ec-499f-91cb-fcafdfacbb6c",
          "completion-status": "failure",
          "final-result": [
            {
              "input": {
                "interface-name": "unknown",
                "action": "Reflow Interface",
                "prev-blocking": true
              },
              "output": {
                "error_description": "('{\"errors\":{\"error-type\":\"application\",\"error-message\":\"\\'unknown\\' not found\"}}', {'status': 404})"
              }
            }
          ]
        }
      },
      "FinalResult5": {
        "title": "FinalResult5",
        "required": [
          "input",
          "output"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input46"
          },
          "output": {
            "$ref": "#/components/schemas/Output47"
          }
        },
        "example": {
          "input": {
            "interface-name": "unknown",
            "action": "Reflow Interface",
            "prev-blocking": true
          },
          "output": {
            "error_description": "('{\"errors\":{\"error-type\":\"application\",\"error-message\":\"\\'unknown\\' not found\"}}', {'status': 404})"
          }
        }
      },
      "Input46": {
        "title": "Input46",
        "required": [
          "interface-name",
          "action",
          "prev-blocking"
        ],
        "type": "object",
        "properties": {
          "interface-name": {
            "type": "string"
          },
          "action": {
            "type": "string"
          },
          "prev-blocking": {
            "type": "boolean"
          }
        },
        "example": {
          "interface-name": "unknown",
          "action": "Reflow Interface",
          "prev-blocking": true
        }
      },
      "JobResult-ReflowInterface": {
        "title": "JobResult-ReflowInterface",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output76"
          }
        },
        "example": {
          "output": {
            "trans-id": "6cbafcb0-27ab-4506-bdd3-12109c2870ba",
            "completion-status": "completed-ok",
            "final-result": [
              {
                "input": {
                  "job-batch-by": "<Job Batch By>",
                  "interface-name": "interface-1",
                  "job-batch-size": "<Job Batch Size>",
                  "action": "Reflow Interface",
                  "prev-blocking": true
                },
                "output": {
                  "success": "ok"
                }
              }
            ]
          }
        }
      },
      "Output76": {
        "title": "Output76",
        "required": [
          "trans-id",
          "completion-status",
          "final-result"
        ],
        "type": "object",
        "properties": {
          "trans-id": {
            "type": "string"
          },
          "completion-status": {
            "type": "string"
          },
          "final-result": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/FinalResult6"
            },
            "description": ""
          }
        },
        "example": {
          "trans-id": "6cbafcb0-27ab-4506-bdd3-12109c2870ba",
          "completion-status": "completed-ok",
          "final-result": [
            {
              "input": {
                "job-batch-by": "<Job Batch By>",
                "interface-name": "interface-1",
                "job-batch-size": "<Job Batch Size>",
                "action": "Reflow Interface",
                "prev-blocking": true
              },
              "output": {
                "success": "ok"
              }
            }
          ]
        }
      },
      "FinalResult6": {
        "title": "FinalResult6",
        "required": [
          "input",
          "output"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input47"
          },
          "output": {
            "$ref": "#/components/schemas/Output77"
          }
        },
        "example": {
          "input": {
            "job-batch-by": "<Job Batch By>",
            "interface-name": "interface-1",
            "job-batch-size": "<Job Batch Size>",
            "action": "Reflow Interface",
            "prev-blocking": true
          },
          "output": {
            "success": "ok"
          }
        }
      },
      "Input47": {
        "title": "Input47",
        "required": [
          "job-batch-by",
          "interface-name",
          "job-batch-size",
          "action",
          "prev-blocking"
        ],
        "type": "object",
        "properties": {
          "job-batch-by": {
            "type": "string"
          },
          "interface-name": {
            "type": "string"
          },
          "job-batch-size": {
            "type": "string"
          },
          "action": {
            "type": "string"
          },
          "prev-blocking": {
            "type": "boolean"
          }
        },
        "example": {
          "job-batch-by": "<Job Batch By>",
          "interface-name": "interface-1",
          "job-batch-size": "<Job Batch Size>",
          "action": "Reflow Interface",
          "prev-blocking": true
        }
      },
      "Output77": {
        "title": "Output77",
        "required": [
          "success"
        ],
        "type": "object",
        "properties": {
          "success": {
            "type": "string"
          }
        },
        "example": {
          "success": "ok"
        }
      },
      "JobResult-RunJobNowWithParametersNonBlocking": {
        "title": "JobResult-RunJobNowWithParametersNonBlocking",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output14"
          }
        },
        "example": {
          "output": {
            "trans-id": "5abf59bb-8382-476d-88e8-18d542930b30",
            "completion-status": "in-progress"
          }
        }
      },
      "JobResult-RunJobTransitions": {
        "title": "JobResult-RunJobTransitions",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output79"
          }
        },
        "example": {
          "output": {
            "trans-id": "5abf59bb-8382-476d-88e8-18d542930b30",
            "completion-status": "completed-ok",
            "final-result": [
              {
                "input": {
                  "interface-name": "interface-1",
                  "action": "Reflow Interface"
                },
                "output": {
                  "success": "ok"
                }
              }
            ]
          }
        }
      },
      "Output79": {
        "title": "Output79",
        "required": [
          "trans-id",
          "completion-status",
          "final-result"
        ],
        "type": "object",
        "properties": {
          "trans-id": {
            "type": "string"
          },
          "completion-status": {
            "type": "string"
          },
          "final-result": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/FinalResult7"
            },
            "description": ""
          }
        },
        "example": {
          "trans-id": "5abf59bb-8382-476d-88e8-18d542930b30",
          "completion-status": "completed-ok",
          "final-result": [
            {
              "input": {
                "interface-name": "interface-1",
                "action": "Reflow Interface"
              },
              "output": {
                "success": "ok"
              }
            }
          ]
        }
      },
      "FinalResult7": {
        "title": "FinalResult7",
        "required": [
          "input",
          "output"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input48"
          },
          "output": {
            "$ref": "#/components/schemas/Output77"
          }
        },
        "example": {
          "input": {
            "interface-name": "interface-1",
            "action": "Reflow Interface"
          },
          "output": {
            "success": "ok"
          }
        }
      },
      "Input48": {
        "title": "Input48",
        "required": [
          "interface-name",
          "action"
        ],
        "type": "object",
        "properties": {
          "interface-name": {
            "type": "string"
          },
          "action": {
            "type": "string"
          }
        },
        "example": {
          "interface-name": "interface-1",
          "action": "Reflow Interface"
        }
      },
      "JobCreate-ResynchronizeNETCONFAlarmsRequest": {
        "title": "JobCreate-ResynchronizeNETCONFAlarmsRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input21"
          }
        },
        "example": {
          "input": {
            "job-context": {
              "job-name": "Resynchronize NETCONF Alarms Job",
              "action": "Resynchronize NETCONF Alarms",
              "trigger": "On Activate"
            }
          }
        }
      },
      "JobCreate-ResynchronizeNETCONFAlarms": {
        "title": "JobCreate-ResynchronizeNETCONFAlarms",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T13:24:54.711000",
            "job-name": "Resynchronize NETCONF Alarms Job",
            "status": "configuring",
            "trans-id": "a93cf34e-205a-4383-8696-9efc66132788",
            "completion-status": "in-progress"
          }
        }
      },
      "JobDeploy-ResynchronizeNETCONFAlarmsRequest": {
        "title": "JobDeploy-ResynchronizeNETCONFAlarmsRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input50"
          }
        },
        "example": {
          "input": {
            "job-context": {
              "job-name": "Resynchronize NETCONF Alarms Job",
              "action-context": [
                {
                  "name": "Device Name",
                  "type": "device",
                  "subtype": [
                    "NGPON2 16P OLT Access Switch",
                    "SDX 6310 16-port 10G OLT",
                    "SDX 6010 16-port GPON OLT",
                    "SDX 8310 32x100 ToR Switch",
                    "SDX 6312 4-port Combo Remote OLT",
                    "SDX 6320 16-port Combo OLT"
                  ],
                  "hint": "The name of the netconf managed device to resync alarms",
                  "value-list": [
                    "device-1"
                  ]
                }
              ],
              "trigger-context": []
            }
          }
        }
      },
      "Input50": {
        "title": "Input50",
        "required": [
          "job-context"
        ],
        "type": "object",
        "properties": {
          "job-context": {
            "$ref": "#/components/schemas/JobContext16"
          }
        },
        "example": {
          "job-context": {
            "job-name": "Resynchronize NETCONF Alarms Job",
            "action-context": [
              {
                "name": "Device Name",
                "type": "device",
                "subtype": [
                  "NGPON2 16P OLT Access Switch",
                  "SDX 6310 16-port 10G OLT",
                  "SDX 6010 16-port GPON OLT",
                  "SDX 8310 32x100 ToR Switch",
                  "SDX 6312 4-port Combo Remote OLT",
                  "SDX 6320 16-port Combo OLT"
                ],
                "hint": "The name of the netconf managed device to resync alarms",
                "value-list": [
                  "device-1"
                ]
              }
            ],
            "trigger-context": []
          }
        }
      },
      "JobContext16": {
        "title": "JobContext16",
        "required": [
          "job-name",
          "action-context",
          "trigger-context"
        ],
        "type": "object",
        "properties": {
          "job-name": {
            "type": "string"
          },
          "action-context": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ActionContext5"
            },
            "description": ""
          },
          "trigger-context": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "job-name": "Resynchronize NETCONF Alarms Job",
          "action-context": [
            {
              "name": "Device Name",
              "type": "device",
              "subtype": [
                "NGPON2 16P OLT Access Switch",
                "SDX 6310 16-port 10G OLT",
                "SDX 6010 16-port GPON OLT",
                "SDX 8310 32x100 ToR Switch",
                "SDX 6312 4-port Combo Remote OLT",
                "SDX 6320 16-port Combo OLT"
              ],
              "hint": "The name of the netconf managed device to resync alarms",
              "value-list": [
                "device-1"
              ]
            }
          ],
          "trigger-context": []
        }
      },
      "ActionContext5": {
        "title": "ActionContext5",
        "required": [
          "name",
          "type",
          "subtype",
          "hint",
          "value-list"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "subtype": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "hint": {
            "type": "string"
          },
          "value-list": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "name": "Device Name",
          "type": "device",
          "subtype": [
            "NGPON2 16P OLT Access Switch",
            "SDX 6310 16-port 10G OLT",
            "SDX 6010 16-port GPON OLT",
            "SDX 8310 32x100 ToR Switch",
            "SDX 6312 4-port Combo Remote OLT",
            "SDX 6320 16-port Combo OLT"
          ],
          "hint": "The name of the netconf managed device to resync alarms",
          "value-list": [
            "device-1"
          ]
        }
      },
      "JobDeploy-ResynchronizeNETCONFAlarmsError1": {
        "title": "JobDeploy-ResynchronizeNETCONFAlarmsError1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'deploy' not allowed for Resynchronize NETCONF Alarms Job with state 'activated'"
          }
        }
      },
      "JobDeploy-ResynchronizeNETCONFAlarms": {
        "title": "JobDeploy-ResynchronizeNETCONFAlarms",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T13:26:23.696000",
            "job-name": "Resynchronize NETCONF Alarms Job",
            "status": "deploying",
            "trans-id": "ab260213-42c3-4404-aca7-1e833a733d56",
            "completion-status": "in-progress"
          }
        }
      },
      "JobActivate-ResynchronizeNETCONFAlarmsRequest": {
        "title": "JobActivate-ResynchronizeNETCONFAlarmsRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input23"
          }
        },
        "example": {
          "input": {
            "job-context": {
              "job-name": "Resynchronize NETCONF Alarms Job"
            }
          }
        }
      },
      "JobActivate-ResynchronizeNETCONFAlarms": {
        "title": "JobActivate-ResynchronizeNETCONFAlarms",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-08T13:26:37.212000",
            "job-name": "Resynchronize NETCONF Alarms Job",
            "status": "activating",
            "trans-id": "1b6d6925-401f-4b9c-923a-d4890702e087",
            "completion-status": "in-progress"
          }
        }
      },
      "JobRun-ResynchronizeNETCONFAlarmsJobRequest": {
        "title": "JobRun-ResynchronizeNETCONFAlarmsJobRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input32"
          }
        },
        "example": {
          "input": {
            "job-name": "Resynchronize NETCONF Alarms Job",
            "blocking": true,
            "context": [
              {
                "name": "Device Name",
                "value-list": [
                  "device-1"
                ]
              }
            ]
          }
        }
      },
      "JobRun-ResynchronizeNETCONFAlarmsJobwithmultipledevicesinalist": {
        "title": "JobRun-ResynchronizeNETCONFAlarmsJobwithmultipledevicesinalist",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output84"
          }
        },
        "example": {
          "output": {
            "trans-id": "f912e329-910b-475f-aa78-08956280b052",
            "completion-status": "completed-ok",
            "final-result": [
              {
                "input": {
                  "device-name": "device-2",
                  "action": "Resynchronize NETCONF Alarms",
                  "prev-blocking": true
                },
                "output": {
                  "success": "ok"
                }
              }
            ]
          }
        }
      },
      "Output84": {
        "title": "Output84",
        "required": [
          "trans-id",
          "completion-status",
          "final-result"
        ],
        "type": "object",
        "properties": {
          "trans-id": {
            "type": "string"
          },
          "completion-status": {
            "type": "string"
          },
          "final-result": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/FinalResult8"
            },
            "description": ""
          }
        },
        "example": {
          "trans-id": "f912e329-910b-475f-aa78-08956280b052",
          "completion-status": "completed-ok",
          "final-result": [
            {
              "input": {
                "device-name": "device-2",
                "action": "Resynchronize NETCONF Alarms",
                "prev-blocking": true
              },
              "output": {
                "success": "ok"
              }
            }
          ]
        }
      },
      "FinalResult8": {
        "title": "FinalResult8",
        "required": [
          "input",
          "output"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input33"
          },
          "output": {
            "$ref": "#/components/schemas/Output77"
          }
        },
        "example": {
          "input": {
            "device-name": "device-2",
            "action": "Resynchronize NETCONF Alarms",
            "prev-blocking": true
          },
          "output": {
            "success": "ok"
          }
        }
      },
      "JobRun-ResynchronizeNETCONFAlarmsJob": {
        "title": "JobRun-ResynchronizeNETCONFAlarmsJob",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output84"
          }
        },
        "example": {
          "output": {
            "trans-id": "08fab062-fb5d-4237-a86c-92ddfa13c29f",
            "completion-status": "completed-ok",
            "final-result": [
              {
                "input": {
                  "device-name": "device-1",
                  "action": "Resynchronize NETCONF Alarms",
                  "prev-blocking": true
                },
                "output": {
                  "success": "ok"
                }
              }
            ]
          }
        }
      },
      "JobRun-ResynchronizeNETCONFAlarmsJobError1": {
        "title": "JobRun-ResynchronizeNETCONFAlarmsJobError1",
        "required": [
          "message",
          "type"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          },
          "type": {
            "type": "string"
          }
        },
        "example": {
          "message": "scala.None$ cannot be cast to scala.collection.immutable.List",
          "type": "class java.lang.ClassCastException"
        }
      },
      "GetUserInitiatedPendingJobsSize": {
        "title": "GetUserInitiatedPendingJobsSize",
        "required": [
          "size"
        ],
        "type": "object",
        "properties": {
          "size": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "size": 1
        }
      },
      "GetUserInitiatedPendingJobsList": {
        "title": "GetUserInitiatedPendingJobsList",
        "required": [
          "size",
          "job"
        ],
        "type": "object",
        "properties": {
          "size": {
            "type": "integer",
            "format": "int32"
          },
          "job": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Job"
            },
            "description": ""
          }
        },
        "example": {
          "size": 1,
          "job": [
            {
              "name": "example-job-1",
              "uuid": "43169f85-edc2-4d54-b32f-6428b7e89ada"
            }
          ]
        }
      },
      "Job": {
        "title": "Job",
        "required": [
          "name",
          "uuid"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "uuid": {
            "type": "string"
          }
        },
        "example": {
          "name": "example-job-1",
          "uuid": "43169f85-edc2-4d54-b32f-6428b7e89ada"
        }
      },
      "GetUserInitatedPendingJob": {
        "title": "GetUserInitatedPendingJob",
        "required": [
          "name",
          "uuid"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "uuid": {
            "type": "string"
          }
        },
        "example": {
          "name": "example-job-1",
          "uuid": "43169f85-edc2-4d54-b32f-6428b7e89ada"
        }
      },
      "GetUserInitatedPendingJobswithinvaliduuid": {
        "title": "GetUserInitatedPendingJobswithinvaliduuid",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Job does not exist."
        }
      },
      "GetUserInitatedPendingJobsbyuuid": {
        "title": "GetUserInitatedPendingJobsbyuuid",
        "required": [
          "name",
          "uuid"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "uuid": {
            "type": "string"
          }
        },
        "example": {
          "name": "example-job-1",
          "uuid": "599e9123-a886-4df3-9f71-14a6c88f20b6"
        }
      },
      "DeleteUserInitiatedPendingJobwithinvaliduuid1": {
        "title": "DeleteUserInitiatedPendingJobwithinvaliduuid1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Job does not exist."
        }
      },
      "GetSpawnedPendingJobsSize": {
        "title": "GetSpawnedPendingJobsSize",
        "required": [
          "size"
        ],
        "type": "object",
        "properties": {
          "size": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "size": 1
        }
      },
      "GetSpawnedPendingJobsList": {
        "title": "GetSpawnedPendingJobsList",
        "required": [
          "size",
          "job"
        ],
        "type": "object",
        "properties": {
          "size": {
            "type": "integer",
            "format": "int32"
          },
          "job": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Job"
            },
            "description": ""
          }
        },
        "example": {
          "size": 1,
          "job": [
            {
              "name": "example-job-1",
              "uuid": "43169f85-edc2-4d54-b32f-6428b7e89ada"
            }
          ]
        }
      },
      "GetSpawnedPendingJob": {
        "title": "GetSpawnedPendingJob",
        "required": [
          "name",
          "uuid"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "uuid": {
            "type": "string"
          }
        },
        "example": {
          "name": "example-job-1",
          "uuid": "43169f85-edc2-4d54-b32f-6428b7e89ada"
        }
      },
      "GetSpawnedPendingJobsbyuuid": {
        "title": "GetSpawnedPendingJobsbyuuid",
        "required": [
          "name",
          "uuid"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "uuid": {
            "type": "string"
          }
        },
        "example": {
          "name": "example-job-1",
          "uuid": "599e9123-a886-4df3-9f71-14a6c88f20b6"
        }
      },
      "GetSpawnedPendingJobswithinvaliduuid": {
        "title": "GetSpawnedPendingJobswithinvaliduuid",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Job does not exist."
        }
      },
      "GetExecutingJobsSize": {
        "title": "GetExecutingJobsSize",
        "required": [
          "size"
        ],
        "type": "object",
        "properties": {
          "size": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "size": 1
        }
      },
      "GetExecutingJobsList": {
        "title": "GetExecutingJobsList",
        "required": [
          "size",
          "job"
        ],
        "type": "object",
        "properties": {
          "size": {
            "type": "integer",
            "format": "int32"
          },
          "job": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Job"
            },
            "description": ""
          }
        },
        "example": {
          "size": 1,
          "job": [
            {
              "name": "example-job-1",
              "uuid": "43169f85-edc2-4d54-b32f-6428b7e89ada"
            }
          ]
        }
      },
      "GetExecutingJobswithinvaliduuid": {
        "title": "GetExecutingJobswithinvaliduuid",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Job does not exist."
        }
      },
      "GetExecutingJobsbyuuid": {
        "title": "GetExecutingJobsbyuuid",
        "required": [
          "name",
          "uuid"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "uuid": {
            "type": "string"
          }
        },
        "example": {
          "name": "example-job-1",
          "uuid": "599e9123-a886-4df3-9f71-14a6c88f20b6"
        }
      },
      "GetExecutingJob": {
        "title": "GetExecutingJob",
        "required": [
          "name",
          "uuid"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "uuid": {
            "type": "string"
          }
        },
        "example": {
          "name": "example-job-1",
          "uuid": "43169f85-edc2-4d54-b32f-6428b7e89ada"
        }
      },
      "CreateJob-EthernetLoopbackRequest": {
        "title": "CreateJob-EthernetLoopbackRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input21"
          }
        },
        "example": {
          "input": {
            "job-context": {
              "job-name": "Ethernet Loopback Job",
              "action": "Ethernet Loopback Test",
              "trigger": "On Activate"
            }
          }
        }
      },
      "JobCreate-EthernetLoopback": {
        "title": "JobCreate-EthernetLoopback",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2021-01-25T22:11:03.798182",
            "job-name": "Ethernet Loopback Job",
            "status": "configuring",
            "trans-id": "b617aa9e-3c5c-4839-9980-ca1b7e51c168",
            "completion-status": "in-progress"
          }
        }
      },
      "DeployJob-EthernetLoopbackRequest": {
        "title": "DeployJob-EthernetLoopbackRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input56"
          }
        },
        "example": {
          "input": {
            "job-context": {
              "job-name": "Ethernet Loopback Job",
              "action-context": [
                {
                  "name": "Duration",
                  "type": "string",
                  "hint": "Enable loopback for the specified duration in minutes; set to 0 to disable the test.",
                  "value": "30"
                },
                {
                  "name": "interface-name",
                  "type": "interface",
                  "hint": "Name of interface to enable loopback",
                  "value": "ONU 0 Subscriber Interface"
                }
              ],
              "trigger-context": []
            }
          }
        }
      },
      "Input56": {
        "title": "Input56",
        "required": [
          "job-context"
        ],
        "type": "object",
        "properties": {
          "job-context": {
            "$ref": "#/components/schemas/JobContext19"
          }
        },
        "example": {
          "job-context": {
            "job-name": "Ethernet Loopback Job",
            "action-context": [
              {
                "name": "Duration",
                "type": "string",
                "hint": "Enable loopback for the specified duration in minutes; set to 0 to disable the test.",
                "value": "30"
              },
              {
                "name": "interface-name",
                "type": "interface",
                "hint": "Name of interface to enable loopback",
                "value": "ONU 0 Subscriber Interface"
              }
            ],
            "trigger-context": []
          }
        }
      },
      "JobContext19": {
        "title": "JobContext19",
        "required": [
          "job-name",
          "action-context",
          "trigger-context"
        ],
        "type": "object",
        "properties": {
          "job-name": {
            "type": "string"
          },
          "action-context": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ActionContext6"
            },
            "description": ""
          },
          "trigger-context": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "job-name": "Ethernet Loopback Job",
          "action-context": [
            {
              "name": "Duration",
              "type": "string",
              "hint": "Enable loopback for the specified duration in minutes; set to 0 to disable the test.",
              "value": "30"
            },
            {
              "name": "interface-name",
              "type": "interface",
              "hint": "Name of interface to enable loopback",
              "value": "ONU 0 Subscriber Interface"
            }
          ],
          "trigger-context": []
        }
      },
      "ActionContext6": {
        "title": "ActionContext6",
        "required": [
          "name",
          "type",
          "hint",
          "value"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "hint": {
            "type": "string"
          },
          "value": {
            "type": "string"
          }
        },
        "example": {
          "name": "Duration",
          "type": "string",
          "hint": "Enable loopback for the specified duration in minutes; set to 0 to disable the test.",
          "value": "30"
        }
      },
      "DeployJob-EthernetLoopback": {
        "title": "DeployJob-EthernetLoopback",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2021-01-26T15:58:36.179548",
            "job-name": "Ethernet Loopback Job",
            "status": "deploying",
            "trans-id": "8c0a283b-e720-4dc8-9903-2ac18e74d921",
            "completion-status": "in-progress"
          }
        }
      },
      "ActivateJob-EthernetLoopbackRequest": {
        "title": "ActivateJob-EthernetLoopbackRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input23"
          }
        },
        "example": {
          "input": {
            "job-context": {
              "job-name": "Ethernet Loopback Job"
            }
          }
        }
      },
      "ActivateJob-EthernetLoopback": {
        "title": "ActivateJob-EthernetLoopback",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output11"
          }
        },
        "example": {
          "output": {
            "timestamp": "2021-01-26T16:01:27.986690",
            "job-name": "Ethernet Loopback Job",
            "status": "activating",
            "trans-id": "afd21f03-8d4d-4a9f-9146-d58c621dddb1",
            "completion-status": "in-progress"
          }
        }
      },
      "RunJob-EthernetLoopbackRequest": {
        "title": "RunJob-EthernetLoopbackRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input58"
          }
        },
        "example": {
          "input": {
            "job-name": "Ethernet Loopback Job",
            "blocking": true,
            "context": [
              {
                "name": "Duration",
                "type": "string",
                "hint": "Enable loopback for the specified duration in minutes; set to 0 to disable the test.",
                "value": "30"
              },
              {
                "name": "interface-name",
                "type": "interface",
                "hint": "Name of interface to enable loopback",
                "value": "ONU 0 Subscriber Interface"
              }
            ]
          }
        }
      },
      "Input58": {
        "title": "Input58",
        "required": [
          "job-name",
          "blocking",
          "context"
        ],
        "type": "object",
        "properties": {
          "job-name": {
            "type": "string"
          },
          "blocking": {
            "type": "boolean"
          },
          "context": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Context3"
            },
            "description": ""
          }
        },
        "example": {
          "job-name": "Ethernet Loopback Job",
          "blocking": true,
          "context": [
            {
              "name": "Duration",
              "type": "string",
              "hint": "Enable loopback for the specified duration in minutes; set to 0 to disable the test.",
              "value": "30"
            },
            {
              "name": "interface-name",
              "type": "interface",
              "hint": "Name of interface to enable loopback",
              "value": "ONU 0 Subscriber Interface"
            }
          ]
        }
      },
      "Context3": {
        "title": "Context3",
        "required": [
          "name",
          "type",
          "hint",
          "value"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "hint": {
            "type": "string"
          },
          "value": {
            "type": "string"
          }
        },
        "example": {
          "name": "Duration",
          "type": "string",
          "hint": "Enable loopback for the specified duration in minutes; set to 0 to disable the test.",
          "value": "30"
        }
      },
      "RunJob-EthernetLoopback": {
        "title": "RunJob-EthernetLoopback",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output91"
          }
        },
        "example": {
          "output": {
            "trans-id": "9420764b-f8cf-4541-a387-9e335d123208",
            "completion-status": "failure",
            "final-result": [
              {
                "input": {
                  "duration": "30",
                  "interface-name": "<interface-name>",
                  "action": "Ethernet Loopback Test",
                  "prev-blocking": true
                },
                "output": {
                  "error_description": "Job failed. Interface '<interface-name>' does not exist"
                }
              }
            ]
          }
        }
      },
      "Output91": {
        "title": "Output91",
        "required": [
          "trans-id",
          "completion-status",
          "final-result"
        ],
        "type": "object",
        "properties": {
          "trans-id": {
            "type": "string"
          },
          "completion-status": {
            "type": "string"
          },
          "final-result": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/FinalResult10"
            },
            "description": ""
          }
        },
        "example": {
          "trans-id": "9420764b-f8cf-4541-a387-9e335d123208",
          "completion-status": "failure",
          "final-result": [
            {
              "input": {
                "duration": "30",
                "interface-name": "<interface-name>",
                "action": "Ethernet Loopback Test",
                "prev-blocking": true
              },
              "output": {
                "error_description": "Job failed. Interface '<interface-name>' does not exist"
              }
            }
          ]
        }
      },
      "FinalResult10": {
        "title": "FinalResult10",
        "required": [
          "input",
          "output"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input59"
          },
          "output": {
            "$ref": "#/components/schemas/Output47"
          }
        },
        "example": {
          "input": {
            "duration": "30",
            "interface-name": "<interface-name>",
            "action": "Ethernet Loopback Test",
            "prev-blocking": true
          },
          "output": {
            "error_description": "Job failed. Interface '<interface-name>' does not exist"
          }
        }
      },
      "Input59": {
        "title": "Input59",
        "required": [
          "duration",
          "interface-name",
          "action",
          "prev-blocking"
        ],
        "type": "object",
        "properties": {
          "duration": {
            "type": "string"
          },
          "interface-name": {
            "type": "string"
          },
          "action": {
            "type": "string"
          },
          "prev-blocking": {
            "type": "boolean"
          }
        },
        "example": {
          "duration": "30",
          "interface-name": "<interface-name>",
          "action": "Ethernet Loopback Test",
          "prev-blocking": true
        }
      },
      "RunJob-EthernetLoopback1": {
        "title": "RunJob-EthernetLoopback1",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output93"
          }
        },
        "example": {
          "output": {
            "trans-id": "2ec65d3c-1d81-4ac0-b25d-bd708e5649bf",
            "completion-status": "completed-ok",
            "final-result": [
              {
                "input": {
                  "duration": "30",
                  "interface-name": "ONU 0 Subscriber Interface",
                  "action": "Ethernet Loopback Test",
                  "prev-blocking": true
                },
                "output": {
                  "success": "ok"
                }
              }
            ]
          }
        }
      },
      "Output93": {
        "title": "Output93",
        "required": [
          "trans-id",
          "completion-status",
          "final-result"
        ],
        "type": "object",
        "properties": {
          "trans-id": {
            "type": "string"
          },
          "completion-status": {
            "type": "string"
          },
          "final-result": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/FinalResult11"
            },
            "description": ""
          }
        },
        "example": {
          "trans-id": "2ec65d3c-1d81-4ac0-b25d-bd708e5649bf",
          "completion-status": "completed-ok",
          "final-result": [
            {
              "input": {
                "duration": "30",
                "interface-name": "ONU 0 Subscriber Interface",
                "action": "Ethernet Loopback Test",
                "prev-blocking": true
              },
              "output": {
                "success": "ok"
              }
            }
          ]
        }
      },
      "FinalResult11": {
        "title": "FinalResult11",
        "required": [
          "input",
          "output"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input59"
          },
          "output": {
            "$ref": "#/components/schemas/Output77"
          }
        },
        "example": {
          "input": {
            "duration": "30",
            "interface-name": "ONU 0 Subscriber Interface",
            "action": "Ethernet Loopback Test",
            "prev-blocking": true
          },
          "output": {
            "success": "ok"
          }
        }
      },
      "GetJobByname-Success": {
        "title": "GetJobByname-Success",
        "required": [
          "state",
          "job-name",
          "trigger-context",
          "action",
          "action-context",
          "trigger"
        ],
        "type": "object",
        "properties": {
          "state": {
            "type": "string"
          },
          "job-name": {
            "type": "string"
          },
          "trigger-context": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "action": {
            "type": "string"
          },
          "action-context": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ActionContext7"
            },
            "description": ""
          },
          "trigger": {
            "type": "string"
          }
        },
        "example": {
          "state": "deployed",
          "job-name": "Get PON Oper Status",
          "trigger-context": [],
          "action": "Get PON Operational Status",
          "action-context": [
            {
              "filter-list": [],
              "name": "interface-name",
              "subtype": [],
              "hint": "Interface Name.",
              "type": "interface",
              "value": "Put your Interface name here"
            }
          ],
          "trigger": "On Activate"
        }
      },
      "ActionContext7": {
        "title": "ActionContext7",
        "required": [
          "filter-list",
          "name",
          "subtype",
          "hint",
          "type",
          "value"
        ],
        "type": "object",
        "properties": {
          "filter-list": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "name": {
            "type": "string"
          },
          "subtype": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "hint": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "value": {
            "type": "string"
          }
        },
        "example": {
          "filter-list": [],
          "name": "interface-name",
          "subtype": [],
          "hint": "Interface Name.",
          "type": "interface",
          "value": "Put your Interface name here"
        }
      },
      "GetJobByName": {
        "title": "GetJobByName",
        "required": [
          "state",
          "job-name",
          "trigger-context",
          "action",
          "action-context",
          "trigger"
        ],
        "type": "object",
        "properties": {
          "state": {
            "type": "string"
          },
          "job-name": {
            "type": "string"
          },
          "trigger-context": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "action": {
            "type": "string"
          },
          "action-context": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ActionContext7"
            },
            "description": ""
          },
          "trigger": {
            "type": "string"
          }
        },
        "example": {
          "state": "deployed",
          "job-name": "Get PON Oper Status",
          "trigger-context": [],
          "action": "Get PON Operational Status",
          "action-context": [
            {
              "filter-list": [],
              "name": "interface-name",
              "subtype": [],
              "hint": "Interface Name.",
              "type": "interface",
              "value": "Put your Interface name here"
            }
          ],
          "trigger": "On Activate"
        }
      },
      "GetJobs": {
        "title": "GetJobs",
        "required": [
          "jobs"
        ],
        "type": "object",
        "properties": {
          "jobs": {
            "$ref": "#/components/schemas/Jobs"
          }
        },
        "example": {
          "jobs": {
            "job": [
              {
                "state": "deployed",
                "job-name": "Get PON Oper Status",
                "trigger-context": [],
                "action": "Get PON Operational Status",
                "action-context": [
                  {
                    "filter-list": [],
                    "name": "interface-name",
                    "subtype": [],
                    "hint": "Interface Name.",
                    "type": "interface",
                    "value": "Put your Interface name here"
                  }
                ],
                "trigger": "On Activate"
              }
            ]
          }
        }
      },
      "Jobs": {
        "title": "Jobs",
        "required": [
          "job"
        ],
        "type": "object",
        "properties": {
          "job": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Job3"
            },
            "description": ""
          }
        },
        "example": {
          "job": [
            {
              "state": "deployed",
              "job-name": "Get PON Oper Status",
              "trigger-context": [],
              "action": "Get PON Operational Status",
              "action-context": [
                {
                  "filter-list": [],
                  "name": "interface-name",
                  "subtype": [],
                  "hint": "Interface Name.",
                  "type": "interface",
                  "value": "Put your Interface name here"
                }
              ],
              "trigger": "On Activate"
            }
          ]
        }
      },
      "Job3": {
        "title": "Job3",
        "required": [
          "state",
          "job-name",
          "trigger-context",
          "action",
          "action-context",
          "trigger"
        ],
        "type": "object",
        "properties": {
          "state": {
            "type": "string"
          },
          "job-name": {
            "type": "string"
          },
          "trigger-context": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "action": {
            "type": "string"
          },
          "action-context": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ActionContext7"
            },
            "description": ""
          },
          "trigger": {
            "type": "string"
          }
        },
        "example": {
          "state": "deployed",
          "job-name": "Get PON Oper Status",
          "trigger-context": [],
          "action": "Get PON Operational Status",
          "action-context": [
            {
              "filter-list": [],
              "name": "interface-name",
              "subtype": [],
              "hint": "Interface Name.",
              "type": "interface",
              "value": "Put your Interface name here"
            }
          ],
          "trigger": "On Activate"
        }
      },
      "GetAllJobsActions": {
        "title": "GetAllJobsActions",
        "required": [
          "action"
        ],
        "type": "object",
        "properties": {
          "action": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "action": [
            "Activate Device Software",
            "Backup Device Configuration",
            "Commit",
            "Download",
            "Download and Commit",
            "Download Software Only",
            "Download Software Only by Label",
            "Download Software Only by Management Domain",
            "Get ONU by Name",
            "Get ONU by Serial Number",
            "Get ONU Ethernet Data by Interface Name",
            "Get ONU Ethernet Data by Service Name",
            "Get ONU FEC Counters",
            "Get ONU FEC Counters by Channel Partition",
            "Get ONU Service Error Statistics",
            "Get ONU Service State",
            "Get ONUs by Channel Partition",
            "Get PON Operational Status",
            "Get Unrecognized ONUs by PON",
            "Get XPON Pluggable Interface for Device",
            "Handover Channel Partition",
            "Handover OLT",
            "Handover ONU",
            "Reboot Device",
            "Reboot Interface",
            "Collect DPU Data One Device",
            "Collect DPU Data",
            "Execute SELT Test",
            "Execute MELT Self Test",
            "Execute MELT Test",
            "Get MELT Test Result",
            "Get MELT Test Status",
            "Retrieve Diagnostic Reports",
            "Retrieve Exception Reports",
            "Set XLOG Disturber",
            "Upgrade GFast CPEs",
            "Delete GFast Client Data by Interface",
            "Change G.fast Interface Admin State",
            "Reflow Device",
            "Reflow Device Only",
            "Reflow Interface",
            "Reflow Service",
            "Restore Device Configuration",
            "Resynchronize NETCONF Alarms"
          ]
        }
      },
      "GetJobContextRequest": {
        "title": "GetJobContextRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input61"
          }
        },
        "example": {
          "input": {
            "action-name": "Restore Device Configuration"
          }
        }
      },
      "Input61": {
        "title": "Input61",
        "required": [
          "action-name"
        ],
        "type": "object",
        "properties": {
          "action-name": {
            "type": "string"
          }
        },
        "example": {
          "action-name": "Restore Device Configuration"
        }
      },
      "GetJobContext": {
        "title": "GetJobContext",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output95"
          }
        },
        "example": {
          "output": {
            "action-context": [
              {
                "value-list": [],
                "name": "Device Name",
                "subtype": [
                  "NGPON2 16P OLT Access Switch",
                  "SDX 6310 16-port 10G OLT",
                  "SDX 6010 16-port GPON OLT",
                  "SDX 8310 32x100 ToR Switch",
                  "SDX 8310-32",
                  "SDX 8210-54",
                  "SDX 8305-20",
                  "SDX 6312 4-port Combo Remote OLT",
                  "SDX 6320 16-port Combo OLT"
                ],
                "hint": "The name of the device to restore the configuration.",
                "type": "device"
              }
            ],
            "trigger-context": []
          }
        }
      },
      "Output95": {
        "title": "Output95",
        "required": [
          "action-context",
          "trigger-context"
        ],
        "type": "object",
        "properties": {
          "action-context": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ActionContext5"
            },
            "description": ""
          },
          "trigger-context": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "action-context": [
            {
              "value-list": [],
              "name": "Device Name",
              "subtype": [
                "NGPON2 16P OLT Access Switch",
                "SDX 6310 16-port 10G OLT",
                "SDX 6010 16-port GPON OLT",
                "SDX 8310 32x100 ToR Switch",
                "SDX 8310-32",
                "SDX 8210-54",
                "SDX 8305-20",
                "SDX 6312 4-port Combo Remote OLT",
                "SDX 6320 16-port Combo OLT"
              ],
              "hint": "The name of the device to restore the configuration.",
              "type": "device"
            }
          ],
          "trigger-context": []
        }
      },
      "GetJobTrigger-Success": {
        "title": "GetJobTrigger-Success",
        "required": [
          "triggers"
        ],
        "type": "object",
        "properties": {
          "triggers": {
            "$ref": "#/components/schemas/Triggers"
          }
        },
        "example": {
          "triggers": {
            "trigger": [
              "On Activate"
            ]
          }
        }
      },
      "Triggers": {
        "title": "Triggers",
        "required": [
          "trigger"
        ],
        "type": "object",
        "properties": {
          "trigger": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "trigger": [
            "On Activate"
          ]
        }
      },
      "GetPlatformInformation": {
        "title": "GetPlatformInformation",
        "required": [
          "information"
        ],
        "type": "object",
        "properties": {
          "information": {
            "$ref": "#/components/schemas/Information"
          }
        },
        "example": {
          "information": {
            "name": "Mosaic CP",
            "software-version": "20.3-20"
          }
        }
      },
      "Information": {
        "title": "Information",
        "required": [
          "name",
          "software-version"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "software-version": {
            "type": "string"
          }
        },
        "example": {
          "name": "Mosaic CP",
          "software-version": "20.3-20"
        }
      },
      "GetPluginDetails": {
        "title": "GetPluginDetails",
        "required": [
          "plugin"
        ],
        "type": "object",
        "properties": {
          "plugin": {
            "$ref": "#/components/schemas/Plugin"
          }
        },
        "example": {
          "plugin": {
            "plugin": [
              {
                "type": "zip_module",
                "name": "adtn_1u_olt",
                "build-version": "2.0.1518",
                "library-version": [
                  4,
                  1,
                  10
                ]
              },
              {
                "type": "zip_module",
                "name": "service_summary",
                "build-version": "2.1.32",
                "library-version": [
                  4,
                  1,
                  10
                ]
              },
              {
                "type": "zip_module",
                "name": "adtn_tor_switch",
                "build-version": "1.4.53",
                "library-version": [
                  4,
                  1,
                  10
                ]
              },
              {
                "type": "zip_module",
                "name": "adtn_omci_onu",
                "build-version": "1.0.44",
                "library-version": [
                  4,
                  1,
                  10
                ]
              },
              {
                "type": "zip_module",
                "name": "mcp_general",
                "build-version": "5.18.578",
                "library-version": [
                  4,
                  1,
                  10
                ]
              }
            ]
          }
        }
      },
      "Plugin": {
        "title": "Plugin",
        "required": [
          "plugin"
        ],
        "type": "object",
        "properties": {
          "plugin": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Plugin1"
            },
            "description": ""
          }
        },
        "example": {
          "plugin": [
            {
              "type": "zip_module",
              "name": "adtn_1u_olt",
              "build-version": "2.0.1518",
              "library-version": [
                4,
                1,
                10
              ]
            },
            {
              "type": "zip_module",
              "name": "service_summary",
              "build-version": "2.1.32",
              "library-version": [
                4,
                1,
                10
              ]
            },
            {
              "type": "zip_module",
              "name": "adtn_tor_switch",
              "build-version": "1.4.53",
              "library-version": [
                4,
                1,
                10
              ]
            },
            {
              "type": "zip_module",
              "name": "adtn_omci_onu",
              "build-version": "1.0.44",
              "library-version": [
                4,
                1,
                10
              ]
            },
            {
              "type": "zip_module",
              "name": "mcp_general",
              "build-version": "5.18.578",
              "library-version": [
                4,
                1,
                10
              ]
            }
          ]
        }
      },
      "Plugin1": {
        "title": "Plugin1",
        "required": [
          "type",
          "name",
          "build-version",
          "library-version"
        ],
        "type": "object",
        "properties": {
          "type": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "build-version": {
            "type": "string"
          },
          "library-version": {
            "type": "array",
            "items": {
              "type": "integer",
              "format": "int32"
            },
            "description": ""
          }
        },
        "example": {
          "type": "zip_module",
          "name": "adtn_1u_olt",
          "build-version": "2.0.1518",
          "library-version": [
            4,
            1,
            10
          ]
        }
      },
      "GetAllPartNumber": {
        "title": "GetAllPartNumber",
        "required": [
          "part-number",
          "model-name"
        ],
        "type": "object",
        "properties": {
          "part-number": {
            "type": "string"
          },
          "model-name": {
            "type": "string"
          }
        },
        "example": {
          "part-number": "GENERIC",
          "model-name": "Generic Device"
        }
      },
      "GetFeatureFlag": {
        "title": "GetFeatureFlag",
        "required": [
          "feature-flags"
        ],
        "type": "object",
        "properties": {
          "feature-flags": {
            "$ref": "#/components/schemas/FeatureFlags"
          }
        },
        "example": {
          "feature-flags": {
            "flag": [
              {
                "name": "CSV Export",
                "description": "Export contents of various tables to CSV format.",
                "enabled": false
              }
            ]
          }
        }
      },
      "FeatureFlags": {
        "title": "FeatureFlags",
        "required": [
          "flag"
        ],
        "type": "object",
        "properties": {
          "flag": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Flag"
            },
            "description": ""
          }
        },
        "example": {
          "flag": [
            {
              "name": "CSV Export",
              "description": "Export contents of various tables to CSV format.",
              "enabled": false
            }
          ]
        }
      },
      "Flag": {
        "title": "Flag",
        "required": [
          "name",
          "description",
          "enabled"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "enabled": {
            "type": "boolean"
          }
        },
        "example": {
          "name": "CSV Export",
          "description": "Export contents of various tables to CSV format.",
          "enabled": false
        }
      },
      "GetForceActions": {
        "title": "GetForceActions",
        "required": [
          "force-actions"
        ],
        "type": "object",
        "properties": {
          "force-actions": {
            "$ref": "#/components/schemas/ForceActions"
          }
        },
        "example": {
          "force-actions": {
            "force-action": [
              {
                "deactivate": false,
                "undeploy": false,
                "configure": false,
                "delete": false,
                "deploy": false,
                "type": "profile-vector",
                "activate": false
              },
              {
                "deactivate": false,
                "undeploy": false,
                "configure": false,
                "delete": false,
                "deploy": false,
                "type": "bundle",
                "activate": false
              },
              {
                "deactivate": false,
                "undeploy": false,
                "configure": false,
                "delete": false,
                "deploy": false,
                "type": "server",
                "activate": false
              },
              {
                "deactivate": false,
                "undeploy": false,
                "configure": false,
                "delete": false,
                "deploy": false,
                "type": "content-provider",
                "activate": false
              },
              {
                "deactivate": false,
                "undeploy": false,
                "configure": false,
                "delete": false,
                "deploy": false,
                "type": "management-domain",
                "activate": false
              },
              {
                "deactivate": false,
                "undeploy": false,
                "configure": false,
                "delete": false,
                "deploy": false,
                "type": "subscriber",
                "activate": false
              },
              {
                "deactivate": false,
                "undeploy": false,
                "configure": false,
                "delete": false,
                "deploy": true,
                "type": "interface",
                "activate": false
              },
              {
                "deactivate": false,
                "undeploy": false,
                "configure": false,
                "delete": false,
                "deploy": false,
                "type": "data-center",
                "activate": false
              },
              {
                "deactivate": false,
                "undeploy": false,
                "configure": false,
                "delete": false,
                "deploy": false,
                "type": "job",
                "activate": false
              },
              {
                "deactivate": false,
                "undeploy": false,
                "configure": false,
                "delete": false,
                "deploy": false,
                "type": "service",
                "activate": false
              },
              {
                "deactivate": false,
                "undeploy": false,
                "configure": false,
                "delete": false,
                "deploy": false,
                "type": "profile",
                "activate": false
              },
              {
                "deactivate": false,
                "undeploy": false,
                "configure": false,
                "delete": false,
                "deploy": true,
                "type": "device",
                "activate": false
              }
            ]
          }
        }
      },
      "ForceActions": {
        "title": "ForceActions",
        "required": [
          "force-action"
        ],
        "type": "object",
        "properties": {
          "force-action": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ForceAction"
            },
            "description": ""
          }
        },
        "example": {
          "force-action": [
            {
              "deactivate": false,
              "undeploy": false,
              "configure": false,
              "delete": false,
              "deploy": false,
              "type": "profile-vector",
              "activate": false
            },
            {
              "deactivate": false,
              "undeploy": false,
              "configure": false,
              "delete": false,
              "deploy": false,
              "type": "bundle",
              "activate": false
            },
            {
              "deactivate": false,
              "undeploy": false,
              "configure": false,
              "delete": false,
              "deploy": false,
              "type": "server",
              "activate": false
            },
            {
              "deactivate": false,
              "undeploy": false,
              "configure": false,
              "delete": false,
              "deploy": false,
              "type": "content-provider",
              "activate": false
            },
            {
              "deactivate": false,
              "undeploy": false,
              "configure": false,
              "delete": false,
              "deploy": false,
              "type": "management-domain",
              "activate": false
            },
            {
              "deactivate": false,
              "undeploy": false,
              "configure": false,
              "delete": false,
              "deploy": false,
              "type": "subscriber",
              "activate": false
            },
            {
              "deactivate": false,
              "undeploy": false,
              "configure": false,
              "delete": false,
              "deploy": true,
              "type": "interface",
              "activate": false
            },
            {
              "deactivate": false,
              "undeploy": false,
              "configure": false,
              "delete": false,
              "deploy": false,
              "type": "data-center",
              "activate": false
            },
            {
              "deactivate": false,
              "undeploy": false,
              "configure": false,
              "delete": false,
              "deploy": false,
              "type": "job",
              "activate": false
            },
            {
              "deactivate": false,
              "undeploy": false,
              "configure": false,
              "delete": false,
              "deploy": false,
              "type": "service",
              "activate": false
            },
            {
              "deactivate": false,
              "undeploy": false,
              "configure": false,
              "delete": false,
              "deploy": false,
              "type": "profile",
              "activate": false
            },
            {
              "deactivate": false,
              "undeploy": false,
              "configure": false,
              "delete": false,
              "deploy": true,
              "type": "device",
              "activate": false
            }
          ]
        }
      },
      "ForceAction": {
        "title": "ForceAction",
        "required": [
          "deactivate",
          "undeploy",
          "configure",
          "delete",
          "deploy",
          "type",
          "activate"
        ],
        "type": "object",
        "properties": {
          "deactivate": {
            "type": "boolean"
          },
          "undeploy": {
            "type": "boolean"
          },
          "configure": {
            "type": "boolean"
          },
          "delete": {
            "type": "boolean"
          },
          "deploy": {
            "type": "boolean"
          },
          "type": {
            "type": "string"
          },
          "activate": {
            "type": "boolean"
          }
        },
        "example": {
          "deactivate": false,
          "undeploy": false,
          "configure": false,
          "delete": false,
          "deploy": false,
          "type": "profile-vector",
          "activate": false
        }
      },
      "GetUICapabilities": {
        "title": "GetUICapabilities",
        "required": [
          "suspend-resume-on-services"
        ],
        "type": "object",
        "properties": {
          "suspend-resume-on-services": {
            "type": "boolean"
          }
        },
        "example": {
          "suspend-resume-on-services": false
        }
      },
      "PlatformStatusCheck": {
        "title": "PlatformStatusCheck",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output96"
          }
        },
        "example": {
          "output": {
            "zookeeper": "running",
            "elastic": "running",
            "kafka": "running"
          }
        }
      },
      "Output96": {
        "title": "Output96",
        "required": [
          "zookeeper",
          "elastic",
          "kafka"
        ],
        "type": "object",
        "properties": {
          "zookeeper": {
            "type": "string"
          },
          "elastic": {
            "type": "string"
          },
          "kafka": {
            "type": "string"
          }
        },
        "example": {
          "zookeeper": "running",
          "elastic": "running",
          "kafka": "running"
        }
      },
      "GetSystemMonitorNodesSummary": {
        "title": "GetSystemMonitorNodesSummary",
        "required": [
          "nodes-summary"
        ],
        "type": "object",
        "properties": {
          "nodes-summary": {
            "$ref": "#/components/schemas/NodesSummary"
          }
        },
        "example": {
          "nodes-summary": {
            "node": [
              {
                "node-id": "1",
                "status": "up"
              }
            ]
          }
        }
      },
      "NodesSummary": {
        "title": "NodesSummary",
        "required": [
          "node"
        ],
        "type": "object",
        "properties": {
          "node": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Node"
            },
            "description": ""
          }
        },
        "example": {
          "node": [
            {
              "node-id": "1",
              "status": "up"
            }
          ]
        }
      },
      "Node": {
        "title": "Node",
        "required": [
          "node-id",
          "status"
        ],
        "type": "object",
        "properties": {
          "node-id": {
            "type": "string"
          },
          "status": {
            "type": "string"
          }
        },
        "example": {
          "node-id": "1",
          "status": "up"
        }
      },
      "GetNodesusingSystemMonitor": {
        "title": "GetNodesusingSystemMonitor",
        "required": [
          "nodes"
        ],
        "type": "object",
        "properties": {
          "nodes": {
            "$ref": "#/components/schemas/Nodes"
          }
        },
        "example": {
          "nodes": {
            "node": [
              {
                "node-id": "1",
                "status": "up",
                "service": [
                  {
                    "name": "address-resolution-service",
                    "status": "up"
                  },
                  {
                    "name": "captive-portal-script-exec",
                    "status": "up"
                  },
                  {
                    "name": "cloud-platform-deferred-intent-service",
                    "status": "up"
                  },
                  {
                    "name": "cloud-platform-event-workflow",
                    "status": "up"
                  },
                  {
                    "name": "cloud-platform-http-service",
                    "status": "up"
                  },
                  {
                    "name": "cloud-platform-job-manager",
                    "status": "up"
                  },
                  {
                    "name": "cloud-platform-uiworkflow",
                    "status": "up"
                  },
                  {
                    "name": "cloud-platform-universal-inspect-workflow",
                    "status": "up"
                  },
                  {
                    "name": "cluster-monitor",
                    "status": "up"
                  },
                  {
                    "name": "device-layer",
                    "status": "up"
                  },
                  {
                    "name": "elastic-exec",
                    "status": "up"
                  },
                  {
                    "name": "event-forwarding",
                    "status": "up"
                  },
                  {
                    "name": "export-data-service",
                    "status": "up"
                  },
                  {
                    "name": "firefly-aaa",
                    "status": "up"
                  },
                  {
                    "name": "firefly-manifests",
                    "status": "up"
                  },
                  {
                    "name": "kafka-manager",
                    "status": "up"
                  },
                  {
                    "name": "marshal-plugins",
                    "status": "up"
                  },
                  {
                    "name": "mosaic-cp-cda",
                    "status": "up"
                  },
                  {
                    "name": "mosaic-cp-plugin",
                    "status": "up"
                  },
                  {
                    "name": "nms-server-manager-coordinator",
                    "status": "up"
                  },
                  {
                    "name": "nms-trap-forwarding",
                    "status": "up"
                  },
                  {
                    "name": "northbound-interface",
                    "status": "up"
                  },
                  {
                    "name": "protocol-session-manager",
                    "status": "up"
                  },
                  {
                    "name": "service-manager",
                    "status": "up"
                  },
                  {
                    "name": "yang-datastore",
                    "status": "up"
                  }
                ]
              }
            ]
          }
        }
      },
      "Nodes": {
        "title": "Nodes",
        "required": [
          "node"
        ],
        "type": "object",
        "properties": {
          "node": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Node1"
            },
            "description": ""
          }
        },
        "example": {
          "node": [
            {
              "node-id": "1",
              "status": "up",
              "service": [
                {
                  "name": "address-resolution-service",
                  "status": "up"
                },
                {
                  "name": "captive-portal-script-exec",
                  "status": "up"
                },
                {
                  "name": "cloud-platform-deferred-intent-service",
                  "status": "up"
                },
                {
                  "name": "cloud-platform-event-workflow",
                  "status": "up"
                },
                {
                  "name": "cloud-platform-http-service",
                  "status": "up"
                },
                {
                  "name": "cloud-platform-job-manager",
                  "status": "up"
                },
                {
                  "name": "cloud-platform-uiworkflow",
                  "status": "up"
                },
                {
                  "name": "cloud-platform-universal-inspect-workflow",
                  "status": "up"
                },
                {
                  "name": "cluster-monitor",
                  "status": "up"
                },
                {
                  "name": "device-layer",
                  "status": "up"
                },
                {
                  "name": "elastic-exec",
                  "status": "up"
                },
                {
                  "name": "event-forwarding",
                  "status": "up"
                },
                {
                  "name": "export-data-service",
                  "status": "up"
                },
                {
                  "name": "firefly-aaa",
                  "status": "up"
                },
                {
                  "name": "firefly-manifests",
                  "status": "up"
                },
                {
                  "name": "kafka-manager",
                  "status": "up"
                },
                {
                  "name": "marshal-plugins",
                  "status": "up"
                },
                {
                  "name": "mosaic-cp-cda",
                  "status": "up"
                },
                {
                  "name": "mosaic-cp-plugin",
                  "status": "up"
                },
                {
                  "name": "nms-server-manager-coordinator",
                  "status": "up"
                },
                {
                  "name": "nms-trap-forwarding",
                  "status": "up"
                },
                {
                  "name": "northbound-interface",
                  "status": "up"
                },
                {
                  "name": "protocol-session-manager",
                  "status": "up"
                },
                {
                  "name": "service-manager",
                  "status": "up"
                },
                {
                  "name": "yang-datastore",
                  "status": "up"
                }
              ]
            }
          ]
        }
      },
      "Node1": {
        "title": "Node1",
        "required": [
          "node-id",
          "status",
          "service"
        ],
        "type": "object",
        "properties": {
          "node-id": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "service": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Service"
            },
            "description": ""
          }
        },
        "example": {
          "node-id": "1",
          "status": "up",
          "service": [
            {
              "name": "address-resolution-service",
              "status": "up"
            },
            {
              "name": "captive-portal-script-exec",
              "status": "up"
            },
            {
              "name": "cloud-platform-deferred-intent-service",
              "status": "up"
            },
            {
              "name": "cloud-platform-event-workflow",
              "status": "up"
            },
            {
              "name": "cloud-platform-http-service",
              "status": "up"
            },
            {
              "name": "cloud-platform-job-manager",
              "status": "up"
            },
            {
              "name": "cloud-platform-uiworkflow",
              "status": "up"
            },
            {
              "name": "cloud-platform-universal-inspect-workflow",
              "status": "up"
            },
            {
              "name": "cluster-monitor",
              "status": "up"
            },
            {
              "name": "device-layer",
              "status": "up"
            },
            {
              "name": "elastic-exec",
              "status": "up"
            },
            {
              "name": "event-forwarding",
              "status": "up"
            },
            {
              "name": "export-data-service",
              "status": "up"
            },
            {
              "name": "firefly-aaa",
              "status": "up"
            },
            {
              "name": "firefly-manifests",
              "status": "up"
            },
            {
              "name": "kafka-manager",
              "status": "up"
            },
            {
              "name": "marshal-plugins",
              "status": "up"
            },
            {
              "name": "mosaic-cp-cda",
              "status": "up"
            },
            {
              "name": "mosaic-cp-plugin",
              "status": "up"
            },
            {
              "name": "nms-server-manager-coordinator",
              "status": "up"
            },
            {
              "name": "nms-trap-forwarding",
              "status": "up"
            },
            {
              "name": "northbound-interface",
              "status": "up"
            },
            {
              "name": "protocol-session-manager",
              "status": "up"
            },
            {
              "name": "service-manager",
              "status": "up"
            },
            {
              "name": "yang-datastore",
              "status": "up"
            }
          ]
        }
      },
      "Service": {
        "title": "Service",
        "required": [
          "name",
          "status"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "status": {
            "type": "string"
          }
        },
        "example": {
          "name": "address-resolution-service",
          "status": "up"
        }
      },
      "ManagedObject-CreateBundleRequest": {
        "title": "ManagedObject-CreateBundleRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input62"
          }
        },
        "example": {
          "input": {
            "bundle-context": {
              "bundle-name": "orch-bdl-1",
              "bundle-type": "Generic Bundle",
              "bundle-id": "4623/1",
              "profile-vector-name": "{{orch-bundle-pv1}}"
            }
          }
        }
      },
      "Input62": {
        "title": "Input62",
        "required": [
          "bundle-context"
        ],
        "type": "object",
        "properties": {
          "bundle-context": {
            "$ref": "#/components/schemas/BundleContext"
          }
        },
        "example": {
          "bundle-context": {
            "bundle-name": "orch-bdl-1",
            "bundle-type": "Generic Bundle",
            "bundle-id": "4623/1",
            "profile-vector-name": "{{orch-bundle-pv1}}"
          }
        }
      },
      "BundleContext": {
        "title": "BundleContext",
        "required": [
          "bundle-name",
          "bundle-type",
          "bundle-id",
          "profile-vector-name"
        ],
        "type": "object",
        "properties": {
          "bundle-name": {
            "type": "string"
          },
          "bundle-type": {
            "type": "string"
          },
          "bundle-id": {
            "type": "string"
          },
          "profile-vector-name": {
            "type": "string"
          }
        },
        "example": {
          "bundle-name": "orch-bdl-1",
          "bundle-type": "Generic Bundle",
          "bundle-id": "4623/1",
          "profile-vector-name": "{{orch-bundle-pv1}}"
        }
      },
      "ManagedObject-CreateBundle": {
        "title": "ManagedObject-CreateBundle",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output97"
          }
        },
        "example": {
          "output": {
            "timestamp": "2021-01-08T16:46:47.076000",
            "bundle-name": "orch-bdl-1",
            "status": "creating",
            "trans-id": "6955e6fb-7171-45df-ae50-6ba7e963d53d",
            "completion-status": "in-progress"
          }
        }
      },
      "Output97": {
        "title": "Output97",
        "required": [
          "timestamp",
          "bundle-name",
          "status",
          "trans-id",
          "completion-status"
        ],
        "type": "object",
        "properties": {
          "timestamp": {
            "type": "string"
          },
          "bundle-name": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "trans-id": {
            "type": "string"
          },
          "completion-status": {
            "type": "string"
          }
        },
        "example": {
          "timestamp": "2021-01-08T16:46:47.076000",
          "bundle-name": "orch-bdl-1",
          "status": "creating",
          "trans-id": "6955e6fb-7171-45df-ae50-6ba7e963d53d",
          "completion-status": "in-progress"
        }
      },
      "ManagedObject-ModifyBundleOperationReplacewithRequiredParametersRequest": {
        "title": "ManagedObject-ModifyBundleOperationReplacewithRequiredParametersRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input63"
          }
        },
        "example": {
          "input": {
            "bundle-context": {
              "bundle-name": "orch-bdl-1",
              "bundle-type": "Generic Bundle",
              "bundle-id": "4623/1"
            },
            "operation": "replace"
          }
        }
      },
      "Input63": {
        "title": "Input63",
        "required": [
          "bundle-context",
          "operation"
        ],
        "type": "object",
        "properties": {
          "bundle-context": {
            "$ref": "#/components/schemas/BundleContext1"
          },
          "operation": {
            "type": "string"
          }
        },
        "example": {
          "bundle-context": {
            "bundle-name": "orch-bdl-1",
            "bundle-type": "Generic Bundle",
            "bundle-id": "4623/1"
          },
          "operation": "replace"
        }
      },
      "BundleContext1": {
        "title": "BundleContext1",
        "required": [
          "bundle-name",
          "bundle-type",
          "bundle-id"
        ],
        "type": "object",
        "properties": {
          "bundle-name": {
            "type": "string"
          },
          "bundle-type": {
            "type": "string"
          },
          "bundle-id": {
            "type": "string"
          }
        },
        "example": {
          "bundle-name": "orch-bdl-1",
          "bundle-type": "Generic Bundle",
          "bundle-id": "4623/1"
        }
      },
      "ManagedObject-ModifyBundleOperationReplacewithRequiredParameters": {
        "title": "ManagedObject-ModifyBundleOperationReplacewithRequiredParameters",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output97"
          }
        },
        "example": {
          "output": {
            "timestamp": "2021-01-08T16:47:44.772000",
            "bundle-name": "orch-bdl-1",
            "status": "modifying",
            "trans-id": "1fb15ab8-5e02-45d5-a36b-efae493659aa",
            "completion-status": "in-progress"
          }
        }
      },
      "ManagedObject-ModifyBundle-MergeOperationRequest": {
        "title": "ManagedObject-ModifyBundle-MergeOperationRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input64"
          }
        },
        "example": {
          "input": {
            "bundle-context": {
              "bundle-name": "orch-bdl-1",
              "profile-vector-name": "{{orch-bundle-pv2}}"
            }
          }
        }
      },
      "Input64": {
        "title": "Input64",
        "required": [
          "bundle-context"
        ],
        "type": "object",
        "properties": {
          "bundle-context": {
            "$ref": "#/components/schemas/BundleContext2"
          }
        },
        "example": {
          "bundle-context": {
            "bundle-name": "orch-bdl-1",
            "profile-vector-name": "{{orch-bundle-pv2}}"
          }
        }
      },
      "BundleContext2": {
        "title": "BundleContext2",
        "required": [
          "bundle-name",
          "profile-vector-name"
        ],
        "type": "object",
        "properties": {
          "bundle-name": {
            "type": "string"
          },
          "profile-vector-name": {
            "type": "string"
          }
        },
        "example": {
          "bundle-name": "orch-bdl-1",
          "profile-vector-name": "{{orch-bundle-pv2}}"
        }
      },
      "ManagedObject-ModifyBundle-MergeOperation": {
        "title": "ManagedObject-ModifyBundle-MergeOperation",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output97"
          }
        },
        "example": {
          "output": {
            "timestamp": "2021-01-08T16:48:01.018000",
            "bundle-name": "orch-bdl-1",
            "status": "modifying",
            "trans-id": "676b41ec-77f9-4af5-9807-3be72b946a53",
            "completion-status": "in-progress"
          }
        }
      },
      "ManagedObject-DeleteBundleRequest": {
        "title": "ManagedObject-DeleteBundleRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input65"
          }
        },
        "example": {
          "input": {
            "bundle-context": {
              "bundle-name": "orch-bdl-1"
            }
          }
        }
      },
      "Input65": {
        "title": "Input65",
        "required": [
          "bundle-context"
        ],
        "type": "object",
        "properties": {
          "bundle-context": {
            "$ref": "#/components/schemas/BundleContext3"
          }
        },
        "example": {
          "bundle-context": {
            "bundle-name": "orch-bdl-1"
          }
        }
      },
      "BundleContext3": {
        "title": "BundleContext3",
        "required": [
          "bundle-name"
        ],
        "type": "object",
        "properties": {
          "bundle-name": {
            "type": "string"
          }
        },
        "example": {
          "bundle-name": "orch-bdl-1"
        }
      },
      "ManagedObject-DeleteBundle": {
        "title": "ManagedObject-DeleteBundle",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output97"
          }
        },
        "example": {
          "output": {
            "timestamp": "2021-01-08T16:48:23.955000",
            "bundle-name": "orch-bdl-1",
            "status": "deleting",
            "trans-id": "5f3fa57c-80a5-46d3-a6f9-69d47efd58a9",
            "completion-status": "in-progress"
          }
        }
      },
      "CreateBundleRequest": {
        "title": "CreateBundleRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input66"
          }
        },
        "example": {
          "input": {
            "bundle-context": {
              "bundle-name": "ChannelPartition_1",
              "bundle-type": "channel-partition",
              "profile-vector-name": "{{bundle-pv-name}}"
            }
          }
        }
      },
      "Input66": {
        "title": "Input66",
        "required": [
          "bundle-context"
        ],
        "type": "object",
        "properties": {
          "bundle-context": {
            "$ref": "#/components/schemas/BundleContext4"
          }
        },
        "example": {
          "bundle-context": {
            "bundle-name": "ChannelPartition_1",
            "bundle-type": "channel-partition",
            "profile-vector-name": "{{bundle-pv-name}}"
          }
        }
      },
      "BundleContext4": {
        "title": "BundleContext4",
        "required": [
          "bundle-name",
          "bundle-type",
          "profile-vector-name"
        ],
        "type": "object",
        "properties": {
          "bundle-name": {
            "type": "string"
          },
          "bundle-type": {
            "type": "string"
          },
          "profile-vector-name": {
            "type": "string"
          }
        },
        "example": {
          "bundle-name": "ChannelPartition_1",
          "bundle-type": "channel-partition",
          "profile-vector-name": "{{bundle-pv-name}}"
        }
      },
      "CreateBundle-BundleAlreadyExist1": {
        "title": "CreateBundle-BundleAlreadyExist1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Bundle ChannelPartition_1 already exists."
          }
        }
      },
      "CreateBundle-Success": {
        "title": "CreateBundle-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output97"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-09T10:00:08.630000",
            "bundle-name": "ChannelPartition_1",
            "status": "configuring",
            "trans-id": "27c7e862-061e-4441-b985-b0244ee49063",
            "completion-status": "in-progress"
          }
        }
      },
      "ConfigureBundleRequest": {
        "title": "ConfigureBundleRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input66"
          }
        },
        "example": {
          "input": {
            "bundle-context": {
              "bundle-name": "ChannelPartition_1",
              "bundle-type": "lag-interface",
              "profile-vector-name": "{{bundle-pv-name}}"
            }
          }
        }
      },
      "ConfigureBundle-IncorrectBundleName1": {
        "title": "ConfigureBundle-IncorrectBundleName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Bundle Incorrect Bundle Name  does not exists."
          }
        }
      },
      "ConfigureBundle-Success": {
        "title": "ConfigureBundle-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output97"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-09T10:05:26.492000",
            "bundle-name": "ChannelPartition_1",
            "status": "configuring",
            "trans-id": "2ad65884-8030-47db-8636-0dd59632305a",
            "completion-status": "in-progress"
          }
        }
      },
      "DeployBundleRequest": {
        "title": "DeployBundleRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input68"
          }
        },
        "example": {
          "input": {
            "bundle-context": {
              "bundle-name": "ChannelPartition_1",
              "bundle-id": "4392/1"
            }
          }
        }
      },
      "Input68": {
        "title": "Input68",
        "required": [
          "bundle-context"
        ],
        "type": "object",
        "properties": {
          "bundle-context": {
            "$ref": "#/components/schemas/BundleContext6"
          }
        },
        "example": {
          "bundle-context": {
            "bundle-name": "ChannelPartition_1",
            "bundle-id": "4392/1"
          }
        }
      },
      "BundleContext6": {
        "title": "BundleContext6",
        "required": [
          "bundle-name",
          "bundle-id"
        ],
        "type": "object",
        "properties": {
          "bundle-name": {
            "type": "string"
          },
          "bundle-id": {
            "type": "string"
          }
        },
        "example": {
          "bundle-name": "ChannelPartition_1",
          "bundle-id": "4392/1"
        }
      },
      "DeployBundle-IncorrectBundleName1": {
        "title": "DeployBundle-IncorrectBundleName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Bundle Incorrect Bundle Name does not exists."
          }
        }
      },
      "DeployBundle-Success": {
        "title": "DeployBundle-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output97"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-09T10:12:36.853000",
            "bundle-name": "ChannelPartition_1",
            "status": "deploying",
            "trans-id": "9a374189-69ec-4fff-93db-1b9611dbe195",
            "completion-status": "in-progress"
          }
        }
      },
      "DeployBundle-AlreadyDeployed1": {
        "title": "DeployBundle-AlreadyDeployed1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'deploy' not allowed for ChannelPartition_1 with state 'deployed'"
          }
        }
      },
      "ActivateBundleRequest": {
        "title": "ActivateBundleRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input65"
          }
        },
        "example": {
          "input": {
            "bundle-context": {
              "bundle-name": "ChannelPartition_1"
            }
          }
        }
      },
      "ActivateBundle-Success": {
        "title": "ActivateBundle-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output97"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-09T10:16:14.704000",
            "bundle-name": "ChannelPartition_1",
            "status": "activating",
            "trans-id": "02a37c4f-76ae-4acb-8e4b-9c03c898d056",
            "completion-status": "in-progress"
          }
        }
      },
      "ActivateBundle-IncorrectBundleName1": {
        "title": "ActivateBundle-IncorrectBundleName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Bundle Incorrect Bundle Name does not exists."
          }
        }
      },
      "ActivateBundle-AlreadyActivated1": {
        "title": "ActivateBundle-AlreadyActivated1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'activate' not allowed for ChannelPartition_1 with state 'activated'"
          }
        }
      },
      "GetBundle-Success": {
        "title": "GetBundle-Success",
        "required": [
          "state",
          "bundle-name",
          "bundle-id",
          "profile-vector-name",
          "bundle-type"
        ],
        "type": "object",
        "properties": {
          "state": {
            "type": "string"
          },
          "bundle-name": {
            "type": "string"
          },
          "bundle-id": {
            "type": "string"
          },
          "profile-vector-name": {
            "type": "string"
          },
          "bundle-type": {
            "type": "string"
          }
        },
        "example": {
          "state": "activated",
          "bundle-name": "ChannelPartition_1",
          "bundle-id": "4392/1",
          "profile-vector-name": "Sample Bundle Vector",
          "bundle-type": "channel-partition"
        }
      },
      "Errors24": {
        "title": "Errors24",
        "required": [
          "error-type",
          "error-message"
        ],
        "type": "object",
        "properties": {
          "error-type": {
            "type": "string"
          },
          "error-message": {
            "type": "string"
          }
        },
        "example": {
          "error-type": "application",
          "error-message": "'Incorrect Bundle Name' not found"
        }
      },
      "GetBundle-IncorrectBundleName1": {
        "title": "GetBundle-IncorrectBundleName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors24"
          }
        },
        "example": {
          "errors": {
            "error-type": "application",
            "error-message": "'Incorrect Bundle Name' not found"
          }
        }
      },
      "GetAllBundles-Success": {
        "title": "GetAllBundles-Success",
        "required": [
          "state",
          "bundle-name",
          "profile-vector-name",
          "bundle-type"
        ],
        "type": "object",
        "properties": {
          "state": {
            "type": "string"
          },
          "bundle-name": {
            "type": "string"
          },
          "profile-vector-name": {
            "type": "string"
          },
          "bundle-type": {
            "type": "string"
          },
          "bundle-id": {
            "type": "string"
          }
        },
        "example": {
          "state": "configured",
          "bundle-name": "ChannelPartition",
          "profile-vector-name": "",
          "bundle-type": "channel-partition"
        }
      },
      "DeactivateBundleRequest": {
        "title": "DeactivateBundleRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input65"
          }
        },
        "example": {
          "input": {
            "bundle-context": {
              "bundle-name": "ChannelPartition_1"
            }
          }
        }
      },
      "DeactivateBundle-Success": {
        "title": "DeactivateBundle-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output97"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-09T10:22:52.087000",
            "bundle-name": "ChannelPartition_1",
            "status": "deactivating",
            "trans-id": "925a1ff9-5f5c-42fd-a483-e94adfa76460",
            "completion-status": "in-progress"
          }
        }
      },
      "DeactivateBundle-AlreadyDeactivated1": {
        "title": "DeactivateBundle-AlreadyDeactivated1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'deactivate' not allowed for ChannelPartition_1 with state 'deployed'"
          }
        }
      },
      "DeactivateBundle-IncorrectBundleName1": {
        "title": "DeactivateBundle-IncorrectBundleName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Bundle Incorrect Bundle Name does not exists."
          }
        }
      },
      "UndeployBundleRequest": {
        "title": "UndeployBundleRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input65"
          }
        },
        "example": {
          "input": {
            "bundle-context": {
              "bundle-name": "ChannelPartition_1"
            }
          }
        }
      },
      "UndeployBundle-AlreadyUndeployed1": {
        "title": "UndeployBundle-AlreadyUndeployed1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'undeploy' not allowed for ChannelPartition_1 with state 'configured'"
          }
        }
      },
      "UndeployBundle-Success": {
        "title": "UndeployBundle-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output97"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-09T10:23:49.131000",
            "bundle-name": "ChannelPartition_1",
            "status": "undeploying",
            "trans-id": "987ef3a2-2d8b-402f-866e-7b9b08996dc9",
            "completion-status": "in-progress"
          }
        }
      },
      "UndeployBundle-IncorrectBundleName1": {
        "title": "UndeployBundle-IncorrectBundleName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Bundle Incorrect Bundle Name does not exists."
          }
        }
      },
      "DeleteBundleRequest": {
        "title": "DeleteBundleRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input65"
          }
        },
        "example": {
          "input": {
            "bundle-context": {
              "bundle-name": "ChannelPartition_1"
            }
          }
        }
      },
      "DeleteBundle-AlreadyDeleted1": {
        "title": "DeleteBundle-AlreadyDeleted1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Bundle ChannelPartition_1 does not exists."
          }
        }
      },
      "DeleteBundle-Success": {
        "title": "DeleteBundle-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output97"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-09T10:08:15.257000",
            "bundle-name": "ChannelPartition_1",
            "status": "deleting",
            "trans-id": "acd6d01f-4696-4ab6-a09a-e0f9932bd6ec",
            "completion-status": "in-progress"
          }
        }
      },
      "ManagedObject-CreateContentProviderwithBundleRequest": {
        "title": "ManagedObject-CreateContentProviderwithBundleRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input73"
          }
        },
        "example": {
          "input": {
            "content-provider-context": {
              "content-provider-name": "orch-cp-1",
              "multipoint-outer-vlan-id": "1",
              "multipoint-inner-vlan-id": "2",
              "bundle-name": "{{orch-cp-bundle}}",
              "profile-vector-name": "{{orch-cp-pv1}}"
            }
          }
        }
      },
      "Input73": {
        "title": "Input73",
        "required": [
          "content-provider-context"
        ],
        "type": "object",
        "properties": {
          "content-provider-context": {
            "$ref": "#/components/schemas/ContentProviderContext"
          }
        },
        "example": {
          "content-provider-context": {
            "content-provider-name": "orch-cp-1",
            "multipoint-outer-vlan-id": "1",
            "multipoint-inner-vlan-id": "2",
            "bundle-name": "{{orch-cp-bundle}}",
            "profile-vector-name": "{{orch-cp-pv1}}"
          }
        }
      },
      "ContentProviderContext": {
        "title": "ContentProviderContext",
        "required": [
          "content-provider-name",
          "multipoint-outer-vlan-id",
          "multipoint-inner-vlan-id",
          "bundle-name",
          "profile-vector-name"
        ],
        "type": "object",
        "properties": {
          "content-provider-name": {
            "type": "string"
          },
          "multipoint-outer-vlan-id": {
            "type": "string"
          },
          "multipoint-inner-vlan-id": {
            "type": "string"
          },
          "bundle-name": {
            "type": "string"
          },
          "profile-vector-name": {
            "type": "string"
          }
        },
        "example": {
          "content-provider-name": "orch-cp-1",
          "multipoint-outer-vlan-id": "1",
          "multipoint-inner-vlan-id": "2",
          "bundle-name": "{{orch-cp-bundle}}",
          "profile-vector-name": "{{orch-cp-pv1}}"
        }
      },
      "ManagedObject-CreateContentProviderwithBundle": {
        "title": "ManagedObject-CreateContentProviderwithBundle",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output108"
          }
        },
        "example": {
          "output": {
            "timestamp": "2021-01-08T16:48:59.138000",
            "status": "creating",
            "trans-id": "c182415e-4ab9-4876-93ed-620fc4ca0324",
            "completion-status": "in-progress",
            "content-provider-name": "orch-cp-1"
          }
        }
      },
      "Output108": {
        "title": "Output108",
        "required": [
          "timestamp",
          "status",
          "trans-id",
          "completion-status",
          "content-provider-name"
        ],
        "type": "object",
        "properties": {
          "timestamp": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "trans-id": {
            "type": "string"
          },
          "completion-status": {
            "type": "string"
          },
          "content-provider-name": {
            "type": "string"
          }
        },
        "example": {
          "timestamp": "2021-01-08T16:48:59.138000",
          "status": "creating",
          "trans-id": "c182415e-4ab9-4876-93ed-620fc4ca0324",
          "completion-status": "in-progress",
          "content-provider-name": "orch-cp-1"
        }
      },
      "ManagedObject-CreateContentProviderwithInterfaceRequest": {
        "title": "ManagedObject-CreateContentProviderwithInterfaceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input74"
          }
        },
        "example": {
          "input": {
            "content-provider-context": {
              "content-provider-name": "orch-cp-2",
              "multipoint-outer-vlan-id": "1",
              "multipoint-inner-vlan-id": "2",
              "interface-name": "{{orch-cp-interface}}",
              "profile-vector-name": "{{orch-cp-pv1}}"
            }
          }
        }
      },
      "Input74": {
        "title": "Input74",
        "required": [
          "content-provider-context"
        ],
        "type": "object",
        "properties": {
          "content-provider-context": {
            "$ref": "#/components/schemas/ContentProviderContext1"
          }
        },
        "example": {
          "content-provider-context": {
            "content-provider-name": "orch-cp-2",
            "multipoint-outer-vlan-id": "1",
            "multipoint-inner-vlan-id": "2",
            "interface-name": "{{orch-cp-interface}}",
            "profile-vector-name": "{{orch-cp-pv1}}"
          }
        }
      },
      "ContentProviderContext1": {
        "title": "ContentProviderContext1",
        "required": [
          "content-provider-name",
          "multipoint-outer-vlan-id",
          "multipoint-inner-vlan-id",
          "interface-name",
          "profile-vector-name"
        ],
        "type": "object",
        "properties": {
          "content-provider-name": {
            "type": "string"
          },
          "multipoint-outer-vlan-id": {
            "type": "string"
          },
          "multipoint-inner-vlan-id": {
            "type": "string"
          },
          "interface-name": {
            "type": "string"
          },
          "profile-vector-name": {
            "type": "string"
          }
        },
        "example": {
          "content-provider-name": "orch-cp-2",
          "multipoint-outer-vlan-id": "1",
          "multipoint-inner-vlan-id": "2",
          "interface-name": "{{orch-cp-interface}}",
          "profile-vector-name": "{{orch-cp-pv1}}"
        }
      },
      "ManagedObject-CreateContentProviderwithInterface": {
        "title": "ManagedObject-CreateContentProviderwithInterface",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output108"
          }
        },
        "example": {
          "output": {
            "timestamp": "2021-01-08T16:55:32.247000",
            "status": "creating",
            "trans-id": "c11a62ad-08fd-40e9-b043-0b0088e82961",
            "completion-status": "in-progress",
            "content-provider-name": "orch-cp-2"
          }
        }
      },
      "ManagedObject-ModifyContentProviderwithBundleNameandReplacewithRequiredParametersRequest": {
        "title": "ManagedObject-ModifyContentProviderwithBundleNameandReplacewithRequiredParametersRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input75"
          }
        },
        "example": {
          "input": {
            "content-provider-context": {
              "content-provider-name": "orch-cp-1",
              "multipoint-outer-vlan-id": "1",
              "multipoint-inner-vlan-id": "2",
              "bundle-name": "{{orch-cp-bundle}}"
            },
            "operation": "replace"
          }
        }
      },
      "Input75": {
        "title": "Input75",
        "required": [
          "content-provider-context",
          "operation"
        ],
        "type": "object",
        "properties": {
          "content-provider-context": {
            "$ref": "#/components/schemas/ContentProviderContext2"
          },
          "operation": {
            "type": "string"
          }
        },
        "example": {
          "content-provider-context": {
            "content-provider-name": "orch-cp-1",
            "multipoint-outer-vlan-id": "1",
            "multipoint-inner-vlan-id": "2",
            "bundle-name": "{{orch-cp-bundle}}"
          },
          "operation": "replace"
        }
      },
      "ContentProviderContext2": {
        "title": "ContentProviderContext2",
        "required": [
          "content-provider-name",
          "multipoint-outer-vlan-id",
          "multipoint-inner-vlan-id",
          "bundle-name"
        ],
        "type": "object",
        "properties": {
          "content-provider-name": {
            "type": "string"
          },
          "multipoint-outer-vlan-id": {
            "type": "string"
          },
          "multipoint-inner-vlan-id": {
            "type": "string"
          },
          "bundle-name": {
            "type": "string"
          }
        },
        "example": {
          "content-provider-name": "orch-cp-1",
          "multipoint-outer-vlan-id": "1",
          "multipoint-inner-vlan-id": "2",
          "bundle-name": "{{orch-cp-bundle}}"
        }
      },
      "ManagedObject-ModifyContentProviderwithBundleNameandReplacewithRequiredParameters": {
        "title": "ManagedObject-ModifyContentProviderwithBundleNameandReplacewithRequiredParameters",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output108"
          }
        },
        "example": {
          "output": {
            "timestamp": "2021-01-08T16:50:03.528000",
            "status": "modifying",
            "trans-id": "982d012f-4325-4f63-a318-6050eb135086",
            "completion-status": "in-progress",
            "content-provider-name": "orch-cp-1"
          }
        }
      },
      "ManagedObject-ModifyContentProvider-MergeOperationRequest": {
        "title": "ManagedObject-ModifyContentProvider-MergeOperationRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input76"
          }
        },
        "example": {
          "input": {
            "content-provider-context": {
              "content-provider-name": "orch-cp-1",
              "profile-vector-name": "{{orch-cp-pv2}}"
            }
          }
        }
      },
      "Input76": {
        "title": "Input76",
        "required": [
          "content-provider-context"
        ],
        "type": "object",
        "properties": {
          "content-provider-context": {
            "$ref": "#/components/schemas/ContentProviderContext3"
          }
        },
        "example": {
          "content-provider-context": {
            "content-provider-name": "orch-cp-1",
            "profile-vector-name": "{{orch-cp-pv2}}"
          }
        }
      },
      "ContentProviderContext3": {
        "title": "ContentProviderContext3",
        "required": [
          "content-provider-name",
          "profile-vector-name"
        ],
        "type": "object",
        "properties": {
          "content-provider-name": {
            "type": "string"
          },
          "profile-vector-name": {
            "type": "string"
          }
        },
        "example": {
          "content-provider-name": "orch-cp-1",
          "profile-vector-name": "{{orch-cp-pv2}}"
        }
      },
      "ManagedObject-ModifyContentProvider-MergeOperation": {
        "title": "ManagedObject-ModifyContentProvider-MergeOperation",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output108"
          }
        },
        "example": {
          "output": {
            "timestamp": "2021-01-08T16:50:19.456000",
            "status": "modifying",
            "trans-id": "a75c2add-e973-4dfc-b70a-fd5739ffa226",
            "completion-status": "in-progress",
            "content-provider-name": "orch-cp-1"
          }
        }
      },
      "ManagedObject-ModifyContentProviderwithInterfaceNameandReplacewithRequiredParametersRequest": {
        "title": "ManagedObject-ModifyContentProviderwithInterfaceNameandReplacewithRequiredParametersRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input77"
          }
        },
        "example": {
          "input": {
            "content-provider-context": {
              "content-provider-name": "orch-cp-2",
              "multipoint-outer-vlan-id": "1",
              "multipoint-inner-vlan-id": "2",
              "interface-name": "{{orch-cp-interface}}"
            },
            "operation": "replace"
          }
        }
      },
      "Input77": {
        "title": "Input77",
        "required": [
          "content-provider-context",
          "operation"
        ],
        "type": "object",
        "properties": {
          "content-provider-context": {
            "$ref": "#/components/schemas/ContentProviderContext4"
          },
          "operation": {
            "type": "string"
          }
        },
        "example": {
          "content-provider-context": {
            "content-provider-name": "orch-cp-2",
            "multipoint-outer-vlan-id": "1",
            "multipoint-inner-vlan-id": "2",
            "interface-name": "{{orch-cp-interface}}"
          },
          "operation": "replace"
        }
      },
      "ContentProviderContext4": {
        "title": "ContentProviderContext4",
        "required": [
          "content-provider-name",
          "multipoint-outer-vlan-id",
          "multipoint-inner-vlan-id",
          "interface-name"
        ],
        "type": "object",
        "properties": {
          "content-provider-name": {
            "type": "string"
          },
          "multipoint-outer-vlan-id": {
            "type": "string"
          },
          "multipoint-inner-vlan-id": {
            "type": "string"
          },
          "interface-name": {
            "type": "string"
          }
        },
        "example": {
          "content-provider-name": "orch-cp-2",
          "multipoint-outer-vlan-id": "1",
          "multipoint-inner-vlan-id": "2",
          "interface-name": "{{orch-cp-interface}}"
        }
      },
      "ManagedObject-ModifyContentProviderwithInterfaceNameandReplacewithRequiredParameters": {
        "title": "ManagedObject-ModifyContentProviderwithInterfaceNameandReplacewithRequiredParameters",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output108"
          }
        },
        "example": {
          "output": {
            "timestamp": "2021-01-08T17:15:54.221000",
            "status": "modifying",
            "trans-id": "abc15cda-c84c-4f81-aac0-ab9126a5ae7b",
            "completion-status": "in-progress",
            "content-provider-name": "orch-cp-2"
          }
        }
      },
      "ManagedObject-DeleteContentProviderRequest": {
        "title": "ManagedObject-DeleteContentProviderRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input78"
          }
        },
        "example": {
          "input": {
            "content-provider-context": {
              "content-provider-name": "orch-cp-1"
            }
          }
        }
      },
      "Input78": {
        "title": "Input78",
        "required": [
          "content-provider-context"
        ],
        "type": "object",
        "properties": {
          "content-provider-context": {
            "$ref": "#/components/schemas/ContentProviderContext5"
          }
        },
        "example": {
          "content-provider-context": {
            "content-provider-name": "orch-cp-1"
          }
        }
      },
      "ContentProviderContext5": {
        "title": "ContentProviderContext5",
        "required": [
          "content-provider-name"
        ],
        "type": "object",
        "properties": {
          "content-provider-name": {
            "type": "string"
          }
        },
        "example": {
          "content-provider-name": "orch-cp-1"
        }
      },
      "ManagedObject-DeleteContentProvider": {
        "title": "ManagedObject-DeleteContentProvider",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output108"
          }
        },
        "example": {
          "output": {
            "timestamp": "2021-01-08T16:56:15.518000",
            "status": "deleting",
            "trans-id": "e6f26a83-83c9-4b26-8e6b-c95656b6032e",
            "completion-status": "in-progress",
            "content-provider-name": "orch-cp-1"
          }
        }
      },
      "CreateContentProviderRequest": {
        "title": "CreateContentProviderRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input79"
          }
        },
        "example": {
          "input": {
            "content-provider-context": {
              "content-provider-name": "Content-Provider",
              "multipoint-outer-vlan-id": "untagged",
              "multipoint-inner-vlan-id": "none",
              "profile-vector-name": ""
            }
          }
        }
      },
      "Input79": {
        "title": "Input79",
        "required": [
          "content-provider-context"
        ],
        "type": "object",
        "properties": {
          "content-provider-context": {
            "$ref": "#/components/schemas/ContentProviderContext6"
          }
        },
        "example": {
          "content-provider-context": {
            "content-provider-name": "Content-Provider",
            "multipoint-outer-vlan-id": "untagged",
            "multipoint-inner-vlan-id": "none",
            "profile-vector-name": ""
          }
        }
      },
      "ContentProviderContext6": {
        "title": "ContentProviderContext6",
        "required": [
          "content-provider-name",
          "multipoint-outer-vlan-id",
          "multipoint-inner-vlan-id",
          "profile-vector-name"
        ],
        "type": "object",
        "properties": {
          "content-provider-name": {
            "type": "string"
          },
          "multipoint-outer-vlan-id": {
            "type": "string"
          },
          "multipoint-inner-vlan-id": {
            "type": "string"
          },
          "profile-vector-name": {
            "type": "string"
          }
        },
        "example": {
          "content-provider-name": "Content-Provider",
          "multipoint-outer-vlan-id": "untagged",
          "multipoint-inner-vlan-id": "none",
          "profile-vector-name": ""
        }
      },
      "ConfigureContentProvider-Alreadyexists1": {
        "title": "ConfigureContentProvider-Alreadyexists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Content-Provider Content-Provider already exists."
          }
        }
      },
      "ConfigureContentProvider-SuccessUntagged": {
        "title": "ConfigureContentProvider-SuccessUntagged",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output108"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-05T06:31:13.845000",
            "status": "configuring",
            "trans-id": "16bb916f-b4d3-4356-9a97-8852d29ee491",
            "completion-status": "in-progress",
            "content-provider-name": "Content-Provider"
          }
        }
      },
      "ConfigureContentProvider-Incorrectkeymultipoint-outer-vlan-id1": {
        "title": "ConfigureContentProvider-Incorrectkeymultipoint-outer-vlan-id1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Request Input Invalid",
            "error-message": "Expected message of form {\n  content-provider-context : {\n    content-provider-name : <String>\n    multipoint-outer-vlan-id : <Object>\n    multipoint-inner-vlan-id : <Object>\n    Optional<profile-vector-name : <String>>\n  }\n}"
          }
        }
      },
      "ConfigureContentProvider-SuccessTagged": {
        "title": "ConfigureContentProvider-SuccessTagged",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output108"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-05T06:55:44.769000",
            "status": "configuring",
            "trans-id": "45ac7ba8-509b-4216-89a2-9f59c0727e18",
            "completion-status": "in-progress",
            "content-provider-name": "Content-Provider"
          }
        }
      },
      "ConfigureContentProviderRequest": {
        "title": "ConfigureContentProviderRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input80"
          }
        },
        "example": {
          "input": {
            "content-provider-context": {
              "content-provider-name": "Content-Provider",
              "multipoint-outer-vlan-id": "2",
              "multipoint-inner-vlan-id": "3"
            }
          }
        }
      },
      "Input80": {
        "title": "Input80",
        "required": [
          "content-provider-context"
        ],
        "type": "object",
        "properties": {
          "content-provider-context": {
            "$ref": "#/components/schemas/ContentProviderContext7"
          }
        },
        "example": {
          "content-provider-context": {
            "content-provider-name": "Content-Provider",
            "multipoint-outer-vlan-id": "2",
            "multipoint-inner-vlan-id": "3"
          }
        }
      },
      "ContentProviderContext7": {
        "title": "ContentProviderContext7",
        "required": [
          "content-provider-name",
          "multipoint-outer-vlan-id",
          "multipoint-inner-vlan-id"
        ],
        "type": "object",
        "properties": {
          "content-provider-name": {
            "type": "string"
          },
          "multipoint-outer-vlan-id": {
            "type": "string"
          },
          "multipoint-inner-vlan-id": {
            "type": "string"
          }
        },
        "example": {
          "content-provider-name": "Content-Provider",
          "multipoint-outer-vlan-id": "2",
          "multipoint-inner-vlan-id": "3"
        }
      },
      "ConfigureContentProvider-IncorrectContentProviderName1": {
        "title": "ConfigureContentProvider-IncorrectContentProviderName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Content-Provider Invalid Content Provider does not exists."
          }
        }
      },
      "DeployContentProviderRequest": {
        "title": "DeployContentProviderRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input81"
          }
        },
        "example": {
          "input": {
            "content-provider-context": {
              "content-provider-name": "Content-Provider",
              "interface-name": "{{cp-int-name}}"
            }
          }
        }
      },
      "Input81": {
        "title": "Input81",
        "required": [
          "content-provider-context"
        ],
        "type": "object",
        "properties": {
          "content-provider-context": {
            "$ref": "#/components/schemas/ContentProviderContext8"
          }
        },
        "example": {
          "content-provider-context": {
            "content-provider-name": "Content-Provider",
            "interface-name": "{{cp-int-name}}"
          }
        }
      },
      "ContentProviderContext8": {
        "title": "ContentProviderContext8",
        "required": [
          "content-provider-name",
          "interface-name"
        ],
        "type": "object",
        "properties": {
          "content-provider-name": {
            "type": "string"
          },
          "interface-name": {
            "type": "string"
          }
        },
        "example": {
          "content-provider-name": "Content-Provider",
          "interface-name": "{{cp-int-name}}"
        }
      },
      "DeployContentProvider-SuccesswithInterfacename": {
        "title": "DeployContentProvider-SuccesswithInterfacename",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output108"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-05T07:17:19.579000",
            "status": "deploying",
            "trans-id": "b4d386f1-5328-4990-adfc-c25339faddd0",
            "completion-status": "in-progress",
            "content-provider-name": "Content-Provider"
          }
        }
      },
      "DeployContentProvider-AlreadyExists1": {
        "title": "DeployContentProvider-AlreadyExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'deploy' not allowed for Content-Provider with state 'deployed'"
          }
        }
      },
      "DeployContentProvider-SuccesswithBundleName": {
        "title": "DeployContentProvider-SuccesswithBundleName",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output108"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-05T07:22:44.710000",
            "status": "deploying",
            "trans-id": "88ff535d-5a61-4d07-ab33-fc88adcf61ae",
            "completion-status": "in-progress",
            "content-provider-name": "Content-Provider"
          }
        }
      },
      "DeployContentProvider-IncorrectContentProvider1": {
        "title": "DeployContentProvider-IncorrectContentProvider1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Content-Provider Invalid Content Provider does not exists."
          }
        }
      },
      "ActivateContentProviderRequest": {
        "title": "ActivateContentProviderRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input78"
          }
        },
        "example": {
          "input": {
            "content-provider-context": {
              "content-provider-name": "Content-Provider"
            }
          }
        }
      },
      "ActivateContentProvider-AlreadyExists1": {
        "title": "ActivateContentProvider-AlreadyExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'activate' not allowed for Content-Provider with state 'activated'"
          }
        }
      },
      "ActivateContentProvider-IncorrectContentProviderNotExists1": {
        "title": "ActivateContentProvider-IncorrectContentProviderNotExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Content-Provider Invalid Content Provider does not exists."
          }
        }
      },
      "ActivateContentProvider-Success": {
        "title": "ActivateContentProvider-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output108"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-05T07:28:37.353000",
            "status": "activating",
            "trans-id": "8f1487dc-eb2f-48ca-9e57-7fb761c52550",
            "completion-status": "in-progress",
            "content-provider-name": "Content-Provider"
          }
        }
      },
      "GetContentProvider-Success": {
        "title": "GetContentProvider-Success",
        "required": [
          "device-name",
          "state",
          "interface-name",
          "interface-id",
          "multipoint-inner-vlan-id",
          "multipoint-outer-vlan-id",
          "profile-vector-name",
          "content-provider-name"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "interface-name": {
            "type": "string"
          },
          "interface-id": {
            "type": "string"
          },
          "multipoint-inner-vlan-id": {
            "type": "string"
          },
          "multipoint-outer-vlan-id": {
            "type": "string"
          },
          "profile-vector-name": {
            "type": "string"
          },
          "content-provider-name": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "PON-Blade-1",
          "state": "activated",
          "interface-name": "PON-Blade-1-Provider-Interface",
          "interface-id": "1",
          "multipoint-inner-vlan-id": "none",
          "multipoint-outer-vlan-id": "untagged",
          "profile-vector-name": "",
          "content-provider-name": "Content-Provider"
        }
      },
      "GetContentProvider-IncorrectContentProviderNotExists1": {
        "title": "GetContentProvider-IncorrectContentProviderNotExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors24"
          }
        },
        "example": {
          "errors": {
            "error-type": "application",
            "error-message": "'InvalidContentProvider' not found"
          }
        }
      },
      "GETAllContentProviders-Success": {
        "title": "GETAllContentProviders-Success",
        "required": [
          "device-name",
          "state",
          "interface-name",
          "interface-id",
          "multipoint-inner-vlan-id",
          "multipoint-outer-vlan-id",
          "profile-vector-name",
          "content-provider-name"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "interface-name": {
            "type": "string"
          },
          "interface-id": {
            "type": "string"
          },
          "multipoint-inner-vlan-id": {
            "type": "string"
          },
          "multipoint-outer-vlan-id": {
            "type": "string"
          },
          "profile-vector-name": {
            "type": "string"
          },
          "content-provider-name": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "PON-Blade-1",
          "state": "activated",
          "interface-name": "PON-Blade-1-Provider-Interface",
          "interface-id": "1",
          "multipoint-inner-vlan-id": "none",
          "multipoint-outer-vlan-id": "untagged",
          "profile-vector-name": "",
          "content-provider-name": "Content-Provider"
        }
      },
      "DeactivateContentProviderRequest": {
        "title": "DeactivateContentProviderRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input78"
          }
        },
        "example": {
          "input": {
            "content-provider-context": {
              "content-provider-name": "Content-Provider"
            }
          }
        }
      },
      "deactivateContentProvider-Success": {
        "title": "deactivateContentProvider-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output108"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-05T07:35:11.822000",
            "status": "deactivating",
            "trans-id": "14e4c0ba-c2f7-447b-9e0e-4e49ce8ae3e0",
            "completion-status": "in-progress",
            "content-provider-name": "Content-Provider"
          }
        }
      },
      "DeactivateContentProvider-IncorrectContentProvider1": {
        "title": "DeactivateContentProvider-IncorrectContentProvider1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Content-Provider Invalid Content Provider does not exists."
          }
        }
      },
      "deactivateContentProvider-AlreadyExists1": {
        "title": "deactivateContentProvider-AlreadyExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'deactivate' not allowed for Content-Provider with state 'deployed'"
          }
        }
      },
      "UndeployContentProviderRequest": {
        "title": "UndeployContentProviderRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input78"
          }
        },
        "example": {
          "input": {
            "content-provider-context": {
              "content-provider-name": "Content-Provider"
            }
          }
        }
      },
      "undeployContentProvider-AlreadyExists1": {
        "title": "undeployContentProvider-AlreadyExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'undeploy' not allowed for Content-Provider with state 'configured'"
          }
        }
      },
      "UndeployContentProvider-IncorrectContentProviderNotExists1": {
        "title": "UndeployContentProvider-IncorrectContentProviderNotExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Content-Provider Invalid Content Provider does not exists."
          }
        }
      },
      "undeployContentProvider-Success": {
        "title": "undeployContentProvider-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output108"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-05T07:44:18.837000",
            "status": "undeploying",
            "trans-id": "065d4189-9535-432a-8367-2d5ab8e5e15d",
            "completion-status": "in-progress",
            "content-provider-name": "Content-Provider"
          }
        }
      },
      "DeleteContentProviderRequest": {
        "title": "DeleteContentProviderRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input78"
          }
        },
        "example": {
          "input": {
            "content-provider-context": {
              "content-provider-name": "Content-Provider"
            }
          }
        }
      },
      "DeleteContentProvider-Success": {
        "title": "DeleteContentProvider-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output108"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-05T07:50:31.300000",
            "status": "deleting",
            "trans-id": "70ca6691-99a2-4148-9922-5624bbf1a67a",
            "completion-status": "in-progress",
            "content-provider-name": "Content-Provider"
          }
        }
      },
      "DeleteContentProvider-IncorrectContentProvider1": {
        "title": "DeleteContentProvider-IncorrectContentProvider1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Content-Provider Incorrect Content Provider does not exists."
          }
        }
      },
      "DeleteContentProvider-Alreadydeleted1": {
        "title": "DeleteContentProvider-Alreadydeleted1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Content-Provider Content-Provider does not exists."
          }
        }
      },
      "CreateDataCenterRequest": {
        "title": "CreateDataCenterRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input86"
          }
        },
        "example": {
          "input": {
            "data-center-context": {
              "data-center-name": "Data Center",
              "type": "Generic",
              "profile-vector-name": ""
            }
          }
        }
      },
      "Input86": {
        "title": "Input86",
        "required": [
          "data-center-context"
        ],
        "type": "object",
        "properties": {
          "data-center-context": {
            "$ref": "#/components/schemas/DataCenterContext"
          }
        },
        "example": {
          "data-center-context": {
            "data-center-name": "Data Center",
            "type": "Generic",
            "profile-vector-name": ""
          }
        }
      },
      "DataCenterContext": {
        "title": "DataCenterContext",
        "required": [
          "data-center-name",
          "type",
          "profile-vector-name"
        ],
        "type": "object",
        "properties": {
          "data-center-name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "profile-vector-name": {
            "type": "string"
          }
        },
        "example": {
          "data-center-name": "Data Center",
          "type": "Generic",
          "profile-vector-name": ""
        }
      },
      "ConfigureDataCenter-AlreadyExists1": {
        "title": "ConfigureDataCenter-AlreadyExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Data Center Data Centre already exist"
          }
        }
      },
      "ConfigureDataCenter-Success": {
        "title": "ConfigureDataCenter-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output124"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-06T04:33:35.928000",
            "data-center-name": "Data Centre",
            "status": "configuring",
            "trans-id": "81d98315-a323-4504-b065-92b42ab4aaa6",
            "completion-status": "in-progress"
          }
        }
      },
      "Output124": {
        "title": "Output124",
        "required": [
          "timestamp",
          "data-center-name",
          "status",
          "trans-id",
          "completion-status"
        ],
        "type": "object",
        "properties": {
          "timestamp": {
            "type": "string"
          },
          "data-center-name": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "trans-id": {
            "type": "string"
          },
          "completion-status": {
            "type": "string"
          }
        },
        "example": {
          "timestamp": "2020-05-06T04:33:35.928000",
          "data-center-name": "Data Centre",
          "status": "configuring",
          "trans-id": "81d98315-a323-4504-b065-92b42ab4aaa6",
          "completion-status": "in-progress"
        }
      },
      "ConfigureDataCenter-Incorrectattributetype1": {
        "title": "ConfigureDataCenter-Incorrectattributetype1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Request Input Invalid",
            "error-message": "Expected message of form {\n  data-center-context : {\n    data-center-name : <String>\n    type : <String>\n  }\n}"
          }
        }
      },
      "ConfigureDataCenterRequest": {
        "title": "ConfigureDataCenterRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input86"
          }
        },
        "example": {
          "input": {
            "data-center-context": {
              "data-center-name": "Data Center",
              "type": "Type_Change",
              "profile-vector-name": ""
            }
          }
        }
      },
      "ConfigureDataCenter-IncorrectDataCenterNotExists1": {
        "title": "ConfigureDataCenter-IncorrectDataCenterNotExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Data Center Invalid Data Center does not exist"
          }
        }
      },
      "DeployDataCenterRequest": {
        "title": "DeployDataCenterRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input88"
          }
        },
        "example": {
          "input": {
            "data-center-context": {
              "data-center-name": "Data Center",
              "availability": "available"
            }
          }
        }
      },
      "Input88": {
        "title": "Input88",
        "required": [
          "data-center-context"
        ],
        "type": "object",
        "properties": {
          "data-center-context": {
            "$ref": "#/components/schemas/DataCenterContext2"
          }
        },
        "example": {
          "data-center-context": {
            "data-center-name": "Data Center",
            "availability": "available"
          }
        }
      },
      "DataCenterContext2": {
        "title": "DataCenterContext2",
        "required": [
          "data-center-name",
          "availability"
        ],
        "type": "object",
        "properties": {
          "data-center-name": {
            "type": "string"
          },
          "availability": {
            "type": "string"
          }
        },
        "example": {
          "data-center-name": "Data Center",
          "availability": "available"
        }
      },
      "DeployDataCenter-IncorrectDataCenterNotExists1": {
        "title": "DeployDataCenter-IncorrectDataCenterNotExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Validation failed"
          }
        }
      },
      "DeployDataCenter-Alreadydeployed1": {
        "title": "DeployDataCenter-Alreadydeployed1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'deploy' not allowed for Data Center with state 'deployed'"
          }
        }
      },
      "DeployDataCenter-Success": {
        "title": "DeployDataCenter-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output124"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-06T05:00:56.031000",
            "data-center-name": "Data Center",
            "status": "deploying",
            "trans-id": "959c9889-75bb-4dbe-958e-64b932507ae8",
            "completion-status": "in-progress"
          }
        }
      },
      "ActivateDataCenterRequest": {
        "title": "ActivateDataCenterRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input89"
          }
        },
        "example": {
          "input": {
            "data-center-context": {
              "data-center-name": "Data Center"
            }
          }
        }
      },
      "Input89": {
        "title": "Input89",
        "required": [
          "data-center-context"
        ],
        "type": "object",
        "properties": {
          "data-center-context": {
            "$ref": "#/components/schemas/DataCenterContext3"
          }
        },
        "example": {
          "data-center-context": {
            "data-center-name": "Data Center"
          }
        }
      },
      "DataCenterContext3": {
        "title": "DataCenterContext3",
        "required": [
          "data-center-name"
        ],
        "type": "object",
        "properties": {
          "data-center-name": {
            "type": "string"
          }
        },
        "example": {
          "data-center-name": "Data Center"
        }
      },
      "ActivateDataCenter-Success": {
        "title": "ActivateDataCenter-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output124"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-06T05:10:13.574000",
            "data-center-name": "Data Center",
            "status": "activating",
            "trans-id": "89df7767-5b0a-4b25-945d-f34a7456cc43",
            "completion-status": "in-progress"
          }
        }
      },
      "ActivateDataCenter-AlreadyActivated1": {
        "title": "ActivateDataCenter-AlreadyActivated1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'activate' not allowed for Data Center with state 'activated'"
          }
        }
      },
      "ActivateDataCenter-IncorrectDataCenterNotexists1": {
        "title": "ActivateDataCenter-IncorrectDataCenterNotexists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Validation failed"
          }
        }
      },
      "GetDataCenter-Success": {
        "title": "GetDataCenter-Success",
        "required": [
          "state",
          "availability",
          "data-center-name",
          "profile-vector-name",
          "type"
        ],
        "type": "object",
        "properties": {
          "state": {
            "type": "string"
          },
          "availability": {
            "type": "string"
          },
          "data-center-name": {
            "type": "string"
          },
          "profile-vector-name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          }
        },
        "example": {
          "state": "activated",
          "availability": "available",
          "data-center-name": "Data Center",
          "profile-vector-name": "",
          "type": "Generic"
        }
      },
      "GetDataCenter-IncorrectDataCenterNotExists1": {
        "title": "GetDataCenter-IncorrectDataCenterNotExists1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Could not find path List(adtran-cloud-platform-data-centers, data-centers, data-center=Invalid-Data-Center)"
        }
      },
      "GetDataCenter-Success1": {
        "title": "GetDataCenter-Success1",
        "required": [
          "data-center"
        ],
        "type": "object",
        "properties": {
          "data-center": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DataCenter"
            },
            "description": ""
          }
        },
        "example": {
          "data-center": [
            {
              "state": "activated",
              "availability": "available",
              "data-center-name": "Data Center",
              "profile-vector-name": "",
              "type": "Generic"
            }
          ]
        }
      },
      "DataCenter": {
        "title": "DataCenter",
        "required": [
          "state",
          "availability",
          "data-center-name",
          "profile-vector-name",
          "type"
        ],
        "type": "object",
        "properties": {
          "state": {
            "type": "string"
          },
          "availability": {
            "type": "string"
          },
          "data-center-name": {
            "type": "string"
          },
          "profile-vector-name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          }
        },
        "example": {
          "state": "activated",
          "availability": "available",
          "data-center-name": "Data Center",
          "profile-vector-name": "",
          "type": "Generic"
        }
      },
      "GetAllDataCenterTypes": {
        "title": "GetAllDataCenterTypes",
        "required": [
          "type"
        ],
        "type": "object",
        "properties": {
          "type": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Type"
            },
            "description": ""
          }
        },
        "example": {
          "type": [
            {
              "type": "GENERIC"
            }
          ]
        }
      },
      "Type": {
        "title": "Type",
        "required": [
          "type"
        ],
        "type": "object",
        "properties": {
          "type": {
            "type": "string"
          }
        },
        "example": {
          "type": "GENERIC"
        }
      },
      "DeactivateDataCenterRequest": {
        "title": "DeactivateDataCenterRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input89"
          }
        },
        "example": {
          "input": {
            "data-center-context": {
              "data-center-name": "Data Center"
            }
          }
        }
      },
      "DeactivateDataCenter-AlreadyExists1": {
        "title": "DeactivateDataCenter-AlreadyExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'deactivate' not allowed for Data Center with state 'deployed'"
          }
        }
      },
      "DeactivateDataCenter-Success": {
        "title": "DeactivateDataCenter-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output124"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-06T05:15:36.413000",
            "data-center-name": "Data Center",
            "status": "deactivating",
            "trans-id": "b2e59afa-b879-464a-b8de-f78ce5d63712",
            "completion-status": "in-progress"
          }
        }
      },
      "DeactivateDataCenter-IncorrectDataCenterNotExists1": {
        "title": "DeactivateDataCenter-IncorrectDataCenterNotExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Validation failed"
          }
        }
      },
      "UndeployDataCenterRequest": {
        "title": "UndeployDataCenterRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input89"
          }
        },
        "example": {
          "input": {
            "data-center-context": {
              "data-center-name": "Data Center"
            }
          }
        }
      },
      "UndeployDataCenter-Success": {
        "title": "UndeployDataCenter-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output124"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-06T05:24:52.692000",
            "data-center-name": "Data Center",
            "status": "undeploying",
            "trans-id": "c3bcd799-46e7-4f4a-bf31-b7b8f2e3b869",
            "completion-status": "in-progress"
          }
        }
      },
      "UndeployDataCenter-IncorrectDataCenterNotExists1": {
        "title": "UndeployDataCenter-IncorrectDataCenterNotExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Data Center Invalid Data Center not available."
          }
        }
      },
      "UndeployDataCenter-Alreadyundeployed1": {
        "title": "UndeployDataCenter-Alreadyundeployed1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "DataCenter Data Center not in state 'deployed'."
          }
        }
      },
      "DeleteDataCenterRequest": {
        "title": "DeleteDataCenterRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input89"
          }
        },
        "example": {
          "input": {
            "data-center-context": {
              "data-center-name": "Data Center"
            }
          }
        }
      },
      "DeleteDataCenter-IncorrectDataCenterNotExists1": {
        "title": "DeleteDataCenter-IncorrectDataCenterNotExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Data Center Invalid Data Center not available."
          }
        }
      },
      "DeleteDataCenter-AlreadyDeleted1": {
        "title": "DeleteDataCenter-AlreadyDeleted1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Data Center Data Center not available."
          }
        }
      },
      "DeleteDataCenter-Success": {
        "title": "DeleteDataCenter-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output124"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-06T05:27:36.900000",
            "data-center-name": "Data Center",
            "status": "deleting",
            "trans-id": "30e74aaf-fbf7-489b-abe2-9bc09db20fd5",
            "completion-status": "in-progress"
          }
        }
      },
      "ManagedObject-CreateDevice-WithstaticIPV4MDMRequest": {
        "title": "ManagedObject-CreateDevice-WithstaticIPV4MDMRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input93"
          }
        },
        "example": {
          "input": {
            "device-context": {
              "device-name": "SampleDevice-001",
              "model-name": "Generic Device",
              "base-configuration": "",
              "management-domain-context": {
                "management-vlan-outer-tag": 234,
                "management-domain-static-ipv4": {
                  "ip-address": "10.10.10.2",
                  "mask": "255.255.255.252",
                  "gateway": "10.10.10.1"
                }
              },
              "interface-name": "SampleInterface-002"
            }
          }
        }
      },
      "Input93": {
        "title": "Input93",
        "required": [
          "device-context"
        ],
        "type": "object",
        "properties": {
          "device-context": {
            "$ref": "#/components/schemas/DeviceContext"
          }
        },
        "example": {
          "device-context": {
            "device-name": "SampleDevice-001",
            "model-name": "Generic Device",
            "base-configuration": "",
            "management-domain-context": {
              "management-vlan-outer-tag": 234,
              "management-domain-static-ipv4": {
                "ip-address": "10.10.10.2",
                "mask": "255.255.255.252",
                "gateway": "10.10.10.1"
              }
            },
            "interface-name": "SampleInterface-002"
          }
        }
      },
      "DeviceContext": {
        "title": "DeviceContext",
        "required": [
          "device-name",
          "model-name",
          "base-configuration",
          "management-domain-context",
          "interface-name"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "model-name": {
            "type": "string"
          },
          "base-configuration": {
            "type": "string"
          },
          "management-domain-context": {
            "$ref": "#/components/schemas/ManagementDomainContext"
          },
          "interface-name": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "SampleDevice-001",
          "model-name": "Generic Device",
          "base-configuration": "",
          "management-domain-context": {
            "management-vlan-outer-tag": 234,
            "management-domain-static-ipv4": {
              "ip-address": "10.10.10.2",
              "mask": "255.255.255.252",
              "gateway": "10.10.10.1"
            }
          },
          "interface-name": "SampleInterface-002"
        }
      },
      "ManagementDomainContext": {
        "title": "ManagementDomainContext",
        "required": [
          "management-vlan-outer-tag",
          "management-domain-static-ipv4"
        ],
        "type": "object",
        "properties": {
          "management-vlan-outer-tag": {
            "type": "integer",
            "format": "int32"
          },
          "management-domain-static-ipv4": {
            "$ref": "#/components/schemas/ManagementDomainStaticIpv4"
          }
        },
        "example": {
          "management-vlan-outer-tag": 234,
          "management-domain-static-ipv4": {
            "ip-address": "10.10.10.2",
            "mask": "255.255.255.252",
            "gateway": "10.10.10.1"
          }
        }
      },
      "ManagementDomainStaticIpv4": {
        "title": "ManagementDomainStaticIpv4",
        "required": [
          "ip-address",
          "mask",
          "gateway"
        ],
        "type": "object",
        "properties": {
          "ip-address": {
            "type": "string"
          },
          "mask": {
            "type": "string"
          },
          "gateway": {
            "type": "string"
          }
        },
        "example": {
          "ip-address": "10.10.10.2",
          "mask": "255.255.255.252",
          "gateway": "10.10.10.1"
        }
      },
      "ManagedObject-CreateDevice-IncorrectInterfaceNotExists": {
        "title": "ManagedObject-CreateDevice-IncorrectInterfaceNotExists",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Validation failed"
          }
        }
      },
      "ManagedObject-CreateDevice-Devicealreadyexist": {
        "title": "ManagedObject-CreateDevice-Devicealreadyexist",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Device SampleDevice-001 already exists."
          }
        }
      },
      "ManagedObject-CreateDevice-WithMDMasExternalRequest": {
        "title": "ManagedObject-CreateDevice-WithMDMasExternalRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input94"
          }
        },
        "example": {
          "input": {
            "device-context": {
              "device-name": "SampleDevice-002",
              "model-name": "Generic Device",
              "management-domain-context": {
                "management-domain-external": {}
              },
              "interface-name": "SampleInterface-003",
              "profile-vector-name": "{{devices-pv-name}}",
              "credentials-name": "{{devices-cred-name}}",
              "base-configuration": ""
            }
          }
        }
      },
      "Input94": {
        "title": "Input94",
        "required": [
          "device-context"
        ],
        "type": "object",
        "properties": {
          "device-context": {
            "$ref": "#/components/schemas/DeviceContext1"
          }
        },
        "example": {
          "device-context": {
            "device-name": "SampleDevice-002",
            "model-name": "Generic Device",
            "management-domain-context": {
              "management-domain-external": {}
            },
            "interface-name": "SampleInterface-003",
            "profile-vector-name": "{{devices-pv-name}}",
            "credentials-name": "{{devices-cred-name}}",
            "base-configuration": ""
          }
        }
      },
      "DeviceContext1": {
        "title": "DeviceContext1",
        "required": [
          "device-name",
          "model-name",
          "management-domain-context",
          "interface-name",
          "profile-vector-name",
          "credentials-name",
          "base-configuration"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "model-name": {
            "type": "string"
          },
          "management-domain-context": {
            "$ref": "#/components/schemas/ManagementDomainContext1"
          },
          "interface-name": {
            "type": "string"
          },
          "profile-vector-name": {
            "type": "string"
          },
          "credentials-name": {
            "type": "string"
          },
          "base-configuration": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "SampleDevice-002",
          "model-name": "Generic Device",
          "management-domain-context": {
            "management-domain-external": {}
          },
          "interface-name": "SampleInterface-003",
          "profile-vector-name": "{{devices-pv-name}}",
          "credentials-name": "{{devices-cred-name}}",
          "base-configuration": ""
        }
      },
      "ManagementDomainContext1": {
        "title": "ManagementDomainContext1",
        "required": [
          "management-domain-external"
        ],
        "type": "object",
        "properties": {
          "management-domain-external": {
            "type": "object"
          }
        },
        "example": {
          "management-domain-external": {}
        }
      },
      "ManagedObject-CreateDevice-IncorrectModelName": {
        "title": "ManagedObject-CreateDevice-IncorrectModelName",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Model Name xyz not available."
          }
        }
      },
      "ManagedObject-ModifyDevice-UpdateprofilevectorRequest": {
        "title": "ManagedObject-ModifyDevice-UpdateprofilevectorRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input95"
          }
        },
        "example": {
          "input": {
            "device-context": {
              "device-name": "SampleDevice-001",
              "profile-vector-name": "{{devices-pv-name}}"
            }
          }
        }
      },
      "Input95": {
        "title": "Input95",
        "required": [
          "device-context"
        ],
        "type": "object",
        "properties": {
          "device-context": {
            "$ref": "#/components/schemas/DeviceContext2"
          }
        },
        "example": {
          "device-context": {
            "device-name": "SampleDevice-001",
            "profile-vector-name": "{{devices-pv-name}}"
          }
        }
      },
      "DeviceContext2": {
        "title": "DeviceContext2",
        "required": [
          "device-name",
          "profile-vector-name"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "profile-vector-name": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "SampleDevice-001",
          "profile-vector-name": "{{devices-pv-name}}"
        }
      },
      "ManagedObject-ModifyDevice-Devicedoesnotexist": {
        "title": "ManagedObject-ModifyDevice-Devicedoesnotexist",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Device 'SampleDevice-020' does not exist"
          }
        }
      },
      "ManagedObject-ModifyDevice-ReplacewithrequiredparametersRequest": {
        "title": "ManagedObject-ModifyDevice-ReplacewithrequiredparametersRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input96"
          }
        },
        "example": {
          "input": {
            "device-context": {
              "device-name": "SampleDevice-001",
              "model-name": "Generic Device",
              "management-domain-context": {
                "management-vlan-outer-tag": 234,
                "management-domain-static-ipv4": {
                  "ip-address": "10.10.10.2",
                  "mask": "255.255.255.252",
                  "gateway": "10.10.10.1"
                }
              },
              "profile-vector-name": "{{devices-pv-name}}",
              "credentials-name": "{{devices-cred-name}}",
              "interface-name": "SampleInterface-002",
              "base-configuration": ""
            },
            "operation": "replace"
          }
        }
      },
      "Input96": {
        "title": "Input96",
        "required": [
          "device-context",
          "operation"
        ],
        "type": "object",
        "properties": {
          "device-context": {
            "$ref": "#/components/schemas/DeviceContext3"
          },
          "operation": {
            "type": "string"
          }
        },
        "example": {
          "device-context": {
            "device-name": "SampleDevice-001",
            "model-name": "Generic Device",
            "management-domain-context": {
              "management-vlan-outer-tag": 234,
              "management-domain-static-ipv4": {
                "ip-address": "10.10.10.2",
                "mask": "255.255.255.252",
                "gateway": "10.10.10.1"
              }
            },
            "profile-vector-name": "{{devices-pv-name}}",
            "credentials-name": "{{devices-cred-name}}",
            "interface-name": "SampleInterface-002",
            "base-configuration": ""
          },
          "operation": "replace"
        }
      },
      "DeviceContext3": {
        "title": "DeviceContext3",
        "required": [
          "device-name",
          "model-name",
          "management-domain-context",
          "profile-vector-name",
          "credentials-name",
          "interface-name",
          "base-configuration"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "model-name": {
            "type": "string"
          },
          "management-domain-context": {
            "$ref": "#/components/schemas/ManagementDomainContext"
          },
          "profile-vector-name": {
            "type": "string"
          },
          "credentials-name": {
            "type": "string"
          },
          "interface-name": {
            "type": "string"
          },
          "base-configuration": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "SampleDevice-001",
          "model-name": "Generic Device",
          "management-domain-context": {
            "management-vlan-outer-tag": 234,
            "management-domain-static-ipv4": {
              "ip-address": "10.10.10.2",
              "mask": "255.255.255.252",
              "gateway": "10.10.10.1"
            }
          },
          "profile-vector-name": "{{devices-pv-name}}",
          "credentials-name": "{{devices-cred-name}}",
          "interface-name": "SampleInterface-002",
          "base-configuration": ""
        }
      },
      "ManagedObject-ModifyDevice-Replacewithoutrequiredparameters": {
        "title": "ManagedObject-ModifyDevice-Replacewithoutrequiredparameters",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Request Input Invalid",
            "error-message": "interface-name or interface-names are required"
          }
        }
      },
      "ManagedObject-ModifyDevice-UpdateCredentialRequest": {
        "title": "ManagedObject-ModifyDevice-UpdateCredentialRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input97"
          }
        },
        "example": {
          "input": {
            "device-context": {
              "device-name": "SampleDevice-001",
              "credentials-name": "{{mgmt-domain-cred-name}}"
            }
          }
        }
      },
      "Input97": {
        "title": "Input97",
        "required": [
          "device-context"
        ],
        "type": "object",
        "properties": {
          "device-context": {
            "$ref": "#/components/schemas/DeviceContext4"
          }
        },
        "example": {
          "device-context": {
            "device-name": "SampleDevice-001",
            "credentials-name": "{{mgmt-domain-cred-name}}"
          }
        }
      },
      "DeviceContext4": {
        "title": "DeviceContext4",
        "required": [
          "device-name",
          "credentials-name"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "credentials-name": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "SampleDevice-001",
          "credentials-name": "{{mgmt-domain-cred-name}}"
        }
      },
      "ManagedObject-DeleteDeviceRequest": {
        "title": "ManagedObject-DeleteDeviceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input98"
          }
        },
        "example": {
          "input": {
            "device-context": {
              "device-name": "SampleDevice-001"
            }
          }
        }
      },
      "Input98": {
        "title": "Input98",
        "required": [
          "device-context"
        ],
        "type": "object",
        "properties": {
          "device-context": {
            "$ref": "#/components/schemas/DeviceContext5"
          }
        },
        "example": {
          "device-context": {
            "device-name": "SampleDevice-001"
          }
        }
      },
      "DeviceContext5": {
        "title": "DeviceContext5",
        "required": [
          "device-name"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "SampleDevice-001"
        }
      },
      "ManagedObject-DeleteDevice-Devicedoesnotexist": {
        "title": "ManagedObject-DeleteDevice-Devicedoesnotexist",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Device SampleDevice-001 not available."
          }
        }
      },
      "DeployDeviceRequest": {
        "title": "DeployDeviceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input99"
          }
        },
        "example": {
          "input": {
            "device-context": {
              "device-name": "device_1",
              "overridden-profiles": {
                "profile": [
                  {
                    "name": "{{devices-profile-override-name}}",
                    "type": "ancp-profile-type"
                  }
                ]
              },
              "object-parameters": {},
              "interface-name": "{{devices-int-name}}"
            }
          }
        }
      },
      "Input99": {
        "title": "Input99",
        "required": [
          "device-context"
        ],
        "type": "object",
        "properties": {
          "device-context": {
            "$ref": "#/components/schemas/DeviceContext6"
          }
        },
        "example": {
          "device-context": {
            "device-name": "device_1",
            "overridden-profiles": {
              "profile": [
                {
                  "name": "{{devices-profile-override-name}}",
                  "type": "ancp-profile-type"
                }
              ]
            },
            "object-parameters": {},
            "interface-name": "{{devices-int-name}}"
          }
        }
      },
      "DeviceContext6": {
        "title": "DeviceContext6",
        "required": [
          "device-name",
          "overridden-profiles",
          "object-parameters",
          "interface-name"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "overridden-profiles": {
            "$ref": "#/components/schemas/OverriddenProfiles"
          },
          "object-parameters": {
            "type": "object"
          },
          "interface-name": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "device_1",
          "overridden-profiles": {
            "profile": [
              {
                "name": "{{devices-profile-override-name}}",
                "type": "ancp-profile-type"
              }
            ]
          },
          "object-parameters": {},
          "interface-name": "{{devices-int-name}}"
        }
      },
      "OverriddenProfiles": {
        "title": "OverriddenProfiles",
        "required": [
          "profile"
        ],
        "type": "object",
        "properties": {
          "profile": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Profile"
            },
            "description": ""
          }
        },
        "example": {
          "profile": [
            {
              "name": "{{devices-profile-override-name}}",
              "type": "ancp-profile-type"
            }
          ]
        }
      },
      "Profile": {
        "title": "Profile",
        "required": [
          "name",
          "type"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          }
        },
        "example": {
          "name": "{{devices-profile-override-name}}",
          "type": "ancp-profile-type"
        }
      },
      "DeployDevice-DuplicateDeviceName1": {
        "title": "DeployDevice-DuplicateDeviceName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'deploy' not allowed for device_1 with state 'deployed'"
          }
        }
      },
      "DeployDevice-Success": {
        "title": "DeployDevice-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output131"
          }
        },
        "example": {
          "output": {
            "device-name": "device_1",
            "timestamp": "2020-05-04T13:43:58.374000",
            "status": "deploying",
            "trans-id": "1706edad-bf65-4b2a-a9f2-5b80bdfb5ade",
            "completion-status": "in-progress"
          }
        }
      },
      "Output131": {
        "title": "Output131",
        "required": [
          "device-name",
          "timestamp",
          "status",
          "trans-id",
          "completion-status"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "timestamp": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "trans-id": {
            "type": "string"
          },
          "completion-status": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "device_1",
          "timestamp": "2020-05-04T13:43:58.374000",
          "status": "deploying",
          "trans-id": "1706edad-bf65-4b2a-a9f2-5b80bdfb5ade",
          "completion-status": "in-progress"
        }
      },
      "DeployDevice-IncorrectInterfaceNotExists1": {
        "title": "DeployDevice-IncorrectInterfaceNotExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Validation failed"
          }
        }
      },
      "getAlldevicetypes-success": {
        "title": "getAlldevicetypes-success",
        "required": [
          "device-types"
        ],
        "type": "object",
        "properties": {
          "device-types": {
            "$ref": "#/components/schemas/DeviceTypes"
          }
        },
        "example": {
          "device-types": {
            "device-type": [
              {
                "device-type-interface": [
                  {
                    "interface-type-name": "g-fast",
                    "interface-type-id": "g-fast",
                    "ports": {
                      "end": 8,
                      "start": 1
                    },
                    "slots": {
                      "end": 0,
                      "start": 0
                    }
                  },
                  {
                    "interface-type-name": "gigabit-ethernet",
                    "interface-type-id": "gigabit-ethernet",
                    "ports": {
                      "end": 2,
                      "start": 1
                    },
                    "slots": {
                      "end": 0,
                      "start": 0
                    }
                  }
                ],
                "device-type-model": "adtran-devices-dpu5xxg:dpu508g",
                "device-type-tag": [
                  "DPU",
                  "GEN_1"
                ],
                "device-type-name": "508G Gfast DPU",
                "device-type-id": "508G Gfast DPU"
              },
              {
                "device-type-interface": [
                  {
                    "interface-type-name": "g-fast",
                    "interface-type-id": "g-fast",
                    "ports": {
                      "end": 16,
                      "start": 1
                    },
                    "slots": {
                      "end": 0,
                      "start": 0
                    }
                  },
                  {
                    "interface-type-name": "gigabit-ethernet",
                    "interface-type-id": "gigabit-ethernet",
                    "ports": {
                      "end": 2,
                      "start": 1
                    },
                    "slots": {
                      "end": 0,
                      "start": 0
                    }
                  }
                ],
                "device-type-model": "adtran-devices-dpu5xxg:dpu516g",
                "device-type-tag": [
                  "DPU",
                  "GEN_1"
                ],
                "device-type-name": "516G Gfast DPU",
                "device-type-id": "516G Gfast DPU"
              },
              {
                "device-type-interface": [
                  {
                    "interface-type-name": "gigabit-ethernet",
                    "interface-type-id": "gigabit-ethernet",
                    "ports": {
                      "end": 1,
                      "start": 1
                    },
                    "slots": {
                      "end": 0,
                      "start": 0
                    }
                  }
                ],
                "device-type-model": "",
                "device-type-tag": [
                  "CPE"
                ],
                "device-type-name": "Gfast CPE",
                "device-type-id": "Gfast CPE"
              },
              {
                "device-type-interface": [
                  {
                    "interface-type-name": "gigabit-ethernet",
                    "interface-type-id": "gigabit-ethernet",
                    "ports": {
                      "end": 1,
                      "start": 1
                    },
                    "slots": {
                      "end": 0,
                      "start": 0
                    }
                  }
                ],
                "device-type-model": "",
                "device-type-tag": [
                  "CPE"
                ],
                "device-type-name": "Gfast CPE 401G",
                "device-type-id": "Gfast CPE 401G"
              },
              {
                "device-type-interface": [
                  {
                    "interface-type-name": "gigabit-ethernet",
                    "interface-type-id": "gigabit-ethernet",
                    "ports": {
                      "end": 1,
                      "start": 1
                    },
                    "slots": {
                      "end": 0,
                      "start": 0
                    }
                  }
                ],
                "device-type-model": "",
                "device-type-tag": [
                  "CPE"
                ],
                "device-type-name": "Gfast CPE 401GC",
                "device-type-id": "Gfast CPE 401GC"
              },
              {
                "device-type-interface": [
                  {
                    "interface-type-name": "gigabit-ethernet",
                    "interface-type-id": "gigabit-ethernet",
                    "ports": {
                      "end": 1,
                      "start": 1
                    },
                    "slots": {
                      "end": 0,
                      "start": 0
                    }
                  }
                ],
                "device-type-model": "",
                "device-type-tag": [
                  "CPE"
                ],
                "device-type-name": "Gfast CPE 412G",
                "device-type-id": "Gfast CPE 412G"
              },
              {
                "device-type-interface": [
                  {
                    "interface-type-name": "gigabit-ethernet",
                    "interface-type-id": "gigabit-ethernet",
                    "ports": {
                      "end": 1,
                      "start": 1
                    },
                    "slots": {
                      "end": 0,
                      "start": 0
                    }
                  }
                ],
                "device-type-model": "",
                "device-type-tag": [
                  "CPE",
                  "EOC"
                ],
                "device-type-name": "Gfast CPE 422GC",
                "device-type-id": "Gfast CPE 422GC"
              },
              {
                "device-type-interface": [
                  {
                    "interface-type-name": "g-fast",
                    "interface-type-id": "g-fast",
                    "ports": {
                      "end": 4,
                      "start": 1
                    },
                    "slots": {
                      "end": 0,
                      "start": 0
                    }
                  },
                  {
                    "interface-type-name": "gigabit-ethernet",
                    "interface-type-id": "gigabit-ethernet",
                    "ports": {
                      "end": 2,
                      "start": 1
                    },
                    "slots": {
                      "end": 0,
                      "start": 0
                    }
                  }
                ],
                "device-type-model": "adtran-devices-sdx22xx:sdx2221-04",
                "device-type-tag": [
                  "DPU",
                  "GEN_2",
                  "MODEL_1"
                ],
                "device-type-name": "SDX2221-04-TP",
                "device-type-id": "SDX2221-04-TP"
              },
              {
                "device-type-interface": [
                  {
                    "interface-type-name": "g-fast",
                    "interface-type-id": "g-fast",
                    "ports": {
                      "end": 8,
                      "start": 1
                    },
                    "slots": {
                      "end": 0,
                      "start": 0
                    }
                  },
                  {
                    "interface-type-name": "gigabit-ethernet",
                    "interface-type-id": "gigabit-ethernet",
                    "ports": {
                      "end": 2,
                      "start": 1
                    },
                    "slots": {
                      "end": 0,
                      "start": 0
                    }
                  }
                ],
                "device-type-model": "adtran-devices-sdx22xx:sdx2221-08",
                "device-type-tag": [
                  "DPU",
                  "GEN_2",
                  "MODEL_1"
                ],
                "device-type-name": "SDX2221-08-TP",
                "device-type-id": "SDX2221-08-TP"
              },
              {
                "device-type-interface": [
                  {
                    "interface-type-name": "g-fast",
                    "interface-type-id": "g-fast",
                    "ports": {
                      "end": 16,
                      "start": 1
                    },
                    "slots": {
                      "end": 0,
                      "start": 0
                    }
                  },
                  {
                    "interface-type-name": "gigabit-ethernet",
                    "interface-type-id": "gigabit-ethernet",
                    "ports": {
                      "end": 2,
                      "start": 1
                    },
                    "slots": {
                      "end": 0,
                      "start": 0
                    }
                  }
                ],
                "device-type-model": "adtran-devices-sdx22xx:sdx2221-16",
                "device-type-tag": [
                  "DPU",
                  "GEN_2",
                  "MODEL_1"
                ],
                "device-type-name": "SDX2221-16-TP",
                "device-type-id": "SDX2221-16-TP"
              },
              {
                "device-type-interface": [
                  {
                    "interface-type-name": "g-fast",
                    "interface-type-id": "g-fast",
                    "ports": {
                      "end": 24,
                      "start": 1
                    },
                    "slots": {
                      "end": 0,
                      "start": 0
                    }
                  },
                  {
                    "interface-type-name": "gigabit-ethernet",
                    "interface-type-id": "gigabit-ethernet",
                    "ports": {
                      "end": 2,
                      "start": 1
                    },
                    "slots": {
                      "end": 0,
                      "start": 0
                    }
                  }
                ],
                "device-type-model": "adtran-devices-sdx22xx:sdx2221-24",
                "device-type-tag": [
                  "DPU",
                  "GEN_2",
                  "MODEL_1"
                ],
                "device-type-name": "SDX2221-24-TP",
                "device-type-id": "SDX2221-24-TP"
              },
              {
                "device-type-interface": [
                  {
                    "interface-type-name": "g-fast",
                    "interface-type-id": "g-fast",
                    "ports": {
                      "end": 48,
                      "start": 1
                    },
                    "slots": {
                      "end": 0,
                      "start": 0
                    }
                  },
                  {
                    "interface-type-name": "gigabit-ethernet",
                    "interface-type-id": "gigabit-ethernet",
                    "ports": {
                      "end": 2,
                      "start": 1
                    },
                    "slots": {
                      "end": 0,
                      "start": 0
                    }
                  }
                ],
                "device-type-model": "adtran-devices-sdx22xx:sdx2221-48",
                "device-type-tag": [
                  "DPU",
                  "GEN_2",
                  "MODEL_1"
                ],
                "device-type-name": "SDX2221-48-TP",
                "device-type-id": "SDX2221-48-TP"
              },
              {
                "device-type-interface": [
                  {
                    "interface-type-name": "g-fast",
                    "interface-type-id": "g-fast",
                    "ports": {
                      "end": 1,
                      "start": 1
                    },
                    "slots": {
                      "end": 0,
                      "start": 0
                    }
                  },
                  {
                    "interface-type-name": "gigabit-ethernet",
                    "interface-type-id": "gigabit-ethernet",
                    "ports": {
                      "end": 1,
                      "start": 1
                    },
                    "slots": {
                      "end": 0,
                      "start": 0
                    }
                  }
                ],
                "device-type-model": "adtran-devices-sdx22xx:sdx2222-01",
                "device-type-tag": [
                  "DPU",
                  "GEN_2",
                  "MODEL_2"
                ],
                "device-type-name": "SDX2222-01-TP",
                "device-type-id": "SDX2222-01-TP"
              }
            ],
            "schema-version": 1
          }
        }
      },
      "DeviceTypes": {
        "title": "DeviceTypes",
        "required": [
          "device-type",
          "schema-version"
        ],
        "type": "object",
        "properties": {
          "device-type": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DeviceType"
            },
            "description": ""
          },
          "schema-version": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "device-type": [
            {
              "device-type-interface": [
                {
                  "interface-type-name": "g-fast",
                  "interface-type-id": "g-fast",
                  "ports": {
                    "end": 8,
                    "start": 1
                  },
                  "slots": {
                    "end": 0,
                    "start": 0
                  }
                },
                {
                  "interface-type-name": "gigabit-ethernet",
                  "interface-type-id": "gigabit-ethernet",
                  "ports": {
                    "end": 2,
                    "start": 1
                  },
                  "slots": {
                    "end": 0,
                    "start": 0
                  }
                }
              ],
              "device-type-model": "adtran-devices-dpu5xxg:dpu508g",
              "device-type-tag": [
                "DPU",
                "GEN_1"
              ],
              "device-type-name": "508G Gfast DPU",
              "device-type-id": "508G Gfast DPU"
            },
            {
              "device-type-interface": [
                {
                  "interface-type-name": "g-fast",
                  "interface-type-id": "g-fast",
                  "ports": {
                    "end": 16,
                    "start": 1
                  },
                  "slots": {
                    "end": 0,
                    "start": 0
                  }
                },
                {
                  "interface-type-name": "gigabit-ethernet",
                  "interface-type-id": "gigabit-ethernet",
                  "ports": {
                    "end": 2,
                    "start": 1
                  },
                  "slots": {
                    "end": 0,
                    "start": 0
                  }
                }
              ],
              "device-type-model": "adtran-devices-dpu5xxg:dpu516g",
              "device-type-tag": [
                "DPU",
                "GEN_1"
              ],
              "device-type-name": "516G Gfast DPU",
              "device-type-id": "516G Gfast DPU"
            },
            {
              "device-type-interface": [
                {
                  "interface-type-name": "gigabit-ethernet",
                  "interface-type-id": "gigabit-ethernet",
                  "ports": {
                    "end": 1,
                    "start": 1
                  },
                  "slots": {
                    "end": 0,
                    "start": 0
                  }
                }
              ],
              "device-type-model": "",
              "device-type-tag": [
                "CPE"
              ],
              "device-type-name": "Gfast CPE",
              "device-type-id": "Gfast CPE"
            },
            {
              "device-type-interface": [
                {
                  "interface-type-name": "gigabit-ethernet",
                  "interface-type-id": "gigabit-ethernet",
                  "ports": {
                    "end": 1,
                    "start": 1
                  },
                  "slots": {
                    "end": 0,
                    "start": 0
                  }
                }
              ],
              "device-type-model": "",
              "device-type-tag": [
                "CPE"
              ],
              "device-type-name": "Gfast CPE 401G",
              "device-type-id": "Gfast CPE 401G"
            },
            {
              "device-type-interface": [
                {
                  "interface-type-name": "gigabit-ethernet",
                  "interface-type-id": "gigabit-ethernet",
                  "ports": {
                    "end": 1,
                    "start": 1
                  },
                  "slots": {
                    "end": 0,
                    "start": 0
                  }
                }
              ],
              "device-type-model": "",
              "device-type-tag": [
                "CPE"
              ],
              "device-type-name": "Gfast CPE 401GC",
              "device-type-id": "Gfast CPE 401GC"
            },
            {
              "device-type-interface": [
                {
                  "interface-type-name": "gigabit-ethernet",
                  "interface-type-id": "gigabit-ethernet",
                  "ports": {
                    "end": 1,
                    "start": 1
                  },
                  "slots": {
                    "end": 0,
                    "start": 0
                  }
                }
              ],
              "device-type-model": "",
              "device-type-tag": [
                "CPE"
              ],
              "device-type-name": "Gfast CPE 412G",
              "device-type-id": "Gfast CPE 412G"
            },
            {
              "device-type-interface": [
                {
                  "interface-type-name": "gigabit-ethernet",
                  "interface-type-id": "gigabit-ethernet",
                  "ports": {
                    "end": 1,
                    "start": 1
                  },
                  "slots": {
                    "end": 0,
                    "start": 0
                  }
                }
              ],
              "device-type-model": "",
              "device-type-tag": [
                "CPE",
                "EOC"
              ],
              "device-type-name": "Gfast CPE 422GC",
              "device-type-id": "Gfast CPE 422GC"
            },
            {
              "device-type-interface": [
                {
                  "interface-type-name": "g-fast",
                  "interface-type-id": "g-fast",
                  "ports": {
                    "end": 4,
                    "start": 1
                  },
                  "slots": {
                    "end": 0,
                    "start": 0
                  }
                },
                {
                  "interface-type-name": "gigabit-ethernet",
                  "interface-type-id": "gigabit-ethernet",
                  "ports": {
                    "end": 2,
                    "start": 1
                  },
                  "slots": {
                    "end": 0,
                    "start": 0
                  }
                }
              ],
              "device-type-model": "adtran-devices-sdx22xx:sdx2221-04",
              "device-type-tag": [
                "DPU",
                "GEN_2",
                "MODEL_1"
              ],
              "device-type-name": "SDX2221-04-TP",
              "device-type-id": "SDX2221-04-TP"
            },
            {
              "device-type-interface": [
                {
                  "interface-type-name": "g-fast",
                  "interface-type-id": "g-fast",
                  "ports": {
                    "end": 8,
                    "start": 1
                  },
                  "slots": {
                    "end": 0,
                    "start": 0
                  }
                },
                {
                  "interface-type-name": "gigabit-ethernet",
                  "interface-type-id": "gigabit-ethernet",
                  "ports": {
                    "end": 2,
                    "start": 1
                  },
                  "slots": {
                    "end": 0,
                    "start": 0
                  }
                }
              ],
              "device-type-model": "adtran-devices-sdx22xx:sdx2221-08",
              "device-type-tag": [
                "DPU",
                "GEN_2",
                "MODEL_1"
              ],
              "device-type-name": "SDX2221-08-TP",
              "device-type-id": "SDX2221-08-TP"
            },
            {
              "device-type-interface": [
                {
                  "interface-type-name": "g-fast",
                  "interface-type-id": "g-fast",
                  "ports": {
                    "end": 16,
                    "start": 1
                  },
                  "slots": {
                    "end": 0,
                    "start": 0
                  }
                },
                {
                  "interface-type-name": "gigabit-ethernet",
                  "interface-type-id": "gigabit-ethernet",
                  "ports": {
                    "end": 2,
                    "start": 1
                  },
                  "slots": {
                    "end": 0,
                    "start": 0
                  }
                }
              ],
              "device-type-model": "adtran-devices-sdx22xx:sdx2221-16",
              "device-type-tag": [
                "DPU",
                "GEN_2",
                "MODEL_1"
              ],
              "device-type-name": "SDX2221-16-TP",
              "device-type-id": "SDX2221-16-TP"
            },
            {
              "device-type-interface": [
                {
                  "interface-type-name": "g-fast",
                  "interface-type-id": "g-fast",
                  "ports": {
                    "end": 24,
                    "start": 1
                  },
                  "slots": {
                    "end": 0,
                    "start": 0
                  }
                },
                {
                  "interface-type-name": "gigabit-ethernet",
                  "interface-type-id": "gigabit-ethernet",
                  "ports": {
                    "end": 2,
                    "start": 1
                  },
                  "slots": {
                    "end": 0,
                    "start": 0
                  }
                }
              ],
              "device-type-model": "adtran-devices-sdx22xx:sdx2221-24",
              "device-type-tag": [
                "DPU",
                "GEN_2",
                "MODEL_1"
              ],
              "device-type-name": "SDX2221-24-TP",
              "device-type-id": "SDX2221-24-TP"
            },
            {
              "device-type-interface": [
                {
                  "interface-type-name": "g-fast",
                  "interface-type-id": "g-fast",
                  "ports": {
                    "end": 48,
                    "start": 1
                  },
                  "slots": {
                    "end": 0,
                    "start": 0
                  }
                },
                {
                  "interface-type-name": "gigabit-ethernet",
                  "interface-type-id": "gigabit-ethernet",
                  "ports": {
                    "end": 2,
                    "start": 1
                  },
                  "slots": {
                    "end": 0,
                    "start": 0
                  }
                }
              ],
              "device-type-model": "adtran-devices-sdx22xx:sdx2221-48",
              "device-type-tag": [
                "DPU",
                "GEN_2",
                "MODEL_1"
              ],
              "device-type-name": "SDX2221-48-TP",
              "device-type-id": "SDX2221-48-TP"
            },
            {
              "device-type-interface": [
                {
                  "interface-type-name": "g-fast",
                  "interface-type-id": "g-fast",
                  "ports": {
                    "end": 1,
                    "start": 1
                  },
                  "slots": {
                    "end": 0,
                    "start": 0
                  }
                },
                {
                  "interface-type-name": "gigabit-ethernet",
                  "interface-type-id": "gigabit-ethernet",
                  "ports": {
                    "end": 1,
                    "start": 1
                  },
                  "slots": {
                    "end": 0,
                    "start": 0
                  }
                }
              ],
              "device-type-model": "adtran-devices-sdx22xx:sdx2222-01",
              "device-type-tag": [
                "DPU",
                "GEN_2",
                "MODEL_2"
              ],
              "device-type-name": "SDX2222-01-TP",
              "device-type-id": "SDX2222-01-TP"
            }
          ],
          "schema-version": 1
        }
      },
      "DeviceType": {
        "title": "DeviceType",
        "required": [
          "device-type-interface",
          "device-type-model",
          "device-type-tag",
          "device-type-name",
          "device-type-id"
        ],
        "type": "object",
        "properties": {
          "device-type-interface": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DeviceTypeInterface"
            },
            "description": ""
          },
          "device-type-model": {
            "type": "string"
          },
          "device-type-tag": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "device-type-name": {
            "type": "string"
          },
          "device-type-id": {
            "type": "string"
          }
        },
        "example": {
          "device-type-interface": [
            {
              "interface-type-name": "g-fast",
              "interface-type-id": "g-fast",
              "ports": {
                "end": 8,
                "start": 1
              },
              "slots": {
                "end": 0,
                "start": 0
              }
            },
            {
              "interface-type-name": "gigabit-ethernet",
              "interface-type-id": "gigabit-ethernet",
              "ports": {
                "end": 2,
                "start": 1
              },
              "slots": {
                "end": 0,
                "start": 0
              }
            }
          ],
          "device-type-model": "adtran-devices-dpu5xxg:dpu508g",
          "device-type-tag": [
            "DPU",
            "GEN_1"
          ],
          "device-type-name": "508G Gfast DPU",
          "device-type-id": "508G Gfast DPU"
        }
      },
      "DeviceTypeInterface": {
        "title": "DeviceTypeInterface",
        "required": [
          "interface-type-name",
          "interface-type-id",
          "ports",
          "slots"
        ],
        "type": "object",
        "properties": {
          "interface-type-name": {
            "type": "string"
          },
          "interface-type-id": {
            "type": "string"
          },
          "ports": {
            "$ref": "#/components/schemas/Ports"
          },
          "slots": {
            "$ref": "#/components/schemas/Slots"
          }
        },
        "example": {
          "interface-type-name": "g-fast",
          "interface-type-id": "g-fast",
          "ports": {
            "end": 8,
            "start": 1
          },
          "slots": {
            "end": 0,
            "start": 0
          }
        }
      },
      "Ports": {
        "title": "Ports",
        "required": [
          "end",
          "start"
        ],
        "type": "object",
        "properties": {
          "end": {
            "type": "integer",
            "format": "int32"
          },
          "start": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "end": 8,
          "start": 1
        }
      },
      "Slots": {
        "title": "Slots",
        "required": [
          "end",
          "start"
        ],
        "type": "object",
        "properties": {
          "end": {
            "type": "integer",
            "format": "int32"
          },
          "start": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "end": 0,
          "start": 0
        }
      },
      "CreateDeviceRequest": {
        "title": "CreateDeviceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input100"
          }
        },
        "example": {
          "input": {
            "device-context": {
              "device-name": "device_1",
              "model-name": "Generic Device",
              "management-domain-context": {
                "management-domain-static-ipv4": {
                  "ip-address": "10.11.45.4",
                  "mask": "255.255.255.0",
                  "gateway": "255.255.244.255"
                },
                "persistency-server": [
                  "{{devices-srv-name}}"
                ]
              },
              "profile-vector-name": "{{devices-pv-name}}",
              "credentials-name": "{{devices-cred-name}}",
              "base-configuration": ""
            }
          }
        }
      },
      "Input100": {
        "title": "Input100",
        "required": [
          "device-context"
        ],
        "type": "object",
        "properties": {
          "device-context": {
            "$ref": "#/components/schemas/DeviceContext7"
          }
        },
        "example": {
          "device-context": {
            "device-name": "device_1",
            "model-name": "Generic Device",
            "management-domain-context": {
              "management-domain-static-ipv4": {
                "ip-address": "10.11.45.4",
                "mask": "255.255.255.0",
                "gateway": "255.255.244.255"
              },
              "persistency-server": [
                "{{devices-srv-name}}"
              ]
            },
            "profile-vector-name": "{{devices-pv-name}}",
            "credentials-name": "{{devices-cred-name}}",
            "base-configuration": ""
          }
        }
      },
      "DeviceContext7": {
        "title": "DeviceContext7",
        "required": [
          "device-name",
          "model-name",
          "management-domain-context",
          "profile-vector-name",
          "credentials-name",
          "base-configuration"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "model-name": {
            "type": "string"
          },
          "management-domain-context": {
            "$ref": "#/components/schemas/ManagementDomainContext3"
          },
          "profile-vector-name": {
            "type": "string"
          },
          "credentials-name": {
            "type": "string"
          },
          "base-configuration": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "device_1",
          "model-name": "Generic Device",
          "management-domain-context": {
            "management-domain-static-ipv4": {
              "ip-address": "10.11.45.4",
              "mask": "255.255.255.0",
              "gateway": "255.255.244.255"
            },
            "persistency-server": [
              "{{devices-srv-name}}"
            ]
          },
          "profile-vector-name": "{{devices-pv-name}}",
          "credentials-name": "{{devices-cred-name}}",
          "base-configuration": ""
        }
      },
      "ManagementDomainContext3": {
        "title": "ManagementDomainContext3",
        "required": [
          "management-domain-static-ipv4",
          "persistency-server"
        ],
        "type": "object",
        "properties": {
          "management-domain-static-ipv4": {
            "$ref": "#/components/schemas/ManagementDomainStaticIpv4"
          },
          "persistency-server": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "management-domain-static-ipv4": {
            "ip-address": "10.11.45.4",
            "mask": "255.255.255.0",
            "gateway": "255.255.244.255"
          },
          "persistency-server": [
            "{{devices-srv-name}}"
          ]
        }
      },
      "CreateDevice-Success": {
        "title": "CreateDevice-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output131"
          }
        },
        "example": {
          "output": {
            "device-name": "device_1",
            "timestamp": "2020-05-04T13:28:41.975000",
            "status": "configuring",
            "trans-id": "c3a53c40-993b-4967-8c4e-f54fe467fe1e",
            "completion-status": "in-progress"
          }
        }
      },
      "CreateDevice-IncorrectPayload1": {
        "title": "CreateDevice-IncorrectPayload1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Request Input Invalid",
            "error-message": "Expected message of form {\n  device-context : {\n    device-name : <String>\n    model-name : <String>\n    base-configuration : <String>\n    One of [\n      management-domain-name : <String>\n      management-vlan-inner-tag : <Object>\n      management-vlan-outer-tag : <Object>\n      management-domain-context : {\n        One of [\n          management-domain-external : <Object>\n          management-domain-static-ipv4 : {\n            ip-address : <String>\n            mask : <String>\n            gateway : <String>\n          }\n        ]\n      }\n    ]\n  }\n}"
          }
        }
      },
      "CreateDevice-DeviceAlreadyExists1": {
        "title": "CreateDevice-DeviceAlreadyExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Device device_1 already exists."
          }
        }
      },
      "CreateDevice-IncorrectModelName1": {
        "title": "CreateDevice-IncorrectModelName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Request Input Invalid",
            "error-message": "Expected message of form {\n  device-context : {\n    device-name : <String>\n    model-name : <String>\n    base-configuration : <String>\n    One of [\n      management-domain-name : <String>\n      management-vlan-inner-tag : <Object>\n      management-vlan-outer-tag : <Object>\n      management-domain-context : {\n        One of [\n          management-domain-external : <Object>\n          management-domain-static-ipv4 : {\n            ip-address : <String>\n            mask : <String>\n            gateway : <String>\n          }\n        ]\n      }\n    ]\n  }\n}"
          }
        }
      },
      "DeactivateDeviceRequest": {
        "title": "DeactivateDeviceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input98"
          }
        },
        "example": {
          "input": {
            "device-context": {
              "device-name": "device_1"
            }
          }
        }
      },
      "DeactivateDevice-IncorrectDeviceName1": {
        "title": "DeactivateDevice-IncorrectDeviceName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Required resource not available",
            "error-message": "Expected message of form Error resolving profiles: 409 Conflict <Content-Type: application/json> {\"errors\":{\"error-type\":\"rpc\",\"error-tag\":\"Validation of precondition failed\",\"error-message\":\"Device Some(device_2) does not exist.\"}}"
          }
        }
      },
      "DeactivateRequest-Success": {
        "title": "DeactivateRequest-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output131"
          }
        },
        "example": {
          "output": {
            "device-name": "device_1",
            "timestamp": "2020-05-04T13:51:33.585000",
            "status": "deactivating",
            "trans-id": "3d48e7da-e8c3-4822-8aec-8875ad10ecb5",
            "completion-status": "in-progress"
          }
        }
      },
      "GetDevice-Success-DeployedState": {
        "title": "GetDevice-Success-DeployedState",
        "required": [
          "device-name",
          "state",
          "base-configuration",
          "object-parameters",
          "part-number",
          "management-domain-context",
          "metadata",
          "profile-vector-name",
          "model-name",
          "credentials-name"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "base-configuration": {
            "type": "string"
          },
          "object-parameters": {
            "type": "object"
          },
          "part-number": {
            "type": "string"
          },
          "management-domain-context": {
            "$ref": "#/components/schemas/ManagementDomainContext4"
          },
          "metadata": {
            "$ref": "#/components/schemas/Metadata"
          },
          "profile-vector-name": {
            "type": "string"
          },
          "model-name": {
            "type": "string"
          },
          "credentials-name": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "device_1",
          "state": "deployed",
          "base-configuration": "",
          "object-parameters": {},
          "part-number": "GENERIC",
          "management-domain-context": {
            "management-domain-type": "management-domain-static-ipv4",
            "management-vlan-outer-tag": "untagged",
            "management-domain-name": "static-ipv4-device_1",
            "management-vlan-inner-tag": "none",
            "management-domain-static-ipv4": {
              "ip-address": "10.11.45.4",
              "mask": "255.255.255.0",
              "gateway": "255.255.244.255"
            },
            "persistency-server": []
          },
          "metadata": {
            "inventory": {}
          },
          "profile-vector-name": "OLT Config Vector",
          "model-name": "Generic Device",
          "credentials-name": "OLT Cred"
        }
      },
      "ManagementDomainContext4": {
        "title": "ManagementDomainContext4",
        "required": [
          "management-domain-type",
          "management-vlan-outer-tag",
          "management-domain-name",
          "management-vlan-inner-tag",
          "management-domain-static-ipv4",
          "persistency-server"
        ],
        "type": "object",
        "properties": {
          "management-domain-type": {
            "type": "string"
          },
          "management-vlan-outer-tag": {
            "type": "string"
          },
          "management-domain-name": {
            "type": "string"
          },
          "management-vlan-inner-tag": {
            "type": "string"
          },
          "management-domain-static-ipv4": {
            "$ref": "#/components/schemas/ManagementDomainStaticIpv4"
          },
          "persistency-server": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "management-domain-type": "management-domain-static-ipv4",
          "management-vlan-outer-tag": "untagged",
          "management-domain-name": "static-ipv4-device_1",
          "management-vlan-inner-tag": "none",
          "management-domain-static-ipv4": {
            "ip-address": "10.11.45.4",
            "mask": "255.255.255.0",
            "gateway": "255.255.244.255"
          },
          "persistency-server": []
        }
      },
      "Metadata": {
        "title": "Metadata",
        "required": [
          "inventory"
        ],
        "type": "object",
        "properties": {
          "inventory": {
            "type": "object"
          }
        },
        "example": {
          "inventory": {}
        }
      },
      "GetDevice-IncorrectDeviceName1": {
        "title": "GetDevice-IncorrectDeviceName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors24"
          }
        },
        "example": {
          "errors": {
            "error-type": "application",
            "error-message": "'device_11' not found"
          }
        }
      },
      "GetDevice-Success-ConfiguredState": {
        "title": "GetDevice-Success-ConfiguredState",
        "required": [
          "device-name",
          "state",
          "base-configuration",
          "object-parameters",
          "part-number",
          "management-domain-context",
          "metadata",
          "profile-vector-name",
          "model-name",
          "credentials-name"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "base-configuration": {
            "type": "string"
          },
          "object-parameters": {
            "type": "object"
          },
          "part-number": {
            "type": "string"
          },
          "management-domain-context": {
            "$ref": "#/components/schemas/ManagementDomainContext4"
          },
          "metadata": {
            "$ref": "#/components/schemas/Metadata"
          },
          "profile-vector-name": {
            "type": "string"
          },
          "model-name": {
            "type": "string"
          },
          "credentials-name": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "device_1",
          "state": "configured",
          "base-configuration": "",
          "object-parameters": {},
          "part-number": "GENERIC",
          "management-domain-context": {
            "management-domain-type": "management-domain-static-ipv4",
            "management-vlan-outer-tag": "untagged",
            "management-domain-name": "static-ipv4-device_1",
            "management-vlan-inner-tag": "none",
            "management-domain-static-ipv4": {
              "ip-address": "10.11.45.4",
              "mask": "255.255.255.0",
              "gateway": "255.255.244.255"
            },
            "persistency-server": []
          },
          "metadata": {
            "inventory": {}
          },
          "profile-vector-name": "OLT Config Vector",
          "model-name": "Generic Device",
          "credentials-name": "OLT Cred"
        }
      },
      "GetDevice-Success-ConfiguredStatewithIPv6Details": {
        "title": "GetDevice-Success-ConfiguredStatewithIPv6Details",
        "required": [
          "device-name",
          "state",
          "base-configuration",
          "object-parameters",
          "part-number",
          "management-domain-context",
          "metadata",
          "profile-vector-name",
          "model-name",
          "credentials-name"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "base-configuration": {
            "type": "string"
          },
          "object-parameters": {
            "type": "object"
          },
          "part-number": {
            "type": "string"
          },
          "management-domain-context": {
            "$ref": "#/components/schemas/ManagementDomainContext6"
          },
          "metadata": {
            "$ref": "#/components/schemas/Metadata"
          },
          "profile-vector-name": {
            "type": "string"
          },
          "model-name": {
            "type": "string"
          },
          "credentials-name": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "device_1",
          "state": "configured",
          "base-configuration": "",
          "object-parameters": {},
          "part-number": "GENERIC",
          "management-domain-context": {
            "management-domain-type": "management-domain-static-ip",
            "management-vlan-outer-tag": "untagged",
            "management-domain-name": "static-ip-device_1",
            "management-vlan-inner-tag": "none",
            "management-domain-static-ip": {
              "ip-address": "2001:db8:3333:4444:5555:6666:7777:8888"
            },
            "persistency-server": []
          },
          "metadata": {
            "inventory": {}
          },
          "profile-vector-name": "OLT Config Vector",
          "model-name": "Generic Device",
          "credentials-name": "OLT Cred"
        }
      },
      "ManagementDomainContext6": {
        "title": "ManagementDomainContext6",
        "required": [
          "management-domain-type",
          "management-vlan-outer-tag",
          "management-domain-name",
          "management-vlan-inner-tag",
          "management-domain-static-ip",
          "persistency-server"
        ],
        "type": "object",
        "properties": {
          "management-domain-type": {
            "type": "string"
          },
          "management-vlan-outer-tag": {
            "type": "string"
          },
          "management-domain-name": {
            "type": "string"
          },
          "management-vlan-inner-tag": {
            "type": "string"
          },
          "management-domain-static-ip": {
            "$ref": "#/components/schemas/ManagementDomainStaticIp"
          },
          "persistency-server": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "management-domain-type": "management-domain-static-ip",
          "management-vlan-outer-tag": "untagged",
          "management-domain-name": "static-ip-device_1",
          "management-vlan-inner-tag": "none",
          "management-domain-static-ip": {
            "ip-address": "2001:db8:3333:4444:5555:6666:7777:8888"
          },
          "persistency-server": []
        }
      },
      "ManagementDomainStaticIp": {
        "title": "ManagementDomainStaticIp",
        "required": [
          "ip-address"
        ],
        "type": "object",
        "properties": {
          "ip-address": {
            "type": "string"
          }
        },
        "example": {
          "ip-address": "2001:db8:3333:4444:5555:6666:7777:8888"
        }
      },
      "GetDevice-Success-ActivatedState": {
        "title": "GetDevice-Success-ActivatedState",
        "required": [
          "device-name",
          "state",
          "base-configuration",
          "object-parameters",
          "part-number",
          "management-domain-context",
          "metadata",
          "profile-vector-name",
          "model-name",
          "credentials-name"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "base-configuration": {
            "type": "string"
          },
          "object-parameters": {
            "type": "object"
          },
          "part-number": {
            "type": "string"
          },
          "management-domain-context": {
            "$ref": "#/components/schemas/ManagementDomainContext4"
          },
          "metadata": {
            "$ref": "#/components/schemas/Metadata"
          },
          "profile-vector-name": {
            "type": "string"
          },
          "model-name": {
            "type": "string"
          },
          "credentials-name": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "device_1",
          "state": "activated",
          "base-configuration": "",
          "object-parameters": {},
          "part-number": "GENERIC",
          "management-domain-context": {
            "management-domain-type": "management-domain-static-ipv4",
            "management-vlan-outer-tag": "untagged",
            "management-domain-name": "static-ipv4-device_1",
            "management-vlan-inner-tag": "none",
            "management-domain-static-ipv4": {
              "ip-address": "10.11.45.4",
              "mask": "255.255.255.0",
              "gateway": "255.255.244.255"
            },
            "persistency-server": []
          },
          "metadata": {
            "inventory": {}
          },
          "profile-vector-name": "OLT Config Vector",
          "model-name": "Generic Device",
          "credentials-name": "OLT Cred"
        }
      },
      "DataFilterByUrl-Device-GetFilteredDatum": {
        "title": "DataFilterByUrl-Device-GetFilteredDatum",
        "required": [
          "device-name",
          "state",
          "model-name"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "model-name": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "device_test1",
          "state": "configured",
          "model-name": "SDX 6310 16-port 10G OLT"
        }
      },
      "DataFilterByUrl-Device-IncorrectFieldsValue1": {
        "title": "DataFilterByUrl-Device-IncorrectFieldsValue1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors24"
          }
        },
        "example": {
          "errors": {
            "error-type": "application",
            "error-message": "'interface-name' not found"
          }
        }
      },
      "DataFilterByUrl-Device-NoFieldsValue1": {
        "title": "DataFilterByUrl-Device-NoFieldsValue1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors24"
          }
        },
        "example": {
          "errors": {
            "error-type": "application",
            "error-message": "'' not found"
          }
        }
      },
      "ActivateDeviceRequest": {
        "title": "ActivateDeviceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input98"
          }
        },
        "example": {
          "input": {
            "device-context": {
              "device-name": "device_1"
            }
          }
        }
      },
      "ActivateDevice-Success": {
        "title": "ActivateDevice-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output131"
          }
        },
        "example": {
          "output": {
            "device-name": "device_1",
            "timestamp": "2020-05-04T13:49:57.877000",
            "status": "activating",
            "trans-id": "84f872cc-4945-4aeb-98bc-4805abda06c0",
            "completion-status": "in-progress"
          }
        }
      },
      "ActivateDevice-IncorrectDeviceName1": {
        "title": "ActivateDevice-IncorrectDeviceName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Required resource not available",
            "error-message": "Expected message of form Error resolving profiles: 409 Conflict <Content-Type: application/json> {\"errors\":{\"error-type\":\"rpc\",\"error-tag\":\"Validation of precondition failed\",\"error-message\":\"Device Some(device_2) does not exist.\"}}"
          }
        }
      },
      "DeleteDeviceRequest": {
        "title": "DeleteDeviceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input98"
          }
        },
        "example": {
          "input": {
            "device-context": {
              "device-name": "device_1"
            }
          }
        }
      },
      "DeleteDevice-ErrorifDeviceisinDeployedState1": {
        "title": "DeleteDevice-ErrorifDeviceisinDeployedState1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'delete' not allowed for device_1 with state 'deployed'"
          }
        }
      },
      "DeleteDevice-ErrorifDeviceisinActivatedState1": {
        "title": "DeleteDevice-ErrorifDeviceisinActivatedState1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'delete' not allowed for device_1 with state 'activated'"
          }
        }
      },
      "DeleteDevice-Success": {
        "title": "DeleteDevice-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output131"
          }
        },
        "example": {
          "output": {
            "device-name": "device_1",
            "timestamp": "2020-05-04T14:03:38.009000",
            "status": "deleting",
            "trans-id": "fd542335-d1f2-48dd-9de5-8c284e04f235",
            "completion-status": "in-progress"
          }
        }
      },
      "UndeployDeviceRequest": {
        "title": "UndeployDeviceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input98"
          }
        },
        "example": {
          "input": {
            "device-context": {
              "device-name": "device_1"
            }
          }
        }
      },
      "UndeployDevice-IncorrectDeviceName1": {
        "title": "UndeployDevice-IncorrectDeviceName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Device device_2 not available."
          }
        }
      },
      "UndeployDevice-Success": {
        "title": "UndeployDevice-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output131"
          }
        },
        "example": {
          "output": {
            "device-name": "device_1",
            "timestamp": "2020-05-04T13:52:47.025000",
            "status": "undeploying",
            "trans-id": "d3096090-2e1e-4f33-a723-92bc2278a422",
            "completion-status": "in-progress"
          }
        }
      },
      "ForceRemoveDeviceRequest": {
        "title": "ForceRemoveDeviceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input98"
          }
        },
        "example": {
          "input": {
            "device-context": {
              "device-name": "{{devices-extra-dev-name}}"
            }
          }
        }
      },
      "ForceDeleteDevice-Success": {
        "title": "ForceDeleteDevice-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output137"
          }
        },
        "example": {
          "output": {
            "trans-id": "b1524cbb-d054-4d9b-b246-550f67b1f31f",
            "timestamp": "2020-06-26T07:16:24.560000",
            "status": "force-deleting",
            "completion-status": "in-progress"
          }
        }
      },
      "Output137": {
        "title": "Output137",
        "required": [
          "trans-id",
          "timestamp",
          "status",
          "completion-status"
        ],
        "type": "object",
        "properties": {
          "trans-id": {
            "type": "string"
          },
          "timestamp": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "completion-status": {
            "type": "string"
          }
        },
        "example": {
          "trans-id": "b1524cbb-d054-4d9b-b246-550f67b1f31f",
          "timestamp": "2020-06-26T07:16:24.560000",
          "status": "force-deleting",
          "completion-status": "in-progress"
        }
      },
      "ForceDeleteDevice-Failure1": {
        "title": "ForceDeleteDevice-Failure1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Invalid input",
            "error-message": "Expected message of form {\n  One of [\n    service-context : {\n      service-id : <String>\n    }\n    device-context : {\n      device-name : <String>\n    }\n    interface-context : {\n      interface-name : <String>\n    }\n  ]\n}"
          }
        }
      },
      "ForceDeployDeviceRequest": {
        "title": "ForceDeployDeviceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input106"
          }
        },
        "example": {
          "input": {
            "device-context": {
              "device-name": "device_1",
              "overridden-profiles": {
                "profile": [
                  {
                    "name": "{{devices-profile-override-name}}",
                    "type": "ancp-profile-type"
                  }
                ]
              },
              "object-parameters": {},
              "interface-name": "{{devices-int-name}}"
            },
            "force": true
          }
        }
      },
      "Input106": {
        "title": "Input106",
        "required": [
          "device-context",
          "force"
        ],
        "type": "object",
        "properties": {
          "device-context": {
            "$ref": "#/components/schemas/DeviceContext6"
          },
          "force": {
            "type": "boolean"
          }
        },
        "example": {
          "device-context": {
            "device-name": "device_1",
            "overridden-profiles": {
              "profile": [
                {
                  "name": "{{devices-profile-override-name}}",
                  "type": "ancp-profile-type"
                }
              ]
            },
            "object-parameters": {},
            "interface-name": "{{devices-int-name}}"
          },
          "force": true
        }
      },
      "ForceDeploy-InvalidDevice1": {
        "title": "ForceDeploy-InvalidDevice1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Required resource not available",
            "error-message": "Expected message of form Error resolving profiles: 409 Conflict <Content-Type: application/json> {\"errors\":{\"error-type\":\"rpc\",\"error-tag\":\"Validation of precondition failed\",\"error-message\":\"Device Some(invaliddevice) does not exist.\"}}"
          }
        }
      },
      "ForceDeploy-InvalidInterface1": {
        "title": "ForceDeploy-InvalidInterface1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Validation failed"
          }
        }
      },
      "ForceDeploy-Success": {
        "title": "ForceDeploy-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output131"
          }
        },
        "example": {
          "output": {
            "device-name": "device_1",
            "timestamp": "2020-05-06T13:30:04.841000",
            "status": "deploying",
            "trans-id": "56073226-416d-41b3-9ef7-0687875e8fb2",
            "completion-status": "in-progress"
          }
        }
      },
      "GetAllDevices-Success": {
        "title": "GetAllDevices-Success",
        "required": [
          "device-name",
          "state",
          "base-configuration",
          "part-number",
          "management-domain-context",
          "model-name"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "base-configuration": {
            "type": "string"
          },
          "part-number": {
            "type": "string"
          },
          "management-domain-context": {
            "$ref": "#/components/schemas/ManagementDomainContext1"
          },
          "model-name": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "rooted-device",
          "state": "activated",
          "base-configuration": "",
          "part-number": "GENERIC",
          "management-domain-context": {
            "management-domain-external": {}
          },
          "model-name": "Generic Device"
        }
      },
      "ConfigureDeviceRequest": {
        "title": "ConfigureDeviceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input100"
          }
        },
        "example": {
          "input": {
            "device-context": {
              "device-name": "device_1",
              "model-name": "Generic Device",
              "management-domain-context": {
                "management-domain-static-ipv4": {
                  "ip-address": "10.11.45.4",
                  "mask": "255.255.255.0",
                  "gateway": "255.255.244.255"
                },
                "persistency-server": [
                  "{{devices-srv-name}}"
                ]
              },
              "profile-vector-name": "{{devices-pv-name}}",
              "credentials-name": "{{devices-cred-name}}",
              "base-configuration": ""
            }
          }
        }
      },
      "ConfigureDevice-IncorrectDeviceName1": {
        "title": "ConfigureDevice-IncorrectDeviceName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Device Incorrect Device Name not available."
          }
        }
      },
      "ConfigureDevice-Success": {
        "title": "ConfigureDevice-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output131"
          }
        },
        "example": {
          "output": {
            "device-name": "device_1",
            "timestamp": "2020-05-08T19:05:09.207000",
            "status": "configuring",
            "trans-id": "50de36d2-60bb-40f6-98b5-ca71b16b6b63",
            "completion-status": "in-progress"
          }
        }
      },
      "ConfigureDevicewithIPv6orIPv4Request": {
        "title": "ConfigureDevicewithIPv6orIPv4Request",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input108"
          }
        },
        "example": {
          "input": {
            "device-context": {
              "device-name": "ipv6_device",
              "model-name": "Generic Device",
              "management-domain-context": {
                "management-domain-static-ip": {
                  "ip-address": "2001:db8:3333:4444:5555:6666:7777:8888"
                },
                "persistency-server": [
                  "{{devices-srv-name}}"
                ]
              },
              "profile-vector-name": "{{devices-pv-name}}",
              "credentials-name": "{{devices-cred-name}}",
              "base-configuration": ""
            }
          }
        }
      },
      "Input108": {
        "title": "Input108",
        "required": [
          "device-context"
        ],
        "type": "object",
        "properties": {
          "device-context": {
            "$ref": "#/components/schemas/DeviceContext15"
          }
        },
        "example": {
          "device-context": {
            "device-name": "ipv6_device",
            "model-name": "Generic Device",
            "management-domain-context": {
              "management-domain-static-ip": {
                "ip-address": "2001:db8:3333:4444:5555:6666:7777:8888"
              },
              "persistency-server": [
                "{{devices-srv-name}}"
              ]
            },
            "profile-vector-name": "{{devices-pv-name}}",
            "credentials-name": "{{devices-cred-name}}",
            "base-configuration": ""
          }
        }
      },
      "DeviceContext15": {
        "title": "DeviceContext15",
        "required": [
          "device-name",
          "model-name",
          "management-domain-context",
          "profile-vector-name",
          "credentials-name",
          "base-configuration"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "model-name": {
            "type": "string"
          },
          "management-domain-context": {
            "$ref": "#/components/schemas/ManagementDomainContext10"
          },
          "profile-vector-name": {
            "type": "string"
          },
          "credentials-name": {
            "type": "string"
          },
          "base-configuration": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "ipv6_device",
          "model-name": "Generic Device",
          "management-domain-context": {
            "management-domain-static-ip": {
              "ip-address": "2001:db8:3333:4444:5555:6666:7777:8888"
            },
            "persistency-server": [
              "{{devices-srv-name}}"
            ]
          },
          "profile-vector-name": "{{devices-pv-name}}",
          "credentials-name": "{{devices-cred-name}}",
          "base-configuration": ""
        }
      },
      "ManagementDomainContext10": {
        "title": "ManagementDomainContext10",
        "required": [
          "management-domain-static-ip",
          "persistency-server"
        ],
        "type": "object",
        "properties": {
          "management-domain-static-ip": {
            "$ref": "#/components/schemas/ManagementDomainStaticIp"
          },
          "persistency-server": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "management-domain-static-ip": {
            "ip-address": "2001:db8:3333:4444:5555:6666:7777:8888"
          },
          "persistency-server": [
            "{{devices-srv-name}}"
          ]
        }
      },
      "ConfigureDevicewithIPv6Address": {
        "title": "ConfigureDevicewithIPv6Address",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output131"
          }
        },
        "example": {
          "output": {
            "device-name": "device_1",
            "timestamp": "2021-08-13T19:05:09.207000",
            "status": "configuring",
            "trans-id": "50de36d2-60bb-40f6-98b5-ca71b16b6b63",
            "completion-status": "in-progress"
          }
        }
      },
      "ConfigureDevicewithIPv4Address": {
        "title": "ConfigureDevicewithIPv4Address",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output131"
          }
        },
        "example": {
          "output": {
            "device-name": "device_1",
            "timestamp": "2020-08-13T19:05:09.207000",
            "status": "configuring",
            "trans-id": "50de36d2-60bb-40f6-98b5-ca71b16b6b63",
            "completion-status": "in-progress"
          }
        }
      },
      "GetAllCompatibleModelNamesRequest": {
        "title": "GetAllCompatibleModelNamesRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input109"
          }
        },
        "example": {
          "input": {
            "model-name": "DPU"
          }
        }
      },
      "Input109": {
        "title": "Input109",
        "required": [
          "model-name"
        ],
        "type": "object",
        "properties": {
          "model-name": {
            "type": "string"
          }
        },
        "example": {
          "model-name": "DPU"
        }
      },
      "GetAllCompatibleModelNames-Success": {
        "title": "GetAllCompatibleModelNames-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output142"
          }
        },
        "example": {
          "output": {
            "compatible-model-name": []
          }
        }
      },
      "Output142": {
        "title": "Output142",
        "required": [
          "compatible-model-name"
        ],
        "type": "object",
        "properties": {
          "compatible-model-name": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "compatible-model-name": []
        }
      },
      "ManagedObject-CreateInterfacewithprofilevectorRequest": {
        "title": "ManagedObject-CreateInterfacewithprofilevectorRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input110"
          }
        },
        "example": {
          "input": {
            "interface-context": {
              "interface-name": "SampleInterface-002",
              "interface-type": "generic",
              "profile-vector-name": "{{interfaces-pv-name}}",
              "interface-id": "44",
              "device-name": "rooted-device"
            }
          }
        }
      },
      "Input110": {
        "title": "Input110",
        "required": [
          "interface-context"
        ],
        "type": "object",
        "properties": {
          "interface-context": {
            "$ref": "#/components/schemas/InterfaceContext"
          }
        },
        "example": {
          "interface-context": {
            "interface-name": "SampleInterface-002",
            "interface-type": "generic",
            "profile-vector-name": "{{interfaces-pv-name}}",
            "interface-id": "44",
            "device-name": "rooted-device"
          }
        }
      },
      "InterfaceContext": {
        "title": "InterfaceContext",
        "required": [
          "interface-name",
          "interface-type",
          "profile-vector-name",
          "interface-id",
          "device-name"
        ],
        "type": "object",
        "properties": {
          "interface-name": {
            "type": "string"
          },
          "interface-type": {
            "type": "string"
          },
          "profile-vector-name": {
            "type": "string"
          },
          "interface-id": {
            "type": "string"
          },
          "device-name": {
            "type": "string"
          }
        },
        "example": {
          "interface-name": "SampleInterface-002",
          "interface-type": "generic",
          "profile-vector-name": "{{interfaces-pv-name}}",
          "interface-id": "44",
          "device-name": "rooted-device"
        }
      },
      "ManagedObject-CreateInterfacewithlower-layer-interfacesandbundle-nameRequest": {
        "title": "ManagedObject-CreateInterfacewithlower-layer-interfacesandbundle-nameRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input111"
          }
        },
        "example": {
          "input": {
            "interface-context": {
              "interface-name": "SampleInterface-003",
              "interface-type": "generic",
              "interface-id": "45",
              "device-name": "rooted-device",
              "lower-layer-interfaces": [
                "hundred-gigabit-ethernet 0/1"
              ],
              "bundle-name": "{{interfaces-bundle-name}}"
            }
          }
        }
      },
      "Input111": {
        "title": "Input111",
        "required": [
          "interface-context"
        ],
        "type": "object",
        "properties": {
          "interface-context": {
            "$ref": "#/components/schemas/InterfaceContext1"
          }
        },
        "example": {
          "interface-context": {
            "interface-name": "SampleInterface-003",
            "interface-type": "generic",
            "interface-id": "45",
            "device-name": "rooted-device",
            "lower-layer-interfaces": [
              "hundred-gigabit-ethernet 0/1"
            ],
            "bundle-name": "{{interfaces-bundle-name}}"
          }
        }
      },
      "InterfaceContext1": {
        "title": "InterfaceContext1",
        "required": [
          "interface-name",
          "interface-type",
          "interface-id",
          "device-name",
          "lower-layer-interfaces",
          "bundle-name"
        ],
        "type": "object",
        "properties": {
          "interface-name": {
            "type": "string"
          },
          "interface-type": {
            "type": "string"
          },
          "interface-id": {
            "type": "string"
          },
          "device-name": {
            "type": "string"
          },
          "lower-layer-interfaces": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "bundle-name": {
            "type": "string"
          }
        },
        "example": {
          "interface-name": "SampleInterface-003",
          "interface-type": "generic",
          "interface-id": "45",
          "device-name": "rooted-device",
          "lower-layer-interfaces": [
            "hundred-gigabit-ethernet 0/1"
          ],
          "bundle-name": "{{interfaces-bundle-name}}"
        }
      },
      "ManagedObject-CreateInterfacewithallparamsRequest": {
        "title": "ManagedObject-CreateInterfacewithallparamsRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input112"
          }
        },
        "example": {
          "input": {
            "interface-context": {
              "interface-name": "SampleInterface-001",
              "interface-type": "generic",
              "profile-vector-name": "{{interfaces-pv-name}}",
              "interface-id": "43",
              "device-name": "rooted-device",
              "lower-layer-interfaces": [
                "hundred-gigabit-ethernet 0/1"
              ],
              "bundle-name": "{{interfaces-bundle-name}}"
            }
          }
        }
      },
      "Input112": {
        "title": "Input112",
        "required": [
          "interface-context"
        ],
        "type": "object",
        "properties": {
          "interface-context": {
            "$ref": "#/components/schemas/InterfaceContext2"
          }
        },
        "example": {
          "interface-context": {
            "interface-name": "SampleInterface-001",
            "interface-type": "generic",
            "profile-vector-name": "{{interfaces-pv-name}}",
            "interface-id": "43",
            "device-name": "rooted-device",
            "lower-layer-interfaces": [
              "hundred-gigabit-ethernet 0/1"
            ],
            "bundle-name": "{{interfaces-bundle-name}}"
          }
        }
      },
      "InterfaceContext2": {
        "title": "InterfaceContext2",
        "required": [
          "interface-name",
          "interface-type",
          "profile-vector-name",
          "interface-id",
          "device-name",
          "lower-layer-interfaces",
          "bundle-name"
        ],
        "type": "object",
        "properties": {
          "interface-name": {
            "type": "string"
          },
          "interface-type": {
            "type": "string"
          },
          "profile-vector-name": {
            "type": "string"
          },
          "interface-id": {
            "type": "string"
          },
          "device-name": {
            "type": "string"
          },
          "lower-layer-interfaces": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "bundle-name": {
            "type": "string"
          }
        },
        "example": {
          "interface-name": "SampleInterface-001",
          "interface-type": "generic",
          "profile-vector-name": "{{interfaces-pv-name}}",
          "interface-id": "43",
          "device-name": "rooted-device",
          "lower-layer-interfaces": [
            "hundred-gigabit-ethernet 0/1"
          ],
          "bundle-name": "{{interfaces-bundle-name}}"
        }
      },
      "ManagedObject-CreateInterface-IncorrectDeviceName": {
        "title": "ManagedObject-CreateInterface-IncorrectDeviceName",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Device xyz does not exist"
          }
        }
      },
      "ManagedObject-CreateInterface-Interfacealreadyexists": {
        "title": "ManagedObject-CreateInterface-Interfacealreadyexists",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Interface SampleInterface-001 already exist"
          }
        }
      },
      "ManagedObject-CreateInterface-IncorrectInterfaceType": {
        "title": "ManagedObject-CreateInterface-IncorrectInterfaceType",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Unknown failure",
            "error-message": "key not found: xyz"
          }
        }
      },
      "ManagedObject-ModifyInterfaceReplacewithrequiredparametersRequest": {
        "title": "ManagedObject-ModifyInterfaceReplacewithrequiredparametersRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input113"
          }
        },
        "example": {
          "input": {
            "interface-context": {
              "interface-name": "SampleInterface-001",
              "interface-type": "generic",
              "profile-vector-name": "{{single-action-svc-pv-name}}",
              "interface-id": "645",
              "device-name": "rooted-device",
              "bundle-name": "{{interfaces-bundle-name}}"
            },
            "operation": "replace"
          }
        }
      },
      "Input113": {
        "title": "Input113",
        "required": [
          "interface-context",
          "operation"
        ],
        "type": "object",
        "properties": {
          "interface-context": {
            "$ref": "#/components/schemas/InterfaceContext3"
          },
          "operation": {
            "type": "string"
          }
        },
        "example": {
          "interface-context": {
            "interface-name": "SampleInterface-001",
            "interface-type": "generic",
            "profile-vector-name": "{{single-action-svc-pv-name}}",
            "interface-id": "645",
            "device-name": "rooted-device",
            "bundle-name": "{{interfaces-bundle-name}}"
          },
          "operation": "replace"
        }
      },
      "InterfaceContext3": {
        "title": "InterfaceContext3",
        "required": [
          "interface-name",
          "interface-type",
          "profile-vector-name",
          "interface-id",
          "device-name",
          "bundle-name"
        ],
        "type": "object",
        "properties": {
          "interface-name": {
            "type": "string"
          },
          "interface-type": {
            "type": "string"
          },
          "profile-vector-name": {
            "type": "string"
          },
          "interface-id": {
            "type": "string"
          },
          "device-name": {
            "type": "string"
          },
          "bundle-name": {
            "type": "string"
          }
        },
        "example": {
          "interface-name": "SampleInterface-001",
          "interface-type": "generic",
          "profile-vector-name": "{{single-action-svc-pv-name}}",
          "interface-id": "645",
          "device-name": "rooted-device",
          "bundle-name": "{{interfaces-bundle-name}}"
        }
      },
      "ManagedObject-ModifyInterface-Replacewithoutrequiredparameters": {
        "title": "ManagedObject-ModifyInterface-Replacewithoutrequiredparameters",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Request Input Invalid",
            "error-message": "Required create interface parameters(interface-name, device-name, interface-type) missing in payload."
          }
        }
      },
      "ManagedObject-ModifyInterface-UpdateBundlenameRequest": {
        "title": "ManagedObject-ModifyInterface-UpdateBundlenameRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input114"
          }
        },
        "example": {
          "input": {
            "interface-context": {
              "interface-name": "SampleInterface-001",
              "interface-type": "generic",
              "profile-vector-name": "{{interfaces-pv-name}}",
              "interface-id": "7686",
              "device-name": "rooted-device",
              "bundle-name": "{{interfaces-bundle-name}}"
            }
          }
        }
      },
      "Input114": {
        "title": "Input114",
        "required": [
          "interface-context"
        ],
        "type": "object",
        "properties": {
          "interface-context": {
            "$ref": "#/components/schemas/InterfaceContext3"
          }
        },
        "example": {
          "interface-context": {
            "interface-name": "SampleInterface-001",
            "interface-type": "generic",
            "profile-vector-name": "{{interfaces-pv-name}}",
            "interface-id": "7686",
            "device-name": "rooted-device",
            "bundle-name": "{{interfaces-bundle-name}}"
          }
        }
      },
      "ManagedObject-ModifyInterface-Interfacedoesnotexist": {
        "title": "ManagedObject-ModifyInterface-Interfacedoesnotexist",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Interface 'SampleInterface-020' does not exist"
          }
        }
      },
      "ManagedObject-DeleteInterfaceRequest": {
        "title": "ManagedObject-DeleteInterfaceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input115"
          }
        },
        "example": {
          "input": {
            "interface-context": {
              "interface-name": "SampleInterface-001"
            }
          }
        }
      },
      "Input115": {
        "title": "Input115",
        "required": [
          "interface-context"
        ],
        "type": "object",
        "properties": {
          "interface-context": {
            "$ref": "#/components/schemas/InterfaceContext5"
          }
        },
        "example": {
          "interface-context": {
            "interface-name": "SampleInterface-001"
          }
        }
      },
      "InterfaceContext5": {
        "title": "InterfaceContext5",
        "required": [
          "interface-name"
        ],
        "type": "object",
        "properties": {
          "interface-name": {
            "type": "string"
          }
        },
        "example": {
          "interface-name": "SampleInterface-001"
        }
      },
      "ManagedObject-DeleteInterface-Interfacedoesnotexist": {
        "title": "ManagedObject-DeleteInterface-Interfacedoesnotexist",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Interface SampleInterface-001 does not exist"
          }
        }
      },
      "CreateInterfaceRequest": {
        "title": "CreateInterfaceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input116"
          }
        },
        "example": {
          "input": {
            "interface-context": {
              "interface-name": "interface_1",
              "interface-type": "hundred-gigabit-ethernet",
              "profile-vector-name": "{{interfaces-pv-name}}"
            }
          }
        }
      },
      "Input116": {
        "title": "Input116",
        "required": [
          "interface-context"
        ],
        "type": "object",
        "properties": {
          "interface-context": {
            "$ref": "#/components/schemas/InterfaceContext6"
          }
        },
        "example": {
          "interface-context": {
            "interface-name": "interface_1",
            "interface-type": "hundred-gigabit-ethernet",
            "profile-vector-name": "{{interfaces-pv-name}}"
          }
        }
      },
      "InterfaceContext6": {
        "title": "InterfaceContext6",
        "required": [
          "interface-name",
          "interface-type",
          "profile-vector-name"
        ],
        "type": "object",
        "properties": {
          "interface-name": {
            "type": "string"
          },
          "interface-type": {
            "type": "string"
          },
          "profile-vector-name": {
            "type": "string"
          }
        },
        "example": {
          "interface-name": "interface_1",
          "interface-type": "hundred-gigabit-ethernet",
          "profile-vector-name": "{{interfaces-pv-name}}"
        }
      },
      "CreateInterface-NoInterfaceType1": {
        "title": "CreateInterface-NoInterfaceType1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "key not found: "
          }
        }
      },
      "CreateInterface-NoInterfaceName1": {
        "title": "CreateInterface-NoInterfaceName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Concurrent RPC",
            "error-message": "Path must not end with / character"
          }
        }
      },
      "CreateInterface-Success": {
        "title": "CreateInterface-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output143"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-05T08:55:48.173000",
            "interface-name": "interface_1",
            "status": "configuring",
            "trans-id": "816447d1-0a1c-4bfd-9f0b-bc91be8a021b",
            "completion-status": "in-progress"
          }
        }
      },
      "Output143": {
        "title": "Output143",
        "required": [
          "timestamp",
          "interface-name",
          "status",
          "trans-id",
          "completion-status"
        ],
        "type": "object",
        "properties": {
          "timestamp": {
            "type": "string"
          },
          "interface-name": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "trans-id": {
            "type": "string"
          },
          "completion-status": {
            "type": "string"
          }
        },
        "example": {
          "timestamp": "2020-05-05T08:55:48.173000",
          "interface-name": "interface_1",
          "status": "configuring",
          "trans-id": "816447d1-0a1c-4bfd-9f0b-bc91be8a021b",
          "completion-status": "in-progress"
        }
      },
      "CreateInterface-InterfaceAlreadyExists1": {
        "title": "CreateInterface-InterfaceAlreadyExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Interface interface_1 already exist"
          }
        }
      },
      "ConfigureInterfaceRequest": {
        "title": "ConfigureInterfaceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input116"
          }
        },
        "example": {
          "input": {
            "interface-context": {
              "interface-name": "interface_1",
              "interface-type": "hundred-gigabit-ethernet",
              "profile-vector-name": "{{interfaces-pv-name}}"
            }
          }
        }
      },
      "ConfigureInterface-Success": {
        "title": "ConfigureInterface-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output143"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-09T11:16:38.659000",
            "interface-name": "interface_1",
            "status": "configuring",
            "trans-id": "2995b343-dea7-4cf4-9f08-b8700cababaf",
            "completion-status": "in-progress"
          }
        }
      },
      "ConfigureInterface-IncorrectInterfaceName1": {
        "title": "ConfigureInterface-IncorrectInterfaceName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Interface Incorrect Interface Name does not exist"
          }
        }
      },
      "DeployInterfaceRequest": {
        "title": "DeployInterfaceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input118"
          }
        },
        "example": {
          "input": {
            "interface-context": {
              "interface-name": "interface_1",
              "interface-type": "hundred-gigabit-ethernet",
              "overridden-profiles": {
                "profile": [
                  {
                    "name": "{{interfaces-profile-override-name}}",
                    "type": "ethernet-interface-type"
                  }
                ]
              },
              "device-name": "rooted-device",
              "interface-id": "123",
              "lower-layer-interfaces": [
                "hundred-gigabit-ethernet 0/1"
              ],
              "bundle-name": "{{interfaces-bundle-name}}"
            }
          }
        }
      },
      "Input118": {
        "title": "Input118",
        "required": [
          "interface-context"
        ],
        "type": "object",
        "properties": {
          "interface-context": {
            "$ref": "#/components/schemas/InterfaceContext8"
          }
        },
        "example": {
          "interface-context": {
            "interface-name": "interface_1",
            "interface-type": "hundred-gigabit-ethernet",
            "overridden-profiles": {
              "profile": [
                {
                  "name": "{{interfaces-profile-override-name}}",
                  "type": "ethernet-interface-type"
                }
              ]
            },
            "device-name": "rooted-device",
            "interface-id": "123",
            "lower-layer-interfaces": [
              "hundred-gigabit-ethernet 0/1"
            ],
            "bundle-name": "{{interfaces-bundle-name}}"
          }
        }
      },
      "InterfaceContext8": {
        "title": "InterfaceContext8",
        "required": [
          "interface-name",
          "interface-type",
          "overridden-profiles",
          "device-name",
          "interface-id",
          "lower-layer-interfaces",
          "bundle-name"
        ],
        "type": "object",
        "properties": {
          "interface-name": {
            "type": "string"
          },
          "interface-type": {
            "type": "string"
          },
          "overridden-profiles": {
            "$ref": "#/components/schemas/OverriddenProfiles"
          },
          "device-name": {
            "type": "string"
          },
          "interface-id": {
            "type": "string"
          },
          "lower-layer-interfaces": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "bundle-name": {
            "type": "string"
          }
        },
        "example": {
          "interface-name": "interface_1",
          "interface-type": "hundred-gigabit-ethernet",
          "overridden-profiles": {
            "profile": [
              {
                "name": "{{interfaces-profile-override-name}}",
                "type": "ethernet-interface-type"
              }
            ]
          },
          "device-name": "rooted-device",
          "interface-id": "123",
          "lower-layer-interfaces": [
            "hundred-gigabit-ethernet 0/1"
          ],
          "bundle-name": "{{interfaces-bundle-name}}"
        }
      },
      "DeployInterface-NoInterfaceType": {
        "title": "DeployInterface-NoInterfaceType",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output143"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-05T09:21:08.949000",
            "interface-name": "interface_1",
            "status": "deploying",
            "trans-id": "d3032675-2827-448d-a2ca-48b45a635d18",
            "completion-status": "in-progress"
          }
        }
      },
      "DeployInterface-InterfaceAlreadyDeployed1": {
        "title": "DeployInterface-InterfaceAlreadyDeployed1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'deploy' not allowed for interface_1 with state 'deployed'"
          }
        }
      },
      "DeployInterface-Success": {
        "title": "DeployInterface-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output143"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-05T09:25:05.196000",
            "interface-name": "interface_1",
            "status": "deploying",
            "trans-id": "730c0420-5506-48c9-9f38-4661e0c1b385",
            "completion-status": "in-progress"
          }
        }
      },
      "DeployInterface-IncorrectDeviceName1": {
        "title": "DeployInterface-IncorrectDeviceName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Device xyz does not exist"
          }
        }
      },
      "DeployInterface-NoInterfaceName1": {
        "title": "DeployInterface-NoInterfaceName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Concurrent RPC",
            "error-message": "Path must not end with / character"
          }
        }
      },
      "DeployInterface-IncorrectInterfaceType": {
        "title": "DeployInterface-IncorrectInterfaceType",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output143"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-05T09:23:33.080000",
            "interface-name": "interface_1",
            "status": "deploying",
            "trans-id": "47340d09-5503-41c5-916f-1d923fd82fcb",
            "completion-status": "in-progress"
          }
        }
      },
      "DeployInterface-NoDeviceName1": {
        "title": "DeployInterface-NoDeviceName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Device  does not exist"
          }
        }
      },
      "DeployInterface-IncorrectInterfaceName1": {
        "title": "DeployInterface-IncorrectInterfaceName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Required resource not available",
            "error-message": "Expected message of form Error resolving profiles: 409 Conflict <Content-Type: application/json> {\"errors\":{\"error-type\":\"rpc\",\"error-tag\":\"Validation of precondition failed\",\"error-message\":\"Interface Some(xyz) does not exist.\"}}"
          }
        }
      },
      "ForceDeployInterfaceRequest": {
        "title": "ForceDeployInterfaceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input119"
          }
        },
        "example": {
          "input": {
            "interface-context": {
              "interface-name": "interface_1",
              "interface-type": "hundred-gigabit-ethernet",
              "overridden-profiles": {
                "profile": [
                  {
                    "name": "{{interfaces-profile-override-name}}",
                    "type": "ethernet-interface-type"
                  }
                ]
              },
              "device-name": "rooted-device",
              "interface-id": "123",
              "lower-layer-interfaces": [
                "hundred-gigabit-ethernet 0/1"
              ]
            },
            "force": true
          }
        }
      },
      "Input119": {
        "title": "Input119",
        "required": [
          "interface-context",
          "force"
        ],
        "type": "object",
        "properties": {
          "interface-context": {
            "$ref": "#/components/schemas/InterfaceContext9"
          },
          "force": {
            "type": "boolean"
          }
        },
        "example": {
          "interface-context": {
            "interface-name": "interface_1",
            "interface-type": "hundred-gigabit-ethernet",
            "overridden-profiles": {
              "profile": [
                {
                  "name": "{{interfaces-profile-override-name}}",
                  "type": "ethernet-interface-type"
                }
              ]
            },
            "device-name": "rooted-device",
            "interface-id": "123",
            "lower-layer-interfaces": [
              "hundred-gigabit-ethernet 0/1"
            ]
          },
          "force": true
        }
      },
      "InterfaceContext9": {
        "title": "InterfaceContext9",
        "required": [
          "interface-name",
          "interface-type",
          "overridden-profiles",
          "device-name",
          "interface-id",
          "lower-layer-interfaces"
        ],
        "type": "object",
        "properties": {
          "interface-name": {
            "type": "string"
          },
          "interface-type": {
            "type": "string"
          },
          "overridden-profiles": {
            "$ref": "#/components/schemas/OverriddenProfiles"
          },
          "device-name": {
            "type": "string"
          },
          "interface-id": {
            "type": "string"
          },
          "lower-layer-interfaces": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "interface-name": "interface_1",
          "interface-type": "hundred-gigabit-ethernet",
          "overridden-profiles": {
            "profile": [
              {
                "name": "{{interfaces-profile-override-name}}",
                "type": "ethernet-interface-type"
              }
            ]
          },
          "device-name": "rooted-device",
          "interface-id": "123",
          "lower-layer-interfaces": [
            "hundred-gigabit-ethernet 0/1"
          ]
        }
      },
      "ForceDeployInterface-IncorrectDeviceName1": {
        "title": "ForceDeployInterface-IncorrectDeviceName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Required resource not available",
            "error-message": "Expected message of form Error resolving profiles: 409 Conflict <Content-Type: application/json> {\"errors\":{\"error-type\":\"rpc\",\"error-tag\":\"Validation of precondition failed\",\"error-message\":\"Device Some(invaliddevice) does not exist.\"}}"
          }
        }
      },
      "ForceDeployInterface-IncorrectInterfaceName1": {
        "title": "ForceDeployInterface-IncorrectInterfaceName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Required resource not available",
            "error-message": "Expected message of form Error resolving profiles: 409 Conflict <Content-Type: application/json> {\"errors\":{\"error-type\":\"rpc\",\"error-tag\":\"Validation of precondition failed\",\"error-message\":\"Interface Some(Invalid Interface_1) does not exist.\"}}"
          }
        }
      },
      "ForceDeployInterface-Success": {
        "title": "ForceDeployInterface-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output143"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-06T13:41:06.477000",
            "interface-name": "interface_1",
            "status": "deploying",
            "trans-id": "b108b92d-f79f-4fe7-b9ef-b929ff9531dd",
            "completion-status": "in-progress"
          }
        }
      },
      "ActivateInterfaceRequest": {
        "title": "ActivateInterfaceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input115"
          }
        },
        "example": {
          "input": {
            "interface-context": {
              "interface-name": "interface_1"
            }
          }
        }
      },
      "ActivateInterface-IncorrectInterfaceName1": {
        "title": "ActivateInterface-IncorrectInterfaceName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Required resource not available",
            "error-message": "Expected message of form Error resolving profiles: 409 Conflict <Content-Type: application/json> {\"errors\":{\"error-type\":\"rpc\",\"error-tag\":\"Validation of precondition failed\",\"error-message\":\"Interface Some(xyz) does not exist.\"}}"
          }
        }
      },
      "ActivateInterface-InterfaceAlreadyActivated1": {
        "title": "ActivateInterface-InterfaceAlreadyActivated1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'activate' not allowed for interface_1 with state 'activated'"
          }
        }
      },
      "ActivateInterface-NoInterfaceName1": {
        "title": "ActivateInterface-NoInterfaceName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Concurrent RPC",
            "error-message": "Path must not end with / character"
          }
        }
      },
      "ActivateInterface-Success": {
        "title": "ActivateInterface-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output143"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-05T09:31:25.750000",
            "interface-name": "interface_1",
            "status": "activating",
            "trans-id": "370b365f-1689-40a6-872d-ec2673a5bccf",
            "completion-status": "in-progress"
          }
        }
      },
      "GetInterface-IncorrectInterfaceName1": {
        "title": "GetInterface-IncorrectInterfaceName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors24"
          }
        },
        "example": {
          "errors": {
            "error-type": "application",
            "error-message": "'xyz' not found"
          }
        }
      },
      "GetInterface-NoInterfaceName1": {
        "title": "GetInterface-NoInterfaceName1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "All authorization methods failed"
        }
      },
      "GetInterface-Success": {
        "title": "GetInterface-Success",
        "required": [
          "device-name",
          "interface-type",
          "state",
          "interface-name",
          "bundle-name",
          "interface-id",
          "subtended-device-name",
          "lower-layer-interfaces",
          "profile-vector-name",
          "number-of-lower-layer-interfaces"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "interface-type": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "interface-name": {
            "type": "string"
          },
          "bundle-name": {
            "type": "string"
          },
          "interface-id": {
            "type": "string"
          },
          "subtended-device-name": {
            "type": "string"
          },
          "lower-layer-interfaces": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "profile-vector-name": {
            "type": "string"
          },
          "number-of-lower-layer-interfaces": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "device-name": "rooted-device",
          "interface-type": "hundred-gigabit-ethernet",
          "state": "activated",
          "interface-name": "interface_1",
          "bundle-name": "ChannelPartition",
          "interface-id": "123",
          "subtended-device-name": "",
          "lower-layer-interfaces": [
            "hundred-gigabit-ethernet 0/1"
          ],
          "profile-vector-name": "ONU Eth UNI Profile Vector",
          "number-of-lower-layer-interfaces": 0
        }
      },
      "GetAllInterfaces-Success": {
        "title": "GetAllInterfaces-Success",
        "required": [
          "device-name",
          "interface-type",
          "state",
          "interface-name",
          "bundle-name",
          "interface-id",
          "subtended-device-name",
          "lower-layer-interfaces",
          "profile-vector-name",
          "number-of-lower-layer-interfaces"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "interface-type": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "interface-name": {
            "type": "string"
          },
          "bundle-name": {
            "type": "string"
          },
          "interface-id": {
            "type": "string"
          },
          "subtended-device-name": {
            "type": "string"
          },
          "lower-layer-interfaces": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "profile-vector-name": {
            "type": "string"
          },
          "number-of-lower-layer-interfaces": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "device-name": "rooted-device",
          "interface-type": "hundred-gigabit-ethernet",
          "state": "activated",
          "interface-name": "interface_1",
          "bundle-name": "ChannelPartition",
          "interface-id": "123",
          "subtended-device-name": "",
          "lower-layer-interfaces": [
            "hundred-gigabit-ethernet 0/1"
          ],
          "profile-vector-name": "ONU Eth UNI Profile Vector",
          "number-of-lower-layer-interfaces": 0
        }
      },
      "DataFilterByUrl-Interface-IncorrectFieldsValue1": {
        "title": "DataFilterByUrl-Interface-IncorrectFieldsValue1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors24"
          }
        },
        "example": {
          "errors": {
            "error-type": "application",
            "error-message": "'bundle-id' not found"
          }
        }
      },
      "DataFilterByUrl-Interface-GetFilteredDatum": {
        "title": "DataFilterByUrl-Interface-GetFilteredDatum",
        "required": [
          "interface-type",
          "state",
          "interface-name"
        ],
        "type": "object",
        "properties": {
          "interface-type": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "interface-name": {
            "type": "string"
          }
        },
        "example": {
          "interface-type": "hundred-gigabit-ethernet",
          "state": "activated",
          "interface-name": "interface_1"
        }
      },
      "GetAllInterfaceType": {
        "title": "GetAllInterfaceType",
        "required": [
          "interface-type"
        ],
        "type": "object",
        "properties": {
          "interface-type": {
            "type": "string"
          }
        },
        "example": {
          "interface-type": "generic"
        }
      },
      "DeactivateInterfaceRequest": {
        "title": "DeactivateInterfaceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input115"
          }
        },
        "example": {
          "input": {
            "interface-context": {
              "interface-name": "interface_1"
            }
          }
        }
      },
      "DeactivateInterface-NoInterfaceName1": {
        "title": "DeactivateInterface-NoInterfaceName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Concurrent RPC",
            "error-message": "Path must not end with / character"
          }
        }
      },
      "DeactivateInterface-InterfaceAlreadyDeactivated1": {
        "title": "DeactivateInterface-InterfaceAlreadyDeactivated1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'deactivate' not allowed for interface_1 with state 'deployed'"
          }
        }
      },
      "DeactivateInterface-IncorrectInterfaceName1": {
        "title": "DeactivateInterface-IncorrectInterfaceName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Required resource not available",
            "error-message": "Expected message of form Error resolving profiles: 409 Conflict <Content-Type: application/json> {\"errors\":{\"error-type\":\"rpc\",\"error-tag\":\"Validation of precondition failed\",\"error-message\":\"Interface Some(xyz) does not exist.\"}}"
          }
        }
      },
      "DeactivateInterface-Success": {
        "title": "DeactivateInterface-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output143"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-05T09:40:23.044000",
            "interface-name": "interface_1",
            "status": "deactivating",
            "trans-id": "5afeb7ef-0508-4849-972b-7eb2d20caac3",
            "completion-status": "in-progress"
          }
        }
      },
      "UndeployInterfaceRequest": {
        "title": "UndeployInterfaceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input115"
          }
        },
        "example": {
          "input": {
            "interface-context": {
              "interface-name": "interface_1"
            }
          }
        }
      },
      "UndeployInterface-NoInterfaceName1": {
        "title": "UndeployInterface-NoInterfaceName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Concurrent RPC",
            "error-message": "Path must not end with / character"
          }
        }
      },
      "UndeployInterface-Success": {
        "title": "UndeployInterface-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output143"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-05T09:50:07.304000",
            "interface-name": "interface_1",
            "status": "undeploying",
            "trans-id": "f6baaf5b-e8f9-4dfe-9d0f-3601f7af78c3",
            "completion-status": "in-progress"
          }
        }
      },
      "UndeployInterface-InterfaceAlreadyUndeployed1": {
        "title": "UndeployInterface-InterfaceAlreadyUndeployed1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'undeploy' not allowed for interface_1 with state 'configured'"
          }
        }
      },
      "UndeployInterface-IncorrectInterfaceName1": {
        "title": "UndeployInterface-IncorrectInterfaceName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Interface xyz does not exist"
          }
        }
      },
      "DeleteInterfaceRequest": {
        "title": "DeleteInterfaceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input115"
          }
        },
        "example": {
          "input": {
            "interface-context": {
              "interface-name": "interface_1"
            }
          }
        }
      },
      "DeleteInterface-NoInterfaceName1": {
        "title": "DeleteInterface-NoInterfaceName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Concurrent RPC",
            "error-message": "Path must not end with / character"
          }
        }
      },
      "DeleteInterface-Success": {
        "title": "DeleteInterface-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output143"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-05T09:59:10.156000",
            "interface-name": "interface_1",
            "status": "deleting",
            "trans-id": "5436b6ce-7c01-4fd7-af0f-bccf2137d1ba",
            "completion-status": "in-progress"
          }
        }
      },
      "DeleteInterface-InterfaceAlreadyDeleted1": {
        "title": "DeleteInterface-InterfaceAlreadyDeleted1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Interface interface_1 does not exist"
          }
        }
      },
      "DeleteInterface-IncorrectInterfaceName1": {
        "title": "DeleteInterface-IncorrectInterfaceName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Interface xyz does not exist"
          }
        }
      },
      "ForceRemoveInterfaceRequest": {
        "title": "ForceRemoveInterfaceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input115"
          }
        },
        "example": {
          "input": {
            "interface-context": {
              "interface-name": "{{interfaces-extra-int-name}}"
            }
          }
        }
      },
      "ForceDeleteInterface-Success": {
        "title": "ForceDeleteInterface-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output137"
          }
        },
        "example": {
          "output": {
            "trans-id": "cca30bbb-8a5c-4d06-aa94-07d277e404ca",
            "timestamp": "2020-06-26T07:17:35.657000",
            "status": "force-deleting",
            "completion-status": "in-progress"
          }
        }
      },
      "ForceDeleteInterface-Failure1": {
        "title": "ForceDeleteInterface-Failure1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Invalid input",
            "error-message": "Expected message of form {\n  One of [\n    service-context : {\n      service-id : <String>\n    }\n    device-context : {\n      device-name : <String>\n    }\n    interface-context : {\n      interface-name : <String>\n    }\n  ]\n}"
          }
        }
      },
      "OrchcreateinterfaceRequest": {
        "title": "OrchcreateinterfaceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input125"
          }
        },
        "example": {
          "input": {
            "interface-context": {
              "interface-name": "DevInf_{{test_uuid}}",
              "interface-type": "generic",
              "device-name": "rooted-device"
            }
          }
        }
      },
      "Input125": {
        "title": "Input125",
        "required": [
          "interface-context"
        ],
        "type": "object",
        "properties": {
          "interface-context": {
            "$ref": "#/components/schemas/InterfaceContext15"
          }
        },
        "example": {
          "interface-context": {
            "interface-name": "DevInf_{{test_uuid}}",
            "interface-type": "generic",
            "device-name": "rooted-device"
          }
        }
      },
      "InterfaceContext15": {
        "title": "InterfaceContext15",
        "required": [
          "interface-name",
          "interface-type",
          "device-name"
        ],
        "type": "object",
        "properties": {
          "interface-name": {
            "type": "string"
          },
          "interface-type": {
            "type": "string"
          },
          "device-name": {
            "type": "string"
          }
        },
        "example": {
          "interface-name": "DevInf_{{test_uuid}}",
          "interface-type": "generic",
          "device-name": "rooted-device"
        }
      },
      "Orchcreateinterface": {
        "title": "Orchcreateinterface",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output143"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-09-08T16:30:12.477000",
            "interface-name": "DevInf_b588cdd0-154d-49d3-8eb4-40ea1b722637-September8th2020959pm",
            "status": "creating",
            "trans-id": "30b61fd2-380e-434e-971d-f2094ae68d8a",
            "completion-status": "in-progress"
          }
        }
      },
      "OrchcreatedeviceRequest": {
        "title": "OrchcreatedeviceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input126"
          }
        },
        "example": {
          "input": {
            "device-context": {
              "device-name": "orchdev_{{test_uuid}}",
              "model-name": "Generic Device",
              "management-domain-context": {
                "management-domain-external": {}
              },
              "base-configuration": "",
              "interface-name": "DevInf_{{test_uuid}}"
            }
          }
        }
      },
      "Input126": {
        "title": "Input126",
        "required": [
          "device-context"
        ],
        "type": "object",
        "properties": {
          "device-context": {
            "$ref": "#/components/schemas/DeviceContext16"
          }
        },
        "example": {
          "device-context": {
            "device-name": "orchdev_{{test_uuid}}",
            "model-name": "Generic Device",
            "management-domain-context": {
              "management-domain-external": {}
            },
            "base-configuration": "",
            "interface-name": "DevInf_{{test_uuid}}"
          }
        }
      },
      "DeviceContext16": {
        "title": "DeviceContext16",
        "required": [
          "device-name",
          "model-name",
          "management-domain-context",
          "base-configuration",
          "interface-name"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "model-name": {
            "type": "string"
          },
          "management-domain-context": {
            "$ref": "#/components/schemas/ManagementDomainContext1"
          },
          "base-configuration": {
            "type": "string"
          },
          "interface-name": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "orchdev_{{test_uuid}}",
          "model-name": "Generic Device",
          "management-domain-context": {
            "management-domain-external": {}
          },
          "base-configuration": "",
          "interface-name": "DevInf_{{test_uuid}}"
        }
      },
      "Orchcreatedevice": {
        "title": "Orchcreatedevice",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output131"
          }
        },
        "example": {
          "output": {
            "device-name": "orchdev_b4ea84de-5f8d-4b91-9110-b54ed3727c00-September8th20201018pm",
            "timestamp": "2020-09-08T16:49:58.002000",
            "status": "creating",
            "trans-id": "beba756c-d466-4d93-a6d8-762fb6633cd3",
            "completion-status": "in-progress"
          }
        }
      },
      "QueryInterface": {
        "title": "QueryInterface",
        "required": [
          "subtended-device-names",
          "device-name",
          "interface-type",
          "state",
          "interface-name",
          "interface-id",
          "lower-layer-interfaces",
          "profile-vector-name",
          "number-of-lower-layer-interfaces"
        ],
        "type": "object",
        "properties": {
          "subtended-device-names": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "device-name": {
            "type": "string"
          },
          "interface-type": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "interface-name": {
            "type": "string"
          },
          "interface-id": {
            "type": "string"
          },
          "lower-layer-interfaces": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "profile-vector-name": {
            "type": "string"
          },
          "number-of-lower-layer-interfaces": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "subtended-device-names": [
            "orchdev_d33ba51d-5e37-4dff-af10-077d137e00c8"
          ],
          "device-name": "rooted-device",
          "interface-type": "generic",
          "state": "deployed",
          "interface-name": "DevInf_d33ba51d-5e37-4dff-af10-077d137e00c8",
          "interface-id": "",
          "lower-layer-interfaces": [],
          "profile-vector-name": "",
          "number-of-lower-layer-interfaces": 0
        }
      },
      "QueryInterfaceInspect": {
        "title": "QueryInterfaceInspect",
        "required": [
          "attached-gadgets",
          "statistics"
        ],
        "type": "object",
        "properties": {
          "attached-gadgets": {
            "$ref": "#/components/schemas/AttachedGadgets"
          },
          "statistics": {
            "$ref": "#/components/schemas/Statistics"
          }
        },
        "example": {
          "attached-gadgets": {
            "gadgets-online": true,
            "gadgets": [
              "copter",
              "cuffs"
            ]
          },
          "statistics": {
            "in-broadcast-frames": "0",
            "out-multicast-frames": "0",
            "in-frames": "300",
            "out-errors": "0",
            "out-frames": "300",
            "in-discards": "0",
            "out-octets": "500",
            "in-error-undersize-frames": "0",
            "out-broadcast-frames": "1",
            "in-error-oversize-frames": "0",
            "in-multicast-frames": "0",
            "out-discards": "0",
            "in-error-fcs-frames": "0",
            "in-errors": "0",
            "in-octets": "500"
          }
        }
      },
      "AttachedGadgets": {
        "title": "AttachedGadgets",
        "required": [
          "gadgets-online",
          "gadgets"
        ],
        "type": "object",
        "properties": {
          "gadgets-online": {
            "type": "boolean"
          },
          "gadgets": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "gadgets-online": true,
          "gadgets": [
            "copter",
            "cuffs"
          ]
        }
      },
      "Statistics": {
        "title": "Statistics",
        "required": [
          "in-broadcast-frames",
          "out-multicast-frames",
          "in-frames",
          "out-errors",
          "out-frames",
          "in-discards",
          "out-octets",
          "in-error-undersize-frames",
          "out-broadcast-frames",
          "in-error-oversize-frames",
          "in-multicast-frames",
          "out-discards",
          "in-error-fcs-frames",
          "in-errors",
          "in-octets"
        ],
        "type": "object",
        "properties": {
          "in-broadcast-frames": {
            "type": "string"
          },
          "out-multicast-frames": {
            "type": "string"
          },
          "in-frames": {
            "type": "string"
          },
          "out-errors": {
            "type": "string"
          },
          "out-frames": {
            "type": "string"
          },
          "in-discards": {
            "type": "string"
          },
          "out-octets": {
            "type": "string"
          },
          "in-error-undersize-frames": {
            "type": "string"
          },
          "out-broadcast-frames": {
            "type": "string"
          },
          "in-error-oversize-frames": {
            "type": "string"
          },
          "in-multicast-frames": {
            "type": "string"
          },
          "out-discards": {
            "type": "string"
          },
          "in-error-fcs-frames": {
            "type": "string"
          },
          "in-errors": {
            "type": "string"
          },
          "in-octets": {
            "type": "string"
          }
        },
        "example": {
          "in-broadcast-frames": "0",
          "out-multicast-frames": "0",
          "in-frames": "300",
          "out-errors": "0",
          "out-frames": "300",
          "in-discards": "0",
          "out-octets": "500",
          "in-error-undersize-frames": "0",
          "out-broadcast-frames": "1",
          "in-error-oversize-frames": "0",
          "in-multicast-frames": "0",
          "out-discards": "0",
          "in-error-fcs-frames": "0",
          "in-errors": "0",
          "in-octets": "500"
        }
      },
      "QueryInterfaceInspect1": {
        "title": "QueryInterfaceInspect1",
        "required": [
          "attached-gadgets",
          "statistics"
        ],
        "type": "object",
        "properties": {
          "attached-gadgets": {
            "type": "object"
          },
          "statistics": {
            "type": "object"
          }
        },
        "example": {
          "attached-gadgets": {},
          "statistics": {}
        }
      },
      "QueryInterfaceInspectattached-gadgets": {
        "title": "QueryInterfaceInspectattached-gadgets",
        "required": [
          "gadgets-online",
          "gadgets"
        ],
        "type": "object",
        "properties": {
          "gadgets-online": {
            "type": "boolean"
          },
          "gadgets": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "gadgets-online": true,
          "gadgets": [
            "copter",
            "cuffs"
          ]
        }
      },
      "QueryDevice": {
        "title": "QueryDevice",
        "required": [
          "device-name",
          "state",
          "management-domain",
          "base-configuration",
          "part-number",
          "metadata",
          "profile-vector-name",
          "model-name"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "management-domain": {
            "type": "string"
          },
          "base-configuration": {
            "type": "string"
          },
          "part-number": {
            "type": "string"
          },
          "metadata": {
            "$ref": "#/components/schemas/Metadata4"
          },
          "profile-vector-name": {
            "type": "string"
          },
          "model-name": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "orchdev_d33ba51d-5e37-4dff-af10-077d137e00c8",
          "state": "deployed",
          "management-domain": "",
          "base-configuration": "",
          "part-number": "GENERIC",
          "metadata": {
            "event-config": {
              "event": []
            }
          },
          "profile-vector-name": "",
          "model-name": "Generic Device"
        }
      },
      "Metadata4": {
        "title": "Metadata4",
        "required": [
          "event-config"
        ],
        "type": "object",
        "properties": {
          "event-config": {
            "$ref": "#/components/schemas/EventConfig"
          }
        },
        "example": {
          "event-config": {
            "event": []
          }
        }
      },
      "EventConfig": {
        "title": "EventConfig",
        "required": [
          "event"
        ],
        "type": "object",
        "properties": {
          "event": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "event": []
        }
      },
      "QueryDeviceInspect": {
        "title": "QueryDeviceInspect",
        "required": [
          "gadget-info",
          "gadget-usage",
          "status"
        ],
        "type": "object",
        "properties": {
          "gadget-info": {
            "$ref": "#/components/schemas/GadgetInfo"
          },
          "gadget-usage": {
            "$ref": "#/components/schemas/GadgetUsage"
          },
          "status": {
            "$ref": "#/components/schemas/Status"
          }
        },
        "example": {
          "gadget-info": {
            "gadget-type": "copter",
            "max-speed": 30,
            "max-altitude": 10,
            "nested-usage": [
              {
                "interval": 0,
                "deployed-count": 1,
                "error-count": 1
              },
              {
                "interval": 1,
                "deployed-count": 3,
                "error-count": 2
              },
              {
                "interval": 2,
                "deployed-count": 5,
                "error-count": 3
              },
              {
                "interval": 3,
                "deployed-count": 7,
                "error-count": 4
              },
              {
                "interval": 4,
                "deployed-count": 9,
                "error-count": 5
              }
            ]
          },
          "gadget-usage": {
            "historic": [
              {
                "day": 1,
                "deployed-count": 3,
                "error-count": 2
              },
              {
                "day": 2,
                "deployed-count": 5,
                "error-count": 3
              },
              {
                "day": 3,
                "deployed-count": 7,
                "error-count": 4
              },
              {
                "day": 4,
                "deployed-count": 9,
                "error-count": 5
              },
              {
                "day": 5,
                "deployed-count": 11,
                "error-count": 6
              },
              {
                "day": 6,
                "deployed-count": 13,
                "error-count": 7
              },
              {
                "day": 7,
                "deployed-count": 15,
                "error-count": 8
              }
            ],
            "current": {
              "deployed-count": 5,
              "error-count": 0
            }
          },
          "status": {
            "online": true
          }
        }
      },
      "GadgetInfo": {
        "title": "GadgetInfo",
        "required": [
          "gadget-type",
          "max-speed",
          "max-altitude",
          "nested-usage"
        ],
        "type": "object",
        "properties": {
          "gadget-type": {
            "type": "string"
          },
          "max-speed": {
            "type": "integer",
            "format": "int32"
          },
          "max-altitude": {
            "type": "integer",
            "format": "int32"
          },
          "nested-usage": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/NestedUsage"
            },
            "description": ""
          }
        },
        "example": {
          "gadget-type": "copter",
          "max-speed": 30,
          "max-altitude": 10,
          "nested-usage": [
            {
              "interval": 0,
              "deployed-count": 1,
              "error-count": 1
            },
            {
              "interval": 1,
              "deployed-count": 3,
              "error-count": 2
            },
            {
              "interval": 2,
              "deployed-count": 5,
              "error-count": 3
            },
            {
              "interval": 3,
              "deployed-count": 7,
              "error-count": 4
            },
            {
              "interval": 4,
              "deployed-count": 9,
              "error-count": 5
            }
          ]
        }
      },
      "NestedUsage": {
        "title": "NestedUsage",
        "required": [
          "interval",
          "deployed-count",
          "error-count"
        ],
        "type": "object",
        "properties": {
          "interval": {
            "type": "integer",
            "format": "int32"
          },
          "deployed-count": {
            "type": "integer",
            "format": "int32"
          },
          "error-count": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "interval": 0,
          "deployed-count": 1,
          "error-count": 1
        }
      },
      "GadgetUsage": {
        "title": "GadgetUsage",
        "required": [
          "historic",
          "current"
        ],
        "type": "object",
        "properties": {
          "historic": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Historic"
            },
            "description": ""
          },
          "current": {
            "$ref": "#/components/schemas/Current"
          }
        },
        "example": {
          "historic": [
            {
              "day": 1,
              "deployed-count": 3,
              "error-count": 2
            },
            {
              "day": 2,
              "deployed-count": 5,
              "error-count": 3
            },
            {
              "day": 3,
              "deployed-count": 7,
              "error-count": 4
            },
            {
              "day": 4,
              "deployed-count": 9,
              "error-count": 5
            },
            {
              "day": 5,
              "deployed-count": 11,
              "error-count": 6
            },
            {
              "day": 6,
              "deployed-count": 13,
              "error-count": 7
            },
            {
              "day": 7,
              "deployed-count": 15,
              "error-count": 8
            }
          ],
          "current": {
            "deployed-count": 5,
            "error-count": 0
          }
        }
      },
      "Historic": {
        "title": "Historic",
        "required": [
          "day",
          "deployed-count",
          "error-count"
        ],
        "type": "object",
        "properties": {
          "day": {
            "type": "integer",
            "format": "int32"
          },
          "deployed-count": {
            "type": "integer",
            "format": "int32"
          },
          "error-count": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "day": 1,
          "deployed-count": 3,
          "error-count": 2
        }
      },
      "Current": {
        "title": "Current",
        "required": [
          "deployed-count",
          "error-count"
        ],
        "type": "object",
        "properties": {
          "deployed-count": {
            "type": "integer",
            "format": "int32"
          },
          "error-count": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "deployed-count": 5,
          "error-count": 0
        }
      },
      "Status": {
        "title": "Status",
        "required": [
          "online"
        ],
        "type": "object",
        "properties": {
          "online": {
            "type": "boolean"
          }
        },
        "example": {
          "online": true
        }
      },
      "QueryDeviceInspect1": {
        "title": "QueryDeviceInspect1",
        "required": [
          "gadget-info",
          "gadget-usage",
          "status"
        ],
        "type": "object",
        "properties": {
          "gadget-info": {
            "$ref": "#/components/schemas/GadgetInfo1"
          },
          "gadget-usage": {
            "$ref": "#/components/schemas/GadgetUsage1"
          },
          "status": {
            "$ref": "#/components/schemas/Status"
          }
        },
        "example": {
          "gadget-info": {
            "gadget-type": "copter",
            "max-speed": 30,
            "max-altitude": 10,
            "nested-usage": []
          },
          "gadget-usage": {
            "historic": [],
            "current": {}
          },
          "status": {
            "online": true
          }
        }
      },
      "GadgetInfo1": {
        "title": "GadgetInfo1",
        "required": [
          "gadget-type",
          "max-speed",
          "max-altitude",
          "nested-usage"
        ],
        "type": "object",
        "properties": {
          "gadget-type": {
            "type": "string"
          },
          "max-speed": {
            "type": "integer",
            "format": "int32"
          },
          "max-altitude": {
            "type": "integer",
            "format": "int32"
          },
          "nested-usage": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "gadget-type": "copter",
          "max-speed": 30,
          "max-altitude": 10,
          "nested-usage": []
        }
      },
      "GadgetUsage1": {
        "title": "GadgetUsage1",
        "required": [
          "historic",
          "current"
        ],
        "type": "object",
        "properties": {
          "historic": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "current": {
            "type": "object"
          }
        },
        "example": {
          "historic": [],
          "current": {}
        }
      },
      "QueryDeviceInspectGadget-info": {
        "title": "QueryDeviceInspectGadget-info",
        "required": [
          "gadget-type",
          "max-speed",
          "max-altitude",
          "nested-usage"
        ],
        "type": "object",
        "properties": {
          "gadget-type": {
            "type": "string"
          },
          "max-speed": {
            "type": "integer",
            "format": "int32"
          },
          "max-altitude": {
            "type": "integer",
            "format": "int32"
          },
          "nested-usage": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/NestedUsage"
            },
            "description": ""
          }
        },
        "example": {
          "gadget-type": "copter",
          "max-speed": 30,
          "max-altitude": 10,
          "nested-usage": [
            {
              "interval": 0,
              "deployed-count": 1,
              "error-count": 1
            },
            {
              "interval": 1,
              "deployed-count": 3,
              "error-count": 2
            },
            {
              "interval": 2,
              "deployed-count": 5,
              "error-count": 3
            },
            {
              "interval": 3,
              "deployed-count": 7,
              "error-count": 4
            },
            {
              "interval": 4,
              "deployed-count": 9,
              "error-count": 5
            }
          ]
        }
      },
      "QueryDeviceInspectGadget-usage": {
        "title": "QueryDeviceInspectGadget-usage",
        "required": [
          "historic",
          "current"
        ],
        "type": "object",
        "properties": {
          "historic": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Historic"
            },
            "description": ""
          },
          "current": {
            "$ref": "#/components/schemas/Current"
          }
        },
        "example": {
          "historic": [
            {
              "day": 1,
              "deployed-count": 3,
              "error-count": 2
            },
            {
              "day": 2,
              "deployed-count": 5,
              "error-count": 3
            },
            {
              "day": 3,
              "deployed-count": 7,
              "error-count": 4
            },
            {
              "day": 4,
              "deployed-count": 9,
              "error-count": 5
            },
            {
              "day": 5,
              "deployed-count": 11,
              "error-count": 6
            },
            {
              "day": 6,
              "deployed-count": 13,
              "error-count": 7
            },
            {
              "day": 7,
              "deployed-count": 15,
              "error-count": 8
            }
          ],
          "current": {
            "deployed-count": 5,
            "error-count": 0
          }
        }
      },
      "OrchDeletedeviceRequest": {
        "title": "OrchDeletedeviceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input98"
          }
        },
        "example": {
          "input": {
            "device-context": {
              "device-name": "orchdev_{{test_uuid}}"
            }
          }
        }
      },
      "OrchDeletedevice": {
        "title": "OrchDeletedevice",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output131"
          }
        },
        "example": {
          "output": {
            "device-name": "orchdev_b4ea84de-5f8d-4b91-9110-b54ed3727c00-September8th20201018pm",
            "timestamp": "2020-09-08T16:50:26.388000",
            "status": "deleting",
            "trans-id": "d008fb2e-c3dd-4c36-959b-13cfb65d37b9",
            "completion-status": "in-progress"
          }
        }
      },
      "OrchDeleteinterfaceRequest": {
        "title": "OrchDeleteinterfaceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input115"
          }
        },
        "example": {
          "input": {
            "interface-context": {
              "interface-name": "DevInf_{{test_uuid}}"
            }
          }
        }
      },
      "OrchDeleteinterface": {
        "title": "OrchDeleteinterface",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output143"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-09-08T16:50:44.957000",
            "interface-name": "DevInf_b4ea84de-5f8d-4b91-9110-b54ed3727c00-September8th20201018pm",
            "status": "deleting",
            "trans-id": "6725841f-a8c8-42c6-85ac-cba696a77b0b",
            "completion-status": "in-progress"
          }
        }
      },
      "CreateManagementDomainRequest": {
        "title": "CreateManagementDomainRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input129"
          }
        },
        "example": {
          "input": {
            "management-domain-context": {
              "management-domain-name": "Management-Domain",
              "type": "management-domain-dhcp-ipv4",
              "credentials-name": "{{mgmt-domain-cred-name}}"
            }
          }
        }
      },
      "Input129": {
        "title": "Input129",
        "required": [
          "management-domain-context"
        ],
        "type": "object",
        "properties": {
          "management-domain-context": {
            "$ref": "#/components/schemas/ManagementDomainContext12"
          }
        },
        "example": {
          "management-domain-context": {
            "management-domain-name": "Management-Domain",
            "type": "management-domain-dhcp-ipv4",
            "credentials-name": "{{mgmt-domain-cred-name}}"
          }
        }
      },
      "ManagementDomainContext12": {
        "title": "ManagementDomainContext12",
        "required": [
          "management-domain-name",
          "type",
          "credentials-name"
        ],
        "type": "object",
        "properties": {
          "management-domain-name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "credentials-name": {
            "type": "string"
          }
        },
        "example": {
          "management-domain-name": "Management-Domain",
          "type": "management-domain-dhcp-ipv4",
          "credentials-name": "{{mgmt-domain-cred-name}}"
        }
      },
      "CreateManagementDomain-Success": {
        "title": "CreateManagementDomain-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output158"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-06T09:02:11.333000",
            "management-domain-name": "Management-Domain",
            "status": "configuring",
            "trans-id": "53f0be74-16ac-4b73-b57f-7833c7b1b4b4",
            "completion-status": "in-progress"
          }
        }
      },
      "Output158": {
        "title": "Output158",
        "required": [
          "timestamp",
          "management-domain-name",
          "status",
          "trans-id",
          "completion-status"
        ],
        "type": "object",
        "properties": {
          "timestamp": {
            "type": "string"
          },
          "management-domain-name": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "trans-id": {
            "type": "string"
          },
          "completion-status": {
            "type": "string"
          }
        },
        "example": {
          "timestamp": "2020-05-06T09:02:11.333000",
          "management-domain-name": "Management-Domain",
          "status": "configuring",
          "trans-id": "53f0be74-16ac-4b73-b57f-7833c7b1b4b4",
          "completion-status": "in-progress"
        }
      },
      "CreateManagementDomain-IncorrectCredentials1": {
        "title": "CreateManagementDomain-IncorrectCredentials1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Credential Invalid Credentials does not exist"
          }
        }
      },
      "CreateManagementDomain-AlreadyExists1": {
        "title": "CreateManagementDomain-AlreadyExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Management Domain Management-Domain already exists."
          }
        }
      },
      "ConfigureManagementDomainRequest": {
        "title": "ConfigureManagementDomainRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input129"
          }
        },
        "example": {
          "input": {
            "management-domain-context": {
              "management-domain-name": "Management-Domain",
              "type": "management-domain-static-ipv4",
              "credentials-name": "{{mgmt-domain-cred-name}}"
            }
          }
        }
      },
      "ConfigureManagementDomain-IncorrectManagementDomainNotExists1": {
        "title": "ConfigureManagementDomain-IncorrectManagementDomainNotExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Management Domain Invalid Management-Domain does not exists."
          }
        }
      },
      "ConfigureManagementDomain-Success": {
        "title": "ConfigureManagementDomain-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output158"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-09T10:36:01.074000",
            "management-domain-name": "Management-Domain",
            "status": "configuring",
            "trans-id": "a5fe1156-d2c0-4606-a77b-9f0d74abeb93",
            "completion-status": "in-progress"
          }
        }
      },
      "DeployManagementDomainRequest": {
        "title": "DeployManagementDomainRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input131"
          }
        },
        "example": {
          "input": {
            "management-domain-context": {
              "management-domain-name": "Management-Domain",
              "persistency-server": [
                "{{mgmt-domain-prst-name}}"
              ],
              "dhcp-ipv4-server": [
                "{{mgmt-domain-dhcp-name}}"
              ],
              "management-vlan-outer-tag": "untagged",
              "management-vlan-inner-tag": "none",
              "dhcp-ipv4-pool": {
                "subnet": "128.66.0.0/24",
                "first-address": "1.1.1.1",
                "last-address": "5.5.5.5",
                "gateway": "2.2.2.2"
              }
            }
          }
        }
      },
      "Input131": {
        "title": "Input131",
        "required": [
          "management-domain-context"
        ],
        "type": "object",
        "properties": {
          "management-domain-context": {
            "$ref": "#/components/schemas/ManagementDomainContext14"
          }
        },
        "example": {
          "management-domain-context": {
            "management-domain-name": "Management-Domain",
            "persistency-server": [
              "{{mgmt-domain-prst-name}}"
            ],
            "dhcp-ipv4-server": [
              "{{mgmt-domain-dhcp-name}}"
            ],
            "management-vlan-outer-tag": "untagged",
            "management-vlan-inner-tag": "none",
            "dhcp-ipv4-pool": {
              "subnet": "128.66.0.0/24",
              "first-address": "1.1.1.1",
              "last-address": "5.5.5.5",
              "gateway": "2.2.2.2"
            }
          }
        }
      },
      "ManagementDomainContext14": {
        "title": "ManagementDomainContext14",
        "required": [
          "management-domain-name",
          "persistency-server",
          "dhcp-ipv4-server",
          "management-vlan-outer-tag",
          "management-vlan-inner-tag",
          "dhcp-ipv4-pool"
        ],
        "type": "object",
        "properties": {
          "management-domain-name": {
            "type": "string"
          },
          "persistency-server": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "dhcp-ipv4-server": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "management-vlan-outer-tag": {
            "type": "string"
          },
          "management-vlan-inner-tag": {
            "type": "string"
          },
          "dhcp-ipv4-pool": {
            "$ref": "#/components/schemas/DhcpIpv4Pool"
          }
        },
        "example": {
          "management-domain-name": "Management-Domain",
          "persistency-server": [
            "{{mgmt-domain-prst-name}}"
          ],
          "dhcp-ipv4-server": [
            "{{mgmt-domain-dhcp-name}}"
          ],
          "management-vlan-outer-tag": "untagged",
          "management-vlan-inner-tag": "none",
          "dhcp-ipv4-pool": {
            "subnet": "128.66.0.0/24",
            "first-address": "1.1.1.1",
            "last-address": "5.5.5.5",
            "gateway": "2.2.2.2"
          }
        }
      },
      "DhcpIpv4Pool": {
        "title": "DhcpIpv4Pool",
        "required": [
          "subnet",
          "first-address",
          "last-address",
          "gateway"
        ],
        "type": "object",
        "properties": {
          "subnet": {
            "type": "string"
          },
          "first-address": {
            "type": "string"
          },
          "last-address": {
            "type": "string"
          },
          "gateway": {
            "type": "string"
          }
        },
        "example": {
          "subnet": "128.66.0.0/24",
          "first-address": "1.1.1.1",
          "last-address": "5.5.5.5",
          "gateway": "2.2.2.2"
        }
      },
      "DeployManagementDomain-IncorrectServer1": {
        "title": "DeployManagementDomain-IncorrectServer1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Server Invalid Server Doesn't Exist"
          }
        }
      },
      "DeployManagementDomain-Success": {
        "title": "DeployManagementDomain-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output158"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-06T11:42:23.363000",
            "management-domain-name": "Management-Domain",
            "status": "deploying",
            "trans-id": "9ec9b541-0848-4452-9037-29e064718dcd",
            "completion-status": "in-progress"
          }
        }
      },
      "DeployManagementDomain-AlreadyDeployed1": {
        "title": "DeployManagementDomain-AlreadyDeployed1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'deploy' not allowed for Management-Domain with state 'deployed'"
          }
        }
      },
      "ActivateManagementDomainRequest": {
        "title": "ActivateManagementDomainRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input132"
          }
        },
        "example": {
          "input": {
            "management-domain-context": {
              "management-domain-name": "Management-Domain"
            }
          }
        }
      },
      "Input132": {
        "title": "Input132",
        "required": [
          "management-domain-context"
        ],
        "type": "object",
        "properties": {
          "management-domain-context": {
            "$ref": "#/components/schemas/ManagementDomainContext15"
          }
        },
        "example": {
          "management-domain-context": {
            "management-domain-name": "Management-Domain"
          }
        }
      },
      "ManagementDomainContext15": {
        "title": "ManagementDomainContext15",
        "required": [
          "management-domain-name"
        ],
        "type": "object",
        "properties": {
          "management-domain-name": {
            "type": "string"
          }
        },
        "example": {
          "management-domain-name": "Management-Domain"
        }
      },
      "ActivateManagementDomain-AlreadyActivated1": {
        "title": "ActivateManagementDomain-AlreadyActivated1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'activate' not allowed for Management-Domain with state 'activated'"
          }
        }
      },
      "ActivateManagementDomain-Success": {
        "title": "ActivateManagementDomain-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output158"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-06T10:01:08.200000",
            "management-domain-name": "Management-Domain",
            "status": "activating",
            "trans-id": "9f61cd96-475b-447f-b88b-c9635f9c42c4",
            "completion-status": "in-progress"
          }
        }
      },
      "ActivateManagementDomain-IncorrectManagementDomain1": {
        "title": "ActivateManagementDomain-IncorrectManagementDomain1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Management Domain Invalid Management Domain does not exists."
          }
        }
      },
      "GetManagementDomain-IncorrectManagementDomainName1": {
        "title": "GetManagementDomain-IncorrectManagementDomainName1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Could not find path List(adtran-cloud-platform-management-domains, management-domains, management-domain=InvalidName)"
        }
      },
      "GetManagementDomain-Success": {
        "title": "GetManagementDomain-Success",
        "required": [
          "management-domain-type",
          "state",
          "dhcp",
          "management-vlan-outer-tag",
          "management-domain-name",
          "management-vlan-inner-tag",
          "credentials-name",
          "persistency-server"
        ],
        "type": "object",
        "properties": {
          "management-domain-type": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "dhcp": {
            "$ref": "#/components/schemas/Dhcp"
          },
          "management-vlan-outer-tag": {
            "type": "string"
          },
          "management-domain-name": {
            "type": "string"
          },
          "management-vlan-inner-tag": {
            "type": "string"
          },
          "credentials-name": {
            "type": "string"
          },
          "persistency-server": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "management-domain-type": "management-domain-dhcp-ipv4",
          "state": "activated",
          "dhcp": {
            "server-name": [
              "DHCP Server"
            ],
            "dhcp-ipv4-pool": {
              "first-address": "1.1.1.1",
              "last-address": "5.5.5.5",
              "gateway": "2.2.2.2",
              "subnet": "128.66.0.0/24"
            }
          },
          "management-vlan-outer-tag": "untagged",
          "management-domain-name": "Management-Domain",
          "management-vlan-inner-tag": "none",
          "credentials-name": "Credentials",
          "persistency-server": [
            "Persistency Server"
          ]
        }
      },
      "Dhcp": {
        "title": "Dhcp",
        "required": [
          "server-name",
          "dhcp-ipv4-pool"
        ],
        "type": "object",
        "properties": {
          "server-name": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "dhcp-ipv4-pool": {
            "$ref": "#/components/schemas/DhcpIpv4Pool"
          }
        },
        "example": {
          "server-name": [
            "DHCP Server"
          ],
          "dhcp-ipv4-pool": {
            "first-address": "1.1.1.1",
            "last-address": "5.5.5.5",
            "gateway": "2.2.2.2",
            "subnet": "128.66.0.0/24"
          }
        }
      },
      "GetAllManagementDomain-Success": {
        "title": "GetAllManagementDomain-Success",
        "required": [
          "management-domain-type",
          "state",
          "dhcp",
          "management-vlan-outer-tag",
          "management-domain-name",
          "management-vlan-inner-tag",
          "credentials-name",
          "persistency-server"
        ],
        "type": "object",
        "properties": {
          "management-domain-type": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "dhcp": {
            "$ref": "#/components/schemas/Dhcp"
          },
          "management-vlan-outer-tag": {
            "type": "string"
          },
          "management-domain-name": {
            "type": "string"
          },
          "management-vlan-inner-tag": {
            "type": "string"
          },
          "credentials-name": {
            "type": "string"
          },
          "persistency-server": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "management-domain-type": "management-domain-dhcp-ipv4",
          "state": "activated",
          "dhcp": {
            "server-name": [
              "DHCP Server"
            ],
            "dhcp-ipv4-pool": {
              "first-address": "1.1.1.1",
              "last-address": "5.5.5.5",
              "gateway": "2.2.2.2",
              "subnet": "128.66.0.0/24"
            }
          },
          "management-vlan-outer-tag": "untagged",
          "management-domain-name": "Management-Domain",
          "management-vlan-inner-tag": "none",
          "credentials-name": "Credentials",
          "persistency-server": [
            "Persistency Server"
          ]
        }
      },
      "GetAllManagementDomainTypes": {
        "title": "GetAllManagementDomainTypes",
        "required": [
          "management-domain-type"
        ],
        "type": "object",
        "properties": {
          "management-domain-type": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ManagementDomainType"
            },
            "description": ""
          }
        },
        "example": {
          "management-domain-type": [
            {
              "management-domain-type": "static-ip",
              "management-domain-context": "management-domain-static-ip",
              "configurable": false
            },
            {
              "management-domain-type": "static-ipv4",
              "management-domain-context": "management-domain-static-ipv4",
              "configurable": false
            },
            {
              "management-domain-type": "external",
              "management-domain-context": "management-domain-external",
              "configurable": false
            },
            {
              "management-domain-type": "dhcp-ipv4",
              "management-domain-context": "management-domain-dhcp-ipv4",
              "configurable": true
            }
          ]
        }
      },
      "ManagementDomainType": {
        "title": "ManagementDomainType",
        "required": [
          "management-domain-type",
          "management-domain-context",
          "configurable"
        ],
        "type": "object",
        "properties": {
          "management-domain-type": {
            "type": "string"
          },
          "management-domain-context": {
            "type": "string"
          },
          "configurable": {
            "type": "boolean"
          }
        },
        "example": {
          "management-domain-type": "static-ip",
          "management-domain-context": "management-domain-static-ip",
          "configurable": false
        }
      },
      "DeactivateManagementDomainRequest": {
        "title": "DeactivateManagementDomainRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input132"
          }
        },
        "example": {
          "input": {
            "management-domain-context": {
              "management-domain-name": "Management-Domain"
            }
          }
        }
      },
      "DeactivateManagementDomain-IncorrectManagementDomainNotExists1": {
        "title": "DeactivateManagementDomain-IncorrectManagementDomainNotExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Management Domain Invalid Management Domain does not exists."
          }
        }
      },
      "DeactivateManagementDomain-Success": {
        "title": "DeactivateManagementDomain-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output158"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-06T10:10:04.293000",
            "management-domain-name": "Management-Domain",
            "status": "deactivating",
            "trans-id": "c22ef8d9-bfd3-496c-843c-b2812a772883",
            "completion-status": "in-progress"
          }
        }
      },
      "DeactivateManagementDomain-Alreadydeactivated1": {
        "title": "DeactivateManagementDomain-Alreadydeactivated1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'deactivate' not allowed for Management-Domain with state 'deployed'"
          }
        }
      },
      "UndeployManagementDomainRequest": {
        "title": "UndeployManagementDomainRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input132"
          }
        },
        "example": {
          "input": {
            "management-domain-context": {
              "management-domain-name": "Management-Domain"
            }
          }
        }
      },
      "UndeployManagementDomain-Success": {
        "title": "UndeployManagementDomain-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output158"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-06T10:17:17.882000",
            "management-domain-name": "Management-Domain",
            "status": "undeploying",
            "trans-id": "645f502a-852b-4e7a-943e-9fdafb233e2f",
            "completion-status": "in-progress"
          }
        }
      },
      "UndeployManagementDomain-AlreadyUndeployed1": {
        "title": "UndeployManagementDomain-AlreadyUndeployed1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'undeploy' not allowed for Management-Domain with state 'configured'"
          }
        }
      },
      "UndeployManagementDomain-IncorrectManagementDomainNotExists1": {
        "title": "UndeployManagementDomain-IncorrectManagementDomainNotExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Management Domain Invalid Managemnet Domain does not exists."
          }
        }
      },
      "DeleteManagementDomainRequest": {
        "title": "DeleteManagementDomainRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input132"
          }
        },
        "example": {
          "input": {
            "management-domain-context": {
              "management-domain-name": "Management-Domain"
            }
          }
        }
      },
      "DeleteManagementDomain-Success": {
        "title": "DeleteManagementDomain-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output158"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-06T10:23:01.267000",
            "management-domain-name": "Management-Domain",
            "status": "deleting",
            "trans-id": "a3180108-9cd0-481a-bb55-c083b9b724ea",
            "completion-status": "in-progress"
          }
        }
      },
      "DeleteManagementDomain-AlreadyDeleted1": {
        "title": "DeleteManagementDomain-AlreadyDeleted1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Management Domain Management-Domain does not exists."
          }
        }
      },
      "DeleteManagementDomain-IncorrectManagementDomainNotExists1": {
        "title": "DeleteManagementDomain-IncorrectManagementDomainNotExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Management Domain Invalid Management Domain does not exists."
          }
        }
      },
      "CreateServerRequest": {
        "title": "CreateServerRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input136"
          }
        },
        "example": {
          "input": {
            "server-context": {
              "server-name": "Server",
              "type": [
                "TFTP"
              ],
              "credentials-name": "{{mgmt-domain-cred-name}}"
            }
          }
        }
      },
      "Input136": {
        "title": "Input136",
        "required": [
          "server-context"
        ],
        "type": "object",
        "properties": {
          "server-context": {
            "$ref": "#/components/schemas/ServerContext"
          }
        },
        "example": {
          "server-context": {
            "server-name": "Server",
            "type": [
              "TFTP"
            ],
            "credentials-name": "{{mgmt-domain-cred-name}}"
          }
        }
      },
      "ServerContext": {
        "title": "ServerContext",
        "required": [
          "server-name",
          "type",
          "credentials-name"
        ],
        "type": "object",
        "properties": {
          "server-name": {
            "type": "string"
          },
          "type": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "credentials-name": {
            "type": "string"
          }
        },
        "example": {
          "server-name": "Server",
          "type": [
            "TFTP"
          ],
          "credentials-name": "{{mgmt-domain-cred-name}}"
        }
      },
      "ConfigureServer-IncorrectCredentials1": {
        "title": "ConfigureServer-IncorrectCredentials1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Credential Invalid Credentials does not exist"
          }
        }
      },
      "ConfigureServer-SuccessTFTP": {
        "title": "ConfigureServer-SuccessTFTP",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output165"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-05T09:09:57.407000",
            "server-name": "Server",
            "status": "configuring",
            "trans-id": "c1b78453-232b-43c3-af2c-a8eab7c2efe5",
            "completion-status": "in-progress"
          }
        }
      },
      "Output165": {
        "title": "Output165",
        "required": [
          "timestamp",
          "server-name",
          "status",
          "trans-id",
          "completion-status"
        ],
        "type": "object",
        "properties": {
          "timestamp": {
            "type": "string"
          },
          "server-name": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "trans-id": {
            "type": "string"
          },
          "completion-status": {
            "type": "string"
          }
        },
        "example": {
          "timestamp": "2020-05-05T09:09:57.407000",
          "server-name": "Server",
          "status": "configuring",
          "trans-id": "c1b78453-232b-43c3-af2c-a8eab7c2efe5",
          "completion-status": "in-progress"
        }
      },
      "ConfigureServer-SuccessSFTP": {
        "title": "ConfigureServer-SuccessSFTP",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output165"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-05T09:12:25.619000",
            "server-name": "Server",
            "status": "configuring",
            "trans-id": "685cd40d-d51e-43ee-985a-e89c266667ed",
            "completion-status": "in-progress"
          }
        }
      },
      "ConfigureServer-Alreadyexists1": {
        "title": "ConfigureServer-Alreadyexists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Server Server already exist"
          }
        }
      },
      "ConfigureServerRequest": {
        "title": "ConfigureServerRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input136"
          }
        },
        "example": {
          "input": {
            "server-context": {
              "server-name": "Server",
              "type": [
                "SFTP"
              ],
              "credentials-name": "{{mgmt-domain-cred-name}}"
            }
          }
        }
      },
      "ConfigureServer-IncorrectServerNotExists1": {
        "title": "ConfigureServer-IncorrectServerNotExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Server Invalid Server does not exist"
          }
        }
      },
      "ConfigureServer-Success": {
        "title": "ConfigureServer-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output165"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-09T10:44:26.588000",
            "server-name": "Server",
            "status": "configuring",
            "trans-id": "0326bcf5-971e-472f-aebb-0c4079897823",
            "completion-status": "in-progress"
          }
        }
      },
      "DeployServerRequest": {
        "title": "DeployServerRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input138"
          }
        },
        "example": {
          "input": {
            "server-context": {
              "server-name": "Server",
              "host-ip": "10.11.11.11",
              "port": "1",
              "base-path": "/home/adtran",
              "data-center-name": "{{servers-dc-name}}"
            }
          }
        }
      },
      "Input138": {
        "title": "Input138",
        "required": [
          "server-context"
        ],
        "type": "object",
        "properties": {
          "server-context": {
            "$ref": "#/components/schemas/ServerContext2"
          }
        },
        "example": {
          "server-context": {
            "server-name": "Server",
            "host-ip": "10.11.11.11",
            "port": "1",
            "base-path": "/home/adtran",
            "data-center-name": "{{servers-dc-name}}"
          }
        }
      },
      "ServerContext2": {
        "title": "ServerContext2",
        "required": [
          "server-name",
          "host-ip",
          "port",
          "base-path",
          "data-center-name"
        ],
        "type": "object",
        "properties": {
          "server-name": {
            "type": "string"
          },
          "host-ip": {
            "type": "string"
          },
          "port": {
            "type": "string"
          },
          "base-path": {
            "type": "string"
          },
          "data-center-name": {
            "type": "string"
          }
        },
        "example": {
          "server-name": "Server",
          "host-ip": "10.11.11.11",
          "port": "1",
          "base-path": "/home/adtran",
          "data-center-name": "{{servers-dc-name}}"
        }
      },
      "DeployServer-Success": {
        "title": "DeployServer-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output165"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-06T08:22:25.964000",
            "server-name": "Server",
            "status": "deploying",
            "trans-id": "8c8e665f-ceb2-4273-acb0-1313f1183c3f",
            "completion-status": "in-progress"
          }
        }
      },
      "DeployServer-IncorrectServerNotExists1": {
        "title": "DeployServer-IncorrectServerNotExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Server Invalid Server Name does not exist"
          }
        }
      },
      "DeployServer-Alreadydeployed1": {
        "title": "DeployServer-Alreadydeployed1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'deploy' not allowed for Server with state 'deployed'"
          }
        }
      },
      "ActivateServerRequest": {
        "title": "ActivateServerRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input139"
          }
        },
        "example": {
          "input": {
            "server-context": {
              "server-name": "Server"
            }
          }
        }
      },
      "Input139": {
        "title": "Input139",
        "required": [
          "server-context"
        ],
        "type": "object",
        "properties": {
          "server-context": {
            "$ref": "#/components/schemas/ServerContext3"
          }
        },
        "example": {
          "server-context": {
            "server-name": "Server"
          }
        }
      },
      "ServerContext3": {
        "title": "ServerContext3",
        "required": [
          "server-name"
        ],
        "type": "object",
        "properties": {
          "server-name": {
            "type": "string"
          }
        },
        "example": {
          "server-name": "Server"
        }
      },
      "ActivateServer-Alreadyactivated1": {
        "title": "ActivateServer-Alreadyactivated1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'activate' not allowed for Server with state 'activated'"
          }
        }
      },
      "ActivateServer-IncorrectServerNotExists1": {
        "title": "ActivateServer-IncorrectServerNotExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Server Invalid Server Name does not exist"
          }
        }
      },
      "ActivateServer-Success": {
        "title": "ActivateServer-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output165"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-05T09:31:53.197000",
            "server-name": "Server",
            "status": "activating",
            "trans-id": "3ad17bf7-a309-4fd4-bd77-8f7c8e9fb0b8",
            "completion-status": "in-progress"
          }
        }
      },
      "GetServer-IncorrectServerNotExists1": {
        "title": "GetServer-IncorrectServerNotExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors24"
          }
        },
        "example": {
          "errors": {
            "error-type": "application",
            "error-message": "'InvalidServer' not found"
          }
        }
      },
      "GetServer-Success": {
        "title": "GetServer-Success",
        "required": [
          "host-ip",
          "state",
          "server-name",
          "data-center-name",
          "port",
          "base-path",
          "type",
          "credentials-name"
        ],
        "type": "object",
        "properties": {
          "host-ip": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "server-name": {
            "type": "string"
          },
          "data-center-name": {
            "type": "string"
          },
          "port": {
            "type": "string"
          },
          "base-path": {
            "type": "string"
          },
          "type": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "credentials-name": {
            "type": "string"
          }
        },
        "example": {
          "host-ip": "10.11.11.11",
          "state": "activated",
          "server-name": "Server",
          "data-center-name": "Data Center",
          "port": "1",
          "base-path": "/home/adtran",
          "type": [
            "TFTP"
          ],
          "credentials-name": "Credentials"
        }
      },
      "GetAllServers-Success": {
        "title": "GetAllServers-Success",
        "required": [
          "host-ip",
          "state",
          "server-name",
          "data-center-name",
          "port",
          "base-path",
          "type",
          "credentials-name"
        ],
        "type": "object",
        "properties": {
          "host-ip": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "server-name": {
            "type": "string"
          },
          "data-center-name": {
            "type": "string"
          },
          "port": {
            "type": "string"
          },
          "base-path": {
            "type": "string"
          },
          "type": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "credentials-name": {
            "type": "string"
          }
        },
        "example": {
          "host-ip": "10.11.11.11",
          "state": "activated",
          "server-name": "Server",
          "data-center-name": "Data Center",
          "port": "1",
          "base-path": "/home/adtran",
          "type": [
            "TFTP"
          ],
          "credentials-name": "Credentials"
        }
      },
      "DeactivateServerRequest": {
        "title": "DeactivateServerRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input139"
          }
        },
        "example": {
          "input": {
            "server-context": {
              "server-name": "Server"
            }
          }
        }
      },
      "DeactivateServer-IncorrectServerNotExists1": {
        "title": "DeactivateServer-IncorrectServerNotExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Server Invalid Server Name does not exist"
          }
        }
      },
      "DeactivateServer-Alreadydeactivated1": {
        "title": "DeactivateServer-Alreadydeactivated1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'deactivate' not allowed for Server with state 'deployed'"
          }
        }
      },
      "DeactivateServer-Success": {
        "title": "DeactivateServer-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output165"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-05T09:36:12.826000",
            "server-name": "Server",
            "status": "deactivating",
            "trans-id": "f2a161f7-a515-463a-bfc9-82e379f94ad2",
            "completion-status": "in-progress"
          }
        }
      },
      "UndeployServerRequest": {
        "title": "UndeployServerRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input139"
          }
        },
        "example": {
          "input": {
            "server-context": {
              "server-name": "Server"
            }
          }
        }
      },
      "UndeployServer-Success": {
        "title": "UndeployServer-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output165"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-05T09:45:28.664000",
            "server-name": "Server",
            "status": "undeploying",
            "trans-id": "a6bd5fc2-4344-4a52-8772-6c204850b58b",
            "completion-status": "in-progress"
          }
        }
      },
      "UndeployServer-Alreadyundeployed1": {
        "title": "UndeployServer-Alreadyundeployed1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'undeploy' not allowed for Server with state 'configured'"
          }
        }
      },
      "UndeployServer-IncorrectServerNotExists1": {
        "title": "UndeployServer-IncorrectServerNotExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Server Invalid Server Name does not exist"
          }
        }
      },
      "DeleteServerRequest": {
        "title": "DeleteServerRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input139"
          }
        },
        "example": {
          "input": {
            "server-context": {
              "server-name": "Server"
            }
          }
        }
      },
      "DeleteServer-IncorrectServerNotExists1": {
        "title": "DeleteServer-IncorrectServerNotExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Server Invalid Server Name does not exist"
          }
        }
      },
      "DeleteServer-Alreadydeleted1": {
        "title": "DeleteServer-Alreadydeleted1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Server Server does not exist"
          }
        }
      },
      "DeleteServer-Success": {
        "title": "DeleteServer-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output165"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-05T09:49:37.372000",
            "server-name": "Server",
            "status": "deleting",
            "trans-id": "f5c8afd4-6ad4-4825-bc60-5cd19ba3f1e8",
            "completion-status": "in-progress"
          }
        }
      },
      "ManagedObject-CreateServiceRequest": {
        "title": "ManagedObject-CreateServiceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input143"
          }
        },
        "example": {
          "input": {
            "service-context": {
              "service-id": "SampleService-001",
              "uplink-endpoint": {
                "interface-endpoint": {
                  "outer-tag-vlan-id": 1,
                  "inner-tag-vlan-id": "none",
                  "content-provider-name": "{{single-action-svc-cp-name}}"
                }
              },
              "downlink-endpoint": {
                "interface-endpoint": {
                  "outer-tag-vlan-id": 23,
                  "inner-tag-vlan-id": "none",
                  "interface-name": "{{single-action-svc-int-name}}"
                }
              },
              "remote-id": "123",
              "profile-name": "",
              "agent-circuit-id": "1234"
            }
          }
        }
      },
      "Input143": {
        "title": "Input143",
        "required": [
          "service-context"
        ],
        "type": "object",
        "properties": {
          "service-context": {
            "$ref": "#/components/schemas/ServiceContext"
          }
        },
        "example": {
          "service-context": {
            "service-id": "SampleService-001",
            "uplink-endpoint": {
              "interface-endpoint": {
                "outer-tag-vlan-id": 1,
                "inner-tag-vlan-id": "none",
                "content-provider-name": "{{single-action-svc-cp-name}}"
              }
            },
            "downlink-endpoint": {
              "interface-endpoint": {
                "outer-tag-vlan-id": 23,
                "inner-tag-vlan-id": "none",
                "interface-name": "{{single-action-svc-int-name}}"
              }
            },
            "remote-id": "123",
            "profile-name": "",
            "agent-circuit-id": "1234"
          }
        }
      },
      "ServiceContext": {
        "title": "ServiceContext",
        "required": [
          "service-id",
          "uplink-endpoint",
          "downlink-endpoint",
          "remote-id",
          "profile-name",
          "agent-circuit-id"
        ],
        "type": "object",
        "properties": {
          "service-id": {
            "type": "string"
          },
          "uplink-endpoint": {
            "$ref": "#/components/schemas/UplinkEndpoint"
          },
          "downlink-endpoint": {
            "$ref": "#/components/schemas/DownlinkEndpoint"
          },
          "remote-id": {
            "type": "string"
          },
          "profile-name": {
            "type": "string"
          },
          "agent-circuit-id": {
            "type": "string"
          }
        },
        "example": {
          "service-id": "SampleService-001",
          "uplink-endpoint": {
            "interface-endpoint": {
              "outer-tag-vlan-id": 1,
              "inner-tag-vlan-id": "none",
              "content-provider-name": "{{single-action-svc-cp-name}}"
            }
          },
          "downlink-endpoint": {
            "interface-endpoint": {
              "outer-tag-vlan-id": 23,
              "inner-tag-vlan-id": "none",
              "interface-name": "{{single-action-svc-int-name}}"
            }
          },
          "remote-id": "123",
          "profile-name": "",
          "agent-circuit-id": "1234"
        }
      },
      "UplinkEndpoint": {
        "title": "UplinkEndpoint",
        "required": [
          "interface-endpoint"
        ],
        "type": "object",
        "properties": {
          "interface-endpoint": {
            "$ref": "#/components/schemas/InterfaceEndpoint"
          }
        },
        "example": {
          "interface-endpoint": {
            "outer-tag-vlan-id": 1,
            "inner-tag-vlan-id": "none",
            "content-provider-name": "{{single-action-svc-cp-name}}"
          }
        }
      },
      "InterfaceEndpoint": {
        "title": "InterfaceEndpoint",
        "required": [
          "outer-tag-vlan-id",
          "inner-tag-vlan-id",
          "content-provider-name"
        ],
        "type": "object",
        "properties": {
          "outer-tag-vlan-id": {
            "type": "integer",
            "format": "int32"
          },
          "inner-tag-vlan-id": {
            "type": "string"
          },
          "content-provider-name": {
            "type": "string"
          }
        },
        "example": {
          "outer-tag-vlan-id": 1,
          "inner-tag-vlan-id": "none",
          "content-provider-name": "{{single-action-svc-cp-name}}"
        }
      },
      "DownlinkEndpoint": {
        "title": "DownlinkEndpoint",
        "required": [
          "interface-endpoint"
        ],
        "type": "object",
        "properties": {
          "interface-endpoint": {
            "$ref": "#/components/schemas/InterfaceEndpoint1"
          }
        },
        "example": {
          "interface-endpoint": {
            "outer-tag-vlan-id": 23,
            "inner-tag-vlan-id": "none",
            "interface-name": "{{single-action-svc-int-name}}"
          }
        }
      },
      "InterfaceEndpoint1": {
        "title": "InterfaceEndpoint1",
        "required": [
          "outer-tag-vlan-id",
          "inner-tag-vlan-id",
          "interface-name"
        ],
        "type": "object",
        "properties": {
          "outer-tag-vlan-id": {
            "type": "integer",
            "format": "int32"
          },
          "inner-tag-vlan-id": {
            "type": "string"
          },
          "interface-name": {
            "type": "string"
          }
        },
        "example": {
          "outer-tag-vlan-id": 23,
          "inner-tag-vlan-id": "none",
          "interface-name": "{{single-action-svc-int-name}}"
        }
      },
      "ManagedObject-CreateService-Servicealreadyexists": {
        "title": "ManagedObject-CreateService-Servicealreadyexists",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Service SampleService-001 already exists"
          }
        }
      },
      "ManagedObject-ModifyServiceWithProfileNameRequest": {
        "title": "ManagedObject-ModifyServiceWithProfileNameRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input144"
          }
        },
        "example": {
          "input": {
            "service-context": {
              "service-id": "SampleService-001",
              "profile-name": "{{single-action-svc-pv-name}}"
            }
          }
        }
      },
      "Input144": {
        "title": "Input144",
        "required": [
          "service-context"
        ],
        "type": "object",
        "properties": {
          "service-context": {
            "$ref": "#/components/schemas/ServiceContext1"
          }
        },
        "example": {
          "service-context": {
            "service-id": "SampleService-001",
            "profile-name": "{{single-action-svc-pv-name}}"
          }
        }
      },
      "ServiceContext1": {
        "title": "ServiceContext1",
        "required": [
          "service-id",
          "profile-name"
        ],
        "type": "object",
        "properties": {
          "service-id": {
            "type": "string"
          },
          "profile-name": {
            "type": "string"
          }
        },
        "example": {
          "service-id": "SampleService-001",
          "profile-name": "{{single-action-svc-pv-name}}"
        }
      },
      "ManagedObject-ModifyService-ContentProviderdoesnotexist": {
        "title": "ManagedObject-ModifyService-ContentProviderdoesnotexist",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Content provider Content-provider-2 does not exist"
          }
        }
      },
      "ManagedObject-ModifyServiceReplaceWithRequiredParametersRequest": {
        "title": "ManagedObject-ModifyServiceReplaceWithRequiredParametersRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input145"
          }
        },
        "example": {
          "input": {
            "service-context": {
              "service-id": "SampleService-001",
              "uplink-endpoint": {
                "interface-endpoint": {
                  "outer-tag-vlan-id": 700,
                  "content-provider-name": "{{single-action-svc-cp-name}}",
                  "inner-tag-vlan-id": 7
                }
              },
              "downlink-endpoint": {
                "interface-endpoint": {
                  "outer-tag-vlan-id": 800,
                  "inner-tag-vlan-id": 8,
                  "interface-name": "{{single-action-svc-int-name}}"
                }
              },
              "remote-id": "SampleService-001-RemoteID",
              "profile-name": ""
            },
            "operation": "replace"
          }
        }
      },
      "Input145": {
        "title": "Input145",
        "required": [
          "service-context",
          "operation"
        ],
        "type": "object",
        "properties": {
          "service-context": {
            "$ref": "#/components/schemas/ServiceContext2"
          },
          "operation": {
            "type": "string"
          }
        },
        "example": {
          "service-context": {
            "service-id": "SampleService-001",
            "uplink-endpoint": {
              "interface-endpoint": {
                "outer-tag-vlan-id": 700,
                "content-provider-name": "{{single-action-svc-cp-name}}",
                "inner-tag-vlan-id": 7
              }
            },
            "downlink-endpoint": {
              "interface-endpoint": {
                "outer-tag-vlan-id": 800,
                "inner-tag-vlan-id": 8,
                "interface-name": "{{single-action-svc-int-name}}"
              }
            },
            "remote-id": "SampleService-001-RemoteID",
            "profile-name": ""
          },
          "operation": "replace"
        }
      },
      "ServiceContext2": {
        "title": "ServiceContext2",
        "required": [
          "service-id",
          "uplink-endpoint",
          "downlink-endpoint",
          "remote-id",
          "profile-name"
        ],
        "type": "object",
        "properties": {
          "service-id": {
            "type": "string"
          },
          "uplink-endpoint": {
            "$ref": "#/components/schemas/UplinkEndpoint1"
          },
          "downlink-endpoint": {
            "$ref": "#/components/schemas/DownlinkEndpoint1"
          },
          "remote-id": {
            "type": "string"
          },
          "profile-name": {
            "type": "string"
          }
        },
        "example": {
          "service-id": "SampleService-001",
          "uplink-endpoint": {
            "interface-endpoint": {
              "outer-tag-vlan-id": 700,
              "content-provider-name": "{{single-action-svc-cp-name}}",
              "inner-tag-vlan-id": 7
            }
          },
          "downlink-endpoint": {
            "interface-endpoint": {
              "outer-tag-vlan-id": 800,
              "inner-tag-vlan-id": 8,
              "interface-name": "{{single-action-svc-int-name}}"
            }
          },
          "remote-id": "SampleService-001-RemoteID",
          "profile-name": ""
        }
      },
      "UplinkEndpoint1": {
        "title": "UplinkEndpoint1",
        "required": [
          "interface-endpoint"
        ],
        "type": "object",
        "properties": {
          "interface-endpoint": {
            "$ref": "#/components/schemas/InterfaceEndpoint2"
          }
        },
        "example": {
          "interface-endpoint": {
            "outer-tag-vlan-id": 700,
            "content-provider-name": "{{single-action-svc-cp-name}}",
            "inner-tag-vlan-id": 7
          }
        }
      },
      "InterfaceEndpoint2": {
        "title": "InterfaceEndpoint2",
        "required": [
          "outer-tag-vlan-id",
          "content-provider-name",
          "inner-tag-vlan-id"
        ],
        "type": "object",
        "properties": {
          "outer-tag-vlan-id": {
            "type": "integer",
            "format": "int32"
          },
          "content-provider-name": {
            "type": "string"
          },
          "inner-tag-vlan-id": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "outer-tag-vlan-id": 700,
          "content-provider-name": "{{single-action-svc-cp-name}}",
          "inner-tag-vlan-id": 7
        }
      },
      "DownlinkEndpoint1": {
        "title": "DownlinkEndpoint1",
        "required": [
          "interface-endpoint"
        ],
        "type": "object",
        "properties": {
          "interface-endpoint": {
            "$ref": "#/components/schemas/InterfaceEndpoint3"
          }
        },
        "example": {
          "interface-endpoint": {
            "outer-tag-vlan-id": 800,
            "inner-tag-vlan-id": 8,
            "interface-name": "{{single-action-svc-int-name}}"
          }
        }
      },
      "InterfaceEndpoint3": {
        "title": "InterfaceEndpoint3",
        "required": [
          "outer-tag-vlan-id",
          "inner-tag-vlan-id",
          "interface-name"
        ],
        "type": "object",
        "properties": {
          "outer-tag-vlan-id": {
            "type": "integer",
            "format": "int32"
          },
          "inner-tag-vlan-id": {
            "type": "integer",
            "format": "int32"
          },
          "interface-name": {
            "type": "string"
          }
        },
        "example": {
          "outer-tag-vlan-id": 800,
          "inner-tag-vlan-id": 8,
          "interface-name": "{{single-action-svc-int-name}}"
        }
      },
      "ManagedObject-ModifyServiceReplaceWithoutRequiredParameters": {
        "title": "ManagedObject-ModifyServiceReplaceWithoutRequiredParameters",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Request Input Invalid",
            "error-message": "Uplink-Endpoint details (content-provider-name, outer-tag-vlan-id, inner-tag-vlan-id) are required."
          }
        }
      },
      "ManagedObject-DeleteServiceRequest": {
        "title": "ManagedObject-DeleteServiceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input146"
          }
        },
        "example": {
          "input": {
            "service-context": {
              "service-id": "SampleService-001"
            }
          }
        }
      },
      "Input146": {
        "title": "Input146",
        "required": [
          "service-context"
        ],
        "type": "object",
        "properties": {
          "service-context": {
            "$ref": "#/components/schemas/ServiceContext3"
          }
        },
        "example": {
          "service-context": {
            "service-id": "SampleService-001"
          }
        }
      },
      "ServiceContext3": {
        "title": "ServiceContext3",
        "required": [
          "service-id"
        ],
        "type": "object",
        "properties": {
          "service-id": {
            "type": "string"
          }
        },
        "example": {
          "service-id": "SampleService-001"
        }
      },
      "ManagedObject-DeleteService-Servicedoesnotexist": {
        "title": "ManagedObject-DeleteService-Servicedoesnotexist",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Service SampleService-001-20 does not exist"
          }
        }
      },
      "CreateServiceRequest": {
        "title": "CreateServiceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input147"
          }
        },
        "example": {
          "input": {
            "service-context": {
              "service-id": "Service",
              "remote-id": "12",
              "profile-name": "{{services-pv1-name}}",
              "agent-circuit-id": "1234"
            }
          }
        }
      },
      "Input147": {
        "title": "Input147",
        "required": [
          "service-context"
        ],
        "type": "object",
        "properties": {
          "service-context": {
            "$ref": "#/components/schemas/ServiceContext4"
          }
        },
        "example": {
          "service-context": {
            "service-id": "Service",
            "remote-id": "12",
            "profile-name": "{{services-pv1-name}}",
            "agent-circuit-id": "1234"
          }
        }
      },
      "ServiceContext4": {
        "title": "ServiceContext4",
        "required": [
          "service-id",
          "remote-id",
          "profile-name",
          "agent-circuit-id"
        ],
        "type": "object",
        "properties": {
          "service-id": {
            "type": "string"
          },
          "remote-id": {
            "type": "string"
          },
          "profile-name": {
            "type": "string"
          },
          "agent-circuit-id": {
            "type": "string"
          }
        },
        "example": {
          "service-id": "Service",
          "remote-id": "12",
          "profile-name": "{{services-pv1-name}}",
          "agent-circuit-id": "1234"
        }
      },
      "ConfigureService-Incorrectattributeservice-id1": {
        "title": "ConfigureService-Incorrectattributeservice-id1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Unknown failure",
            "error-message": "key not found: service-id"
          }
        }
      },
      "ConfigureService-AlreadyConfigured1": {
        "title": "ConfigureService-AlreadyConfigured1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Service Service already exists"
          }
        }
      },
      "ConfigureService-Success": {
        "title": "ConfigureService-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output173"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-07T06:51:45.497000",
            "service-id": "Service",
            "status": "configuring",
            "trans-id": "917039a7-f167-46b7-a21e-9aad03353daf",
            "completion-status": "in-progress"
          }
        }
      },
      "Output173": {
        "title": "Output173",
        "required": [
          "timestamp",
          "service-id",
          "status",
          "trans-id",
          "completion-status"
        ],
        "type": "object",
        "properties": {
          "timestamp": {
            "type": "string"
          },
          "service-id": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "trans-id": {
            "type": "string"
          },
          "completion-status": {
            "type": "string"
          }
        },
        "example": {
          "timestamp": "2020-05-07T06:51:45.497000",
          "service-id": "Service",
          "status": "configuring",
          "trans-id": "917039a7-f167-46b7-a21e-9aad03353daf",
          "completion-status": "in-progress"
        }
      },
      "CreateServicewithobject-parameters-profile-vector": {
        "title": "CreateServicewithobject-parameters-profile-vector",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output173"
          }
        },
        "example": {
          "output": {
            "timestamp": "2022-02-09T11:01:25.120052",
            "service-id": "ServiceWithObjectParametersProfileVector",
            "status": "configuring",
            "trans-id": "597411bf-10af-4285-b549-37aa6c82ce79",
            "completion-status": "in-progress"
          }
        }
      },
      "ConfigureServiceRequest": {
        "title": "ConfigureServiceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input148"
          }
        },
        "example": {
          "input": {
            "service-context": {
              "service-id": "Service",
              "remote-id": "12",
              "profile-name": "{{services-pv2-name}}"
            }
          }
        }
      },
      "Input148": {
        "title": "Input148",
        "required": [
          "service-context"
        ],
        "type": "object",
        "properties": {
          "service-context": {
            "$ref": "#/components/schemas/ServiceContext5"
          }
        },
        "example": {
          "service-context": {
            "service-id": "Service",
            "remote-id": "12",
            "profile-name": "{{services-pv2-name}}"
          }
        }
      },
      "ServiceContext5": {
        "title": "ServiceContext5",
        "required": [
          "service-id",
          "remote-id",
          "profile-name"
        ],
        "type": "object",
        "properties": {
          "service-id": {
            "type": "string"
          },
          "remote-id": {
            "type": "string"
          },
          "profile-name": {
            "type": "string"
          }
        },
        "example": {
          "service-id": "Service",
          "remote-id": "12",
          "profile-name": "{{services-pv2-name}}"
        }
      },
      "ConfigureService-IncorrectServiceNotExists1": {
        "title": "ConfigureService-IncorrectServiceNotExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Service Invalid Service does not exist"
          }
        }
      },
      "DeployServiceRequest": {
        "title": "DeployServiceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input149"
          }
        },
        "example": {
          "input": {
            "service-context": {
              "service-id": "Service",
              "uplink-endpoint": {
                "interface-endpoint": {
                  "outer-tag-vlan-id": 227,
                  "inner-tag-vlan-id": 2257,
                  "content-provider-name": "{{services-cp-name}}",
                  "ipv4-address": "2.2.2.2"
                }
              },
              "downlink-endpoint": {
                "interface-endpoint": {
                  "outer-tag-vlan-id": "untagged",
                  "inner-tag-vlan-id": "none",
                  "interface-name": "{{services-int-name}}",
                  "ipv4-address": "3.3.3.3"
                }
              }
            }
          }
        }
      },
      "Input149": {
        "title": "Input149",
        "required": [
          "service-context"
        ],
        "type": "object",
        "properties": {
          "service-context": {
            "$ref": "#/components/schemas/ServiceContext6"
          }
        },
        "example": {
          "service-context": {
            "service-id": "Service",
            "uplink-endpoint": {
              "interface-endpoint": {
                "outer-tag-vlan-id": 227,
                "inner-tag-vlan-id": 2257,
                "content-provider-name": "{{services-cp-name}}",
                "ipv4-address": "2.2.2.2"
              }
            },
            "downlink-endpoint": {
              "interface-endpoint": {
                "outer-tag-vlan-id": "untagged",
                "inner-tag-vlan-id": "none",
                "interface-name": "{{services-int-name}}",
                "ipv4-address": "3.3.3.3"
              }
            }
          }
        }
      },
      "ServiceContext6": {
        "title": "ServiceContext6",
        "required": [
          "service-id",
          "uplink-endpoint",
          "downlink-endpoint"
        ],
        "type": "object",
        "properties": {
          "service-id": {
            "type": "string"
          },
          "uplink-endpoint": {
            "$ref": "#/components/schemas/UplinkEndpoint2"
          },
          "downlink-endpoint": {
            "$ref": "#/components/schemas/DownlinkEndpoint2"
          }
        },
        "example": {
          "service-id": "Service",
          "uplink-endpoint": {
            "interface-endpoint": {
              "outer-tag-vlan-id": 227,
              "inner-tag-vlan-id": 2257,
              "content-provider-name": "{{services-cp-name}}",
              "ipv4-address": "2.2.2.2"
            }
          },
          "downlink-endpoint": {
            "interface-endpoint": {
              "outer-tag-vlan-id": "untagged",
              "inner-tag-vlan-id": "none",
              "interface-name": "{{services-int-name}}",
              "ipv4-address": "3.3.3.3"
            }
          }
        }
      },
      "UplinkEndpoint2": {
        "title": "UplinkEndpoint2",
        "required": [
          "interface-endpoint"
        ],
        "type": "object",
        "properties": {
          "interface-endpoint": {
            "$ref": "#/components/schemas/InterfaceEndpoint4"
          }
        },
        "example": {
          "interface-endpoint": {
            "outer-tag-vlan-id": 227,
            "inner-tag-vlan-id": 2257,
            "content-provider-name": "{{services-cp-name}}",
            "ipv4-address": "2.2.2.2"
          }
        }
      },
      "InterfaceEndpoint4": {
        "title": "InterfaceEndpoint4",
        "required": [
          "outer-tag-vlan-id",
          "inner-tag-vlan-id",
          "content-provider-name",
          "ipv4-address"
        ],
        "type": "object",
        "properties": {
          "outer-tag-vlan-id": {
            "type": "integer",
            "format": "int32"
          },
          "inner-tag-vlan-id": {
            "type": "integer",
            "format": "int32"
          },
          "content-provider-name": {
            "type": "string"
          },
          "ipv4-address": {
            "type": "string"
          }
        },
        "example": {
          "outer-tag-vlan-id": 227,
          "inner-tag-vlan-id": 2257,
          "content-provider-name": "{{services-cp-name}}",
          "ipv4-address": "2.2.2.2"
        }
      },
      "DownlinkEndpoint2": {
        "title": "DownlinkEndpoint2",
        "required": [
          "interface-endpoint"
        ],
        "type": "object",
        "properties": {
          "interface-endpoint": {
            "$ref": "#/components/schemas/InterfaceEndpoint5"
          }
        },
        "example": {
          "interface-endpoint": {
            "outer-tag-vlan-id": "untagged",
            "inner-tag-vlan-id": "none",
            "interface-name": "{{services-int-name}}",
            "ipv4-address": "3.3.3.3"
          }
        }
      },
      "InterfaceEndpoint5": {
        "title": "InterfaceEndpoint5",
        "required": [
          "outer-tag-vlan-id",
          "inner-tag-vlan-id",
          "interface-name",
          "ipv4-address"
        ],
        "type": "object",
        "properties": {
          "outer-tag-vlan-id": {
            "type": "string"
          },
          "inner-tag-vlan-id": {
            "type": "string"
          },
          "interface-name": {
            "type": "string"
          },
          "ipv4-address": {
            "type": "string"
          }
        },
        "example": {
          "outer-tag-vlan-id": "untagged",
          "inner-tag-vlan-id": "none",
          "interface-name": "{{services-int-name}}",
          "ipv4-address": "3.3.3.3"
        }
      },
      "DeployService-IncorrectServiceNotExisis1": {
        "title": "DeployService-IncorrectServiceNotExisis1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Service InvalidService does not exist"
          }
        }
      },
      "DeployService-Success": {
        "title": "DeployService-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output173"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-07T08:03:03.066000",
            "service-id": "Service",
            "status": "deploying",
            "trans-id": "0bfc3259-6e04-48ce-b0d7-7987832159a1",
            "completion-status": "in-progress"
          }
        }
      },
      "DeployService-AlreadyDeployed1": {
        "title": "DeployService-AlreadyDeployed1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'deploy' not allowed for Service with state 'deployed'"
          }
        }
      },
      "DeployServicewithObject-parameters-profile-vector": {
        "title": "DeployServicewithObject-parameters-profile-vector",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output173"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-07T08:03:03.066000",
            "service-id": "ServiceWithObjectParametersProfileVector",
            "status": "deploying",
            "trans-id": "0bfc3259-6e04-48ce-b0d7-7987832159a2",
            "completion-status": "in-progress"
          }
        }
      },
      "ActivateServiceRequest": {
        "title": "ActivateServiceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input146"
          }
        },
        "example": {
          "input": {
            "service-context": {
              "service-id": "Service"
            }
          }
        }
      },
      "ActivateService-Success": {
        "title": "ActivateService-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output173"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-07T08:08:28.726000",
            "service-id": "Service",
            "status": "activating",
            "trans-id": "5a167a40-c2d8-4a29-8388-0a8f201e39d1",
            "completion-status": "in-progress"
          }
        }
      },
      "ActivateService-IncorrectServiceNotExists1": {
        "title": "ActivateService-IncorrectServiceNotExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Service InvalidService does not exist"
          }
        }
      },
      "ActivateService-AlreadyActivated1": {
        "title": "ActivateService-AlreadyActivated1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'activate' not allowed for Service with state 'activated'"
          }
        }
      },
      "FindServicesRequest": {
        "title": "FindServicesRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input151"
          }
        },
        "example": {
          "input": {
            "uplink-endpoint": {
              "interface-endpoint": {
                "device-name": "PON-Blade-1",
                "interface-id": "1",
                "outer-tag-vlan-id": 227,
                "inner-tag-vlan-id": 2257
              }
            },
            "downlink-endpoint": {
              "interface-endpoint": {
                "device-name": "ONU-1",
                "interface-id": "virtual-ethernet 0/1"
              }
            },
            "service-type": ""
          }
        }
      },
      "Input151": {
        "title": "Input151",
        "required": [
          "uplink-endpoint",
          "downlink-endpoint",
          "service-type"
        ],
        "type": "object",
        "properties": {
          "uplink-endpoint": {
            "$ref": "#/components/schemas/UplinkEndpoint3"
          },
          "downlink-endpoint": {
            "$ref": "#/components/schemas/DownlinkEndpoint3"
          },
          "service-type": {
            "type": "string"
          }
        },
        "example": {
          "uplink-endpoint": {
            "interface-endpoint": {
              "device-name": "PON-Blade-1",
              "interface-id": "1",
              "outer-tag-vlan-id": 227,
              "inner-tag-vlan-id": 2257
            }
          },
          "downlink-endpoint": {
            "interface-endpoint": {
              "device-name": "ONU-1",
              "interface-id": "virtual-ethernet 0/1"
            }
          },
          "service-type": ""
        }
      },
      "UplinkEndpoint3": {
        "title": "UplinkEndpoint3",
        "required": [
          "interface-endpoint"
        ],
        "type": "object",
        "properties": {
          "interface-endpoint": {
            "$ref": "#/components/schemas/InterfaceEndpoint6"
          }
        },
        "example": {
          "interface-endpoint": {
            "device-name": "PON-Blade-1",
            "interface-id": "1",
            "outer-tag-vlan-id": 227,
            "inner-tag-vlan-id": 2257
          }
        }
      },
      "InterfaceEndpoint6": {
        "title": "InterfaceEndpoint6",
        "required": [
          "device-name",
          "interface-id",
          "outer-tag-vlan-id",
          "inner-tag-vlan-id"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "interface-id": {
            "type": "string"
          },
          "outer-tag-vlan-id": {
            "type": "integer",
            "format": "int32"
          },
          "inner-tag-vlan-id": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "device-name": "PON-Blade-1",
          "interface-id": "1",
          "outer-tag-vlan-id": 227,
          "inner-tag-vlan-id": 2257
        }
      },
      "DownlinkEndpoint3": {
        "title": "DownlinkEndpoint3",
        "required": [
          "interface-endpoint"
        ],
        "type": "object",
        "properties": {
          "interface-endpoint": {
            "$ref": "#/components/schemas/InterfaceEndpoint7"
          }
        },
        "example": {
          "interface-endpoint": {
            "device-name": "ONU-1",
            "interface-id": "virtual-ethernet 0/1"
          }
        }
      },
      "InterfaceEndpoint7": {
        "title": "InterfaceEndpoint7",
        "required": [
          "device-name",
          "interface-id"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "interface-id": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "ONU-1",
          "interface-id": "virtual-ethernet 0/1"
        }
      },
      "FindServices-Success": {
        "title": "FindServices-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output179"
          }
        },
        "example": {
          "output": {
            "service": [
              "Service"
            ]
          }
        }
      },
      "Output179": {
        "title": "Output179",
        "required": [
          "service"
        ],
        "type": "object",
        "properties": {
          "service": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "service": [
            "Service"
          ]
        }
      },
      "SuspendServiceRequest": {
        "title": "SuspendServiceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input146"
          }
        },
        "example": {
          "input": {
            "service-context": {
              "service-id": "Service"
            }
          }
        }
      },
      "SuspendService-IncorrectServiceNotExists": {
        "title": "SuspendService-IncorrectServiceNotExists",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Service InvalidService does not exist"
          }
        }
      },
      "SuspendService-AlreadySuspended": {
        "title": "SuspendService-AlreadySuspended",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'suspend' not allowed for Service with state 'suspended'"
          }
        }
      },
      "SuspendService-Success": {
        "title": "SuspendService-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output173"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-07T08:08:28.726000",
            "service-id": "Service",
            "status": "suspending",
            "trans-id": "5a167a40-c2d8-4a29-8388-0a8f201e39d1",
            "completion-status": "in-progress"
          }
        }
      },
      "ResumeServiceRequest": {
        "title": "ResumeServiceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input146"
          }
        },
        "example": {
          "input": {
            "service-context": {
              "service-id": "Service"
            }
          }
        }
      },
      "ResumeService-Success": {
        "title": "ResumeService-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output173"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-07T08:08:28.726000",
            "service-id": "Service",
            "status": "resuming",
            "trans-id": "5a167a40-c2d8-4a29-8388-0a8f201e39d1",
            "completion-status": "in-progress"
          }
        }
      },
      "ResumeService-AlreadyResumed": {
        "title": "ResumeService-AlreadyResumed",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'resume' not allowed for Service with state 'in-service'"
          }
        }
      },
      "ResumeService-IncorrectServiceNotExists": {
        "title": "ResumeService-IncorrectServiceNotExists",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Service InvalidService does not exist"
          }
        }
      },
      "GetService-IncorrectServiceNotExists1": {
        "title": "GetService-IncorrectServiceNotExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors24"
          }
        },
        "example": {
          "errors": {
            "error-type": "application",
            "error-message": "'InvalidService' not found"
          }
        }
      },
      "GetService-Success": {
        "title": "GetService-Success",
        "required": [
          "success",
          "timestamp",
          "state",
          "service-type",
          "minor-code",
          "major-code",
          "error-description",
          "profile-name",
          "down-sla",
          "service-id",
          "up-sla",
          "status",
          "uplink-endpoint",
          "downlink-endpoint",
          "remote-id",
          "content-provider-name"
        ],
        "type": "object",
        "properties": {
          "success": {
            "type": "string"
          },
          "timestamp": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "service-type": {
            "type": "string"
          },
          "minor-code": {
            "type": "string"
          },
          "major-code": {
            "type": "string"
          },
          "error-description": {
            "type": "string"
          },
          "profile-name": {
            "type": "string"
          },
          "down-sla": {
            "type": "string"
          },
          "service-id": {
            "type": "string"
          },
          "up-sla": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "uplink-endpoint": {
            "$ref": "#/components/schemas/UplinkEndpoint4"
          },
          "downlink-endpoint": {
            "$ref": "#/components/schemas/DownlinkEndpoint4"
          },
          "remote-id": {
            "type": "string"
          },
          "content-provider-name": {
            "type": "string"
          }
        },
        "example": {
          "success": "true",
          "timestamp": "2020-05-07T09:44:49.020Z",
          "state": "activated",
          "service-type": "",
          "minor-code": "",
          "major-code": "none",
          "error-description": "",
          "profile-name": "SDX Service1 100M",
          "down-sla": "",
          "service-id": "Service",
          "up-sla": "",
          "status": "activated",
          "uplink-endpoint": {
            "interface-endpoint": {
              "device-name": "PON-Blade-1",
              "outer-tag-vlan-id": 227,
              "interface-name": "PON-Blade-1-Provider-Interface",
              "ipv4-address": "2.2.2.2",
              "interface-id": "1",
              "content-provider-name": "Content-Provider",
              "inner-tag-vlan-id": 2257
            }
          },
          "downlink-endpoint": {
            "interface-endpoint": {
              "device-name": "ONU-1",
              "outer-tag-vlan-id": "untagged",
              "interface-name": "ONU-1-to-Subscriber",
              "ipv4-address": "3.3.3.3",
              "interface-id": "virtual-ethernet 0/1",
              "inner-tag-vlan-id": "none"
            }
          },
          "remote-id": "12",
          "content-provider-name": "Content-Provider"
        }
      },
      "UplinkEndpoint4": {
        "title": "UplinkEndpoint4",
        "required": [
          "interface-endpoint"
        ],
        "type": "object",
        "properties": {
          "interface-endpoint": {
            "$ref": "#/components/schemas/InterfaceEndpoint8"
          }
        },
        "example": {
          "interface-endpoint": {
            "device-name": "PON-Blade-1",
            "outer-tag-vlan-id": 227,
            "interface-name": "PON-Blade-1-Provider-Interface",
            "ipv4-address": "2.2.2.2",
            "interface-id": "1",
            "content-provider-name": "Content-Provider",
            "inner-tag-vlan-id": 2257
          }
        }
      },
      "InterfaceEndpoint8": {
        "title": "InterfaceEndpoint8",
        "required": [
          "device-name",
          "outer-tag-vlan-id",
          "interface-name",
          "ipv4-address",
          "interface-id",
          "content-provider-name",
          "inner-tag-vlan-id"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "outer-tag-vlan-id": {
            "type": "integer",
            "format": "int32"
          },
          "interface-name": {
            "type": "string"
          },
          "ipv4-address": {
            "type": "string"
          },
          "interface-id": {
            "type": "string"
          },
          "content-provider-name": {
            "type": "string"
          },
          "inner-tag-vlan-id": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "device-name": "PON-Blade-1",
          "outer-tag-vlan-id": 227,
          "interface-name": "PON-Blade-1-Provider-Interface",
          "ipv4-address": "2.2.2.2",
          "interface-id": "1",
          "content-provider-name": "Content-Provider",
          "inner-tag-vlan-id": 2257
        }
      },
      "DownlinkEndpoint4": {
        "title": "DownlinkEndpoint4",
        "required": [
          "interface-endpoint"
        ],
        "type": "object",
        "properties": {
          "interface-endpoint": {
            "$ref": "#/components/schemas/InterfaceEndpoint9"
          }
        },
        "example": {
          "interface-endpoint": {
            "device-name": "ONU-1",
            "outer-tag-vlan-id": "untagged",
            "interface-name": "ONU-1-to-Subscriber",
            "ipv4-address": "3.3.3.3",
            "interface-id": "virtual-ethernet 0/1",
            "inner-tag-vlan-id": "none"
          }
        }
      },
      "InterfaceEndpoint9": {
        "title": "InterfaceEndpoint9",
        "required": [
          "device-name",
          "outer-tag-vlan-id",
          "interface-name",
          "ipv4-address",
          "interface-id",
          "inner-tag-vlan-id"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "outer-tag-vlan-id": {
            "type": "string"
          },
          "interface-name": {
            "type": "string"
          },
          "ipv4-address": {
            "type": "string"
          },
          "interface-id": {
            "type": "string"
          },
          "inner-tag-vlan-id": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "ONU-1",
          "outer-tag-vlan-id": "untagged",
          "interface-name": "ONU-1-to-Subscriber",
          "ipv4-address": "3.3.3.3",
          "interface-id": "virtual-ethernet 0/1",
          "inner-tag-vlan-id": "none"
        }
      },
      "GetServiceProfile": {
        "title": "GetServiceProfile",
        "required": [
          "service-profile-name",
          "service-type",
          "up-sla",
          "down-sla"
        ],
        "type": "object",
        "properties": {
          "service-profile-name": {
            "type": "string"
          },
          "service-type": {
            "type": "string"
          },
          "up-sla": {
            "type": "string"
          },
          "down-sla": {
            "type": "string"
          }
        },
        "example": {
          "service-profile-name": "LCI Service Profile Vector",
          "service-type": "data",
          "up-sla": "",
          "down-sla": ""
        }
      },
      "DeactivateServiceRequest": {
        "title": "DeactivateServiceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input146"
          }
        },
        "example": {
          "input": {
            "service-context": {
              "service-id": "Service"
            }
          }
        }
      },
      "DeactivateService-AlreadyDeactivated1": {
        "title": "DeactivateService-AlreadyDeactivated1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'deactivate' not allowed for Service with state 'deployed'"
          }
        }
      },
      "DeactivateService-Success": {
        "title": "DeactivateService-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output173"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-07T08:15:34.579000",
            "service-id": "Service",
            "status": "deactivating",
            "trans-id": "96f11c83-aa4f-468f-a3fb-d0c22531126d",
            "completion-status": "in-progress"
          }
        }
      },
      "DeactivateService-IncorrectServiceNotExists1": {
        "title": "DeactivateService-IncorrectServiceNotExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Service InvalidService does not exist"
          }
        }
      },
      "UndeployServiceRequest": {
        "title": "UndeployServiceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input146"
          }
        },
        "example": {
          "input": {
            "service-context": {
              "service-id": "Service"
            }
          }
        }
      },
      "UndeployService-Success": {
        "title": "UndeployService-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output173"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-07T08:34:05.149000",
            "service-id": "Service",
            "status": "undeploying",
            "trans-id": "604ee8b4-397d-49da-8647-1bce1cac79d3",
            "completion-status": "in-progress"
          }
        }
      },
      "UndeployService-IncorrectServiceNotExists1": {
        "title": "UndeployService-IncorrectServiceNotExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Service InvalidService does not exist"
          }
        }
      },
      "UndeployService-AlreadyUndeployed1": {
        "title": "UndeployService-AlreadyUndeployed1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'undeploy' not allowed for Service with state 'configured'"
          }
        }
      },
      "DeleteServiceRequest": {
        "title": "DeleteServiceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input146"
          }
        },
        "example": {
          "input": {
            "service-context": {
              "service-id": "Service"
            }
          }
        }
      },
      "DeleteService-AlreadyDeleted1": {
        "title": "DeleteService-AlreadyDeleted1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Service Service does not exist"
          }
        }
      },
      "DeleteService-IncorrectServiceNotExists1": {
        "title": "DeleteService-IncorrectServiceNotExists1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Service InvalidService does not exist"
          }
        }
      },
      "DeleteService-Success": {
        "title": "DeleteService-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output173"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-07T09:40:00.968000",
            "service-id": "Service",
            "status": "deleting",
            "trans-id": "25206173-1ee4-4027-857c-dce61aa9570b",
            "completion-status": "in-progress"
          }
        }
      },
      "ForceRemoveServiceRequest": {
        "title": "ForceRemoveServiceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input146"
          }
        },
        "example": {
          "input": {
            "service-context": {
              "service-id": "{{services-extra-svc-name}}"
            }
          }
        }
      },
      "ForceDeleteService-Failure1": {
        "title": "ForceDeleteService-Failure1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Invalid input",
            "error-message": "Expected message of form {\n  One of [\n    service-context : {\n      service-id : <String>\n    }\n    device-context : {\n      device-name : <String>\n    }\n    interface-context : {\n      interface-name : <String>\n    }\n  ]\n}"
          }
        }
      },
      "ForceDeleteService-Success": {
        "title": "ForceDeleteService-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output137"
          }
        },
        "example": {
          "output": {
            "trans-id": "5a0d95f8-c64c-4ae6-bf26-7409f4f8f106",
            "timestamp": "2020-06-26T07:19:59.755000",
            "status": "force-deleting",
            "completion-status": "in-progress"
          }
        }
      },
      "ResolveProfilesforDeviceRequest": {
        "title": "ResolveProfilesforDeviceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input98"
          }
        },
        "example": {
          "input": {
            "device-context": {
              "device-name": "{{profiles-device-name}}"
            }
          }
        }
      },
      "ResolveProfilesforDevice": {
        "title": "ResolveProfilesforDevice",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output186"
          }
        },
        "example": {
          "output": {
            "profile": [
              {
                "type": "file-transfer-server-profile",
                "name": "file-transfer-2"
              }
            ]
          }
        }
      },
      "Output186": {
        "title": "Output186",
        "required": [
          "profile"
        ],
        "type": "object",
        "properties": {
          "profile": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Profile"
            },
            "description": ""
          }
        },
        "example": {
          "profile": [
            {
              "type": "file-transfer-server-profile",
              "name": "file-transfer-2"
            }
          ]
        }
      },
      "ResolveProfilesforDevicewithSegmentRoleRequest": {
        "title": "ResolveProfilesforDevicewithSegmentRoleRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input159"
          }
        },
        "example": {
          "input": {
            "device-context": {
              "device-name": "{{profiles-device-name}}",
              "segment-role": "{{profiles-segment-role}}"
            }
          }
        }
      },
      "Input159": {
        "title": "Input159",
        "required": [
          "device-context"
        ],
        "type": "object",
        "properties": {
          "device-context": {
            "$ref": "#/components/schemas/DeviceContext19"
          }
        },
        "example": {
          "device-context": {
            "device-name": "{{profiles-device-name}}",
            "segment-role": "{{profiles-segment-role}}"
          }
        }
      },
      "DeviceContext19": {
        "title": "DeviceContext19",
        "required": [
          "device-name",
          "segment-role"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "segment-role": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "{{profiles-device-name}}",
          "segment-role": "{{profiles-segment-role}}"
        }
      },
      "ResolveProfilesforDevicewithSegmentRole": {
        "title": "ResolveProfilesforDevicewithSegmentRole",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output186"
          }
        },
        "example": {
          "output": {
            "profile": [
              {
                "type": "file-transfer-server-profile",
                "name": "file-transfer-2"
              }
            ]
          }
        }
      },
      "ResolveProfilesforDevicewithprofile-nameandprofile-typeRequest": {
        "title": "ResolveProfilesforDevicewithprofile-nameandprofile-typeRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input160"
          }
        },
        "example": {
          "input": {
            "device-context": {
              "device-name": "{{profiles-device-name}}",
              "profile-name": "grouping",
              "profile-type": "grouping-profile-type"
            }
          }
        }
      },
      "Input160": {
        "title": "Input160",
        "required": [
          "device-context"
        ],
        "type": "object",
        "properties": {
          "device-context": {
            "$ref": "#/components/schemas/DeviceContext20"
          }
        },
        "example": {
          "device-context": {
            "device-name": "{{profiles-device-name}}",
            "profile-name": "grouping",
            "profile-type": "grouping-profile-type"
          }
        }
      },
      "DeviceContext20": {
        "title": "DeviceContext20",
        "required": [
          "device-name",
          "profile-name",
          "profile-type"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "profile-name": {
            "type": "string"
          },
          "profile-type": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "{{profiles-device-name}}",
          "profile-name": "grouping",
          "profile-type": "grouping-profile-type"
        }
      },
      "ResolveProfilesforDevicewithprofile-nameandprofile-type": {
        "title": "ResolveProfilesforDevicewithprofile-nameandprofile-type",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output186"
          }
        },
        "example": {
          "output": {
            "profile": [
              {
                "type": "file-transfer-server-profile-type",
                "name": "File Server Profile"
              },
              {
                "type": "device-software-upgrade-profile-type",
                "name": "401 GPON ONU Upgrade Profile"
              }
            ]
          }
        }
      },
      "ResolveProfilesforInterfaceRequest": {
        "title": "ResolveProfilesforInterfaceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input115"
          }
        },
        "example": {
          "input": {
            "interface-context": {
              "interface-name": "{{profiles-int-name}}"
            }
          }
        }
      },
      "ResolveProfilesforInterface": {
        "title": "ResolveProfilesforInterface",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output186"
          }
        },
        "example": {
          "output": {
            "profile": [
              {
                "type": "file-transfer-server-profile",
                "name": "file-transfer-2"
              }
            ]
          }
        }
      },
      "ResolveProfilesforInterfacewithSegmentRoleRequest": {
        "title": "ResolveProfilesforInterfacewithSegmentRoleRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input162"
          }
        },
        "example": {
          "input": {
            "interface-context": {
              "interface-name": "{{profiles-int-name}}",
              "segment-role": "{{profiles-segment-role}}"
            }
          }
        }
      },
      "Input162": {
        "title": "Input162",
        "required": [
          "interface-context"
        ],
        "type": "object",
        "properties": {
          "interface-context": {
            "$ref": "#/components/schemas/InterfaceContext18"
          }
        },
        "example": {
          "interface-context": {
            "interface-name": "{{profiles-int-name}}",
            "segment-role": "{{profiles-segment-role}}"
          }
        }
      },
      "InterfaceContext18": {
        "title": "InterfaceContext18",
        "required": [
          "interface-name",
          "segment-role"
        ],
        "type": "object",
        "properties": {
          "interface-name": {
            "type": "string"
          },
          "segment-role": {
            "type": "string"
          }
        },
        "example": {
          "interface-name": "{{profiles-int-name}}",
          "segment-role": "{{profiles-segment-role}}"
        }
      },
      "ResolveProfilesforInterfacewithSegmentRole": {
        "title": "ResolveProfilesforInterfacewithSegmentRole",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output186"
          }
        },
        "example": {
          "output": {
            "profile": [
              {
                "type": "file-transfer-server-profile",
                "name": "file-transfer-2"
              }
            ]
          }
        }
      },
      "ResolveProfilesforInterfacewithprofile-nameandprofile-typeRequest": {
        "title": "ResolveProfilesforInterfacewithprofile-nameandprofile-typeRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input163"
          }
        },
        "example": {
          "input": {
            "interface-context": {
              "interface-name": "{{profiles-int-name}}",
              "profile-name": "conditional",
              "profile-type": "conditional-profile-type"
            }
          }
        }
      },
      "Input163": {
        "title": "Input163",
        "required": [
          "interface-context"
        ],
        "type": "object",
        "properties": {
          "interface-context": {
            "$ref": "#/components/schemas/InterfaceContext19"
          }
        },
        "example": {
          "interface-context": {
            "interface-name": "{{profiles-int-name}}",
            "profile-name": "conditional",
            "profile-type": "conditional-profile-type"
          }
        }
      },
      "InterfaceContext19": {
        "title": "InterfaceContext19",
        "required": [
          "interface-name",
          "profile-name",
          "profile-type"
        ],
        "type": "object",
        "properties": {
          "interface-name": {
            "type": "string"
          },
          "profile-name": {
            "type": "string"
          },
          "profile-type": {
            "type": "string"
          }
        },
        "example": {
          "interface-name": "{{profiles-int-name}}",
          "profile-name": "conditional",
          "profile-type": "conditional-profile-type"
        }
      },
      "ResolveProfilesforInterfacewithprofile-nameandprofile-type": {
        "title": "ResolveProfilesforInterfacewithprofile-nameandprofile-type",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output186"
          }
        },
        "example": {
          "output": {
            "profile": [
              {
                "type": "alarm-severity-profile-type",
                "name": "dpu-alarm-profile-v1.0"
              }
            ]
          }
        }
      },
      "GetAllProfiles": {
        "title": "GetAllProfiles",
        "required": [
          "profiles"
        ],
        "type": "object",
        "properties": {
          "profiles": {
            "$ref": "#/components/schemas/Profiles"
          }
        },
        "example": {
          "profiles": {
            "profile-type": [],
            "profile": [
              {
                "name": "ANCP DSL Topology",
                "state": "activated",
                "type": "ancp-profile-type",
                "parameters": {
                  "parameter": [
                    {
                      "name": "autoupgrade",
                      "value": "false"
                    },
                    {
                      "name": "filename",
                      "value": "cpe_firmware.bin"
                    },
                    {
                      "name": "reboot-timeout",
                      "value": "600"
                    },
                    {
                      "name": "version",
                      "value": "1.2.3.0"
                    }
                  ]
                }
              },
              {
                "name": "ANCP DSL Topology Original",
                "state": "activated",
                "type": "ancp-profile-type",
                "parameters": {
                  "parameter": [
                    {
                      "name": "autoupgrade",
                      "value": "false"
                    },
                    {
                      "name": "filename",
                      "value": "cpe_firmware.bin"
                    },
                    {
                      "name": "reboot-timeout",
                      "value": "600"
                    },
                    {
                      "name": "version",
                      "value": "1.2.3.0"
                    }
                  ]
                }
              },
              {
                "name": "conditional",
                "state": "activated",
                "type": "conditional-profile-type",
                "condition": {
                  "profile-name": "file-transfer-2",
                  "profile-type": "file-transfer-server-profile",
                  "device-condition": {
                    "default": true
                  }
                }
              },
              {
                "name": "ONU Ethernet UNI Profile",
                "state": "activated",
                "type": "ethernet-interface-type"
              },
              {
                "name": "ONU Ethernet UNI Profile Original",
                "state": "activated",
                "type": "ethernet-interface-type"
              },
              {
                "name": "another-profile",
                "state": "activated",
                "type": "ethernet-interface-type"
              },
              {
                "name": "file-transfer-1",
                "state": "activated",
                "type": "file-transfer-server-profile"
              },
              {
                "name": "file-transfer-2",
                "state": "activated",
                "type": "file-transfer-server-profile"
              },
              {
                "name": "grouping",
                "state": "activated",
                "type": "grouping-profile-type",
                "references": {
                  "reference": [
                    {
                      "profile-name": "another-profile",
                      "profile-type": "ethernet-interface-type"
                    },
                    {
                      "profile-name": "file-transfer-2",
                      "profile-type": "file-transfer-server-profile"
                    }
                  ]
                }
              },
              {
                "name": "tpid-1",
                "state": "activated",
                "type": "tpid-profile-type"
              }
            ],
            "vectors": {
              "vector": [
                {
                  "name": "Device Config Vector",
                  "state": "activated",
                  "profile": [
                    {
                      "name": "ANCP DSL Topology Original",
                      "type": "ancp-profile-type"
                    }
                  ],
                  "type": "device"
                },
                {
                  "name": "ONU Eth UNI Profile Vector",
                  "state": "activated",
                  "profile": [
                    {
                      "name": "ONU Ethernet UNI Profile Original",
                      "type": "ethernet-interface-type"
                    }
                  ],
                  "type": "interface"
                },
                {
                  "profile": [],
                  "name": "SDX Service1 100M",
                  "state": "activated",
                  "type": "service"
                },
                {
                  "profile": [],
                  "name": "SDX Service1 100M DHCP",
                  "state": "activated",
                  "type": "service"
                },
                {
                  "profile": [],
                  "name": "Sample Bundle Vector",
                  "state": "activated",
                  "type": "bundle"
                },
                {
                  "name": "SimpleInterfaceVector",
                  "state": "activated",
                  "profile": [
                    {
                      "name": "file-transfer-2",
                      "type": "file-transfer-server-profile"
                    }
                  ],
                  "type": "interface"
                },
                {
                  "name": "SimpleVector",
                  "state": "activated",
                  "profile": [
                    {
                      "name": "file-transfer-2",
                      "type": "file-transfer-server-profile"
                    }
                  ],
                  "type": "device"
                }
              ]
            }
          }
        }
      },
      "Profiles": {
        "title": "Profiles",
        "required": [
          "profile-type",
          "profile",
          "vectors"
        ],
        "type": "object",
        "properties": {
          "profile-type": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "profile": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Profile10"
            },
            "description": ""
          },
          "vectors": {
            "$ref": "#/components/schemas/Vectors"
          }
        },
        "example": {
          "profile-type": [],
          "profile": [
            {
              "name": "ANCP DSL Topology",
              "state": "activated",
              "type": "ancp-profile-type",
              "parameters": {
                "parameter": [
                  {
                    "name": "autoupgrade",
                    "value": "false"
                  },
                  {
                    "name": "filename",
                    "value": "cpe_firmware.bin"
                  },
                  {
                    "name": "reboot-timeout",
                    "value": "600"
                  },
                  {
                    "name": "version",
                    "value": "1.2.3.0"
                  }
                ]
              }
            },
            {
              "name": "ANCP DSL Topology Original",
              "state": "activated",
              "type": "ancp-profile-type",
              "parameters": {
                "parameter": [
                  {
                    "name": "autoupgrade",
                    "value": "false"
                  },
                  {
                    "name": "filename",
                    "value": "cpe_firmware.bin"
                  },
                  {
                    "name": "reboot-timeout",
                    "value": "600"
                  },
                  {
                    "name": "version",
                    "value": "1.2.3.0"
                  }
                ]
              }
            },
            {
              "name": "conditional",
              "state": "activated",
              "type": "conditional-profile-type",
              "condition": {
                "profile-name": "file-transfer-2",
                "profile-type": "file-transfer-server-profile",
                "device-condition": {
                  "default": true
                }
              }
            },
            {
              "name": "ONU Ethernet UNI Profile",
              "state": "activated",
              "type": "ethernet-interface-type"
            },
            {
              "name": "ONU Ethernet UNI Profile Original",
              "state": "activated",
              "type": "ethernet-interface-type"
            },
            {
              "name": "another-profile",
              "state": "activated",
              "type": "ethernet-interface-type"
            },
            {
              "name": "file-transfer-1",
              "state": "activated",
              "type": "file-transfer-server-profile"
            },
            {
              "name": "file-transfer-2",
              "state": "activated",
              "type": "file-transfer-server-profile"
            },
            {
              "name": "grouping",
              "state": "activated",
              "type": "grouping-profile-type",
              "references": {
                "reference": [
                  {
                    "profile-name": "another-profile",
                    "profile-type": "ethernet-interface-type"
                  },
                  {
                    "profile-name": "file-transfer-2",
                    "profile-type": "file-transfer-server-profile"
                  }
                ]
              }
            },
            {
              "name": "tpid-1",
              "state": "activated",
              "type": "tpid-profile-type"
            }
          ],
          "vectors": {
            "vector": [
              {
                "name": "Device Config Vector",
                "state": "activated",
                "profile": [
                  {
                    "name": "ANCP DSL Topology Original",
                    "type": "ancp-profile-type"
                  }
                ],
                "type": "device"
              },
              {
                "name": "ONU Eth UNI Profile Vector",
                "state": "activated",
                "profile": [
                  {
                    "name": "ONU Ethernet UNI Profile Original",
                    "type": "ethernet-interface-type"
                  }
                ],
                "type": "interface"
              },
              {
                "profile": [],
                "name": "SDX Service1 100M",
                "state": "activated",
                "type": "service"
              },
              {
                "profile": [],
                "name": "SDX Service1 100M DHCP",
                "state": "activated",
                "type": "service"
              },
              {
                "profile": [],
                "name": "Sample Bundle Vector",
                "state": "activated",
                "type": "bundle"
              },
              {
                "name": "SimpleInterfaceVector",
                "state": "activated",
                "profile": [
                  {
                    "name": "file-transfer-2",
                    "type": "file-transfer-server-profile"
                  }
                ],
                "type": "interface"
              },
              {
                "name": "SimpleVector",
                "state": "activated",
                "profile": [
                  {
                    "name": "file-transfer-2",
                    "type": "file-transfer-server-profile"
                  }
                ],
                "type": "device"
              }
            ]
          }
        }
      },
      "Profile10": {
        "title": "Profile10",
        "required": [
          "name",
          "state",
          "type"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "parameters": {
            "$ref": "#/components/schemas/Parameters"
          },
          "condition": {
            "$ref": "#/components/schemas/Condition"
          },
          "references": {
            "$ref": "#/components/schemas/References"
          }
        },
        "example": {
          "name": "ANCP DSL Topology",
          "state": "activated",
          "type": "ancp-profile-type",
          "parameters": {
            "parameter": [
              {
                "name": "autoupgrade",
                "value": "false"
              },
              {
                "name": "filename",
                "value": "cpe_firmware.bin"
              },
              {
                "name": "reboot-timeout",
                "value": "600"
              },
              {
                "name": "version",
                "value": "1.2.3.0"
              }
            ]
          }
        }
      },
      "Parameters": {
        "title": "Parameters",
        "required": [
          "parameter"
        ],
        "type": "object",
        "properties": {
          "parameter": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Parameter"
            },
            "description": ""
          }
        },
        "example": {
          "parameter": [
            {
              "name": "autoupgrade",
              "value": "false"
            },
            {
              "name": "filename",
              "value": "cpe_firmware.bin"
            },
            {
              "name": "reboot-timeout",
              "value": "600"
            },
            {
              "name": "version",
              "value": "1.2.3.0"
            }
          ]
        }
      },
      "Parameter": {
        "title": "Parameter",
        "required": [
          "name",
          "value"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "value": {
            "type": "string"
          }
        },
        "example": {
          "name": "autoupgrade",
          "value": "false"
        }
      },
      "Condition": {
        "title": "Condition",
        "required": [
          "profile-name",
          "profile-type",
          "device-condition"
        ],
        "type": "object",
        "properties": {
          "profile-name": {
            "type": "string"
          },
          "profile-type": {
            "type": "string"
          },
          "device-condition": {
            "$ref": "#/components/schemas/DeviceCondition"
          }
        },
        "example": {
          "profile-name": "file-transfer-2",
          "profile-type": "file-transfer-server-profile",
          "device-condition": {
            "default": true
          }
        }
      },
      "DeviceCondition": {
        "title": "DeviceCondition",
        "required": [
          "default"
        ],
        "type": "object",
        "properties": {
          "default": {
            "type": "boolean"
          }
        },
        "example": {
          "default": true
        }
      },
      "References": {
        "title": "References",
        "required": [
          "reference"
        ],
        "type": "object",
        "properties": {
          "reference": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Reference"
            },
            "description": ""
          }
        },
        "example": {
          "reference": [
            {
              "profile-name": "another-profile",
              "profile-type": "ethernet-interface-type"
            },
            {
              "profile-name": "file-transfer-2",
              "profile-type": "file-transfer-server-profile"
            }
          ]
        }
      },
      "Reference": {
        "title": "Reference",
        "required": [
          "profile-name",
          "profile-type"
        ],
        "type": "object",
        "properties": {
          "profile-name": {
            "type": "string"
          },
          "profile-type": {
            "type": "string"
          }
        },
        "example": {
          "profile-name": "another-profile",
          "profile-type": "ethernet-interface-type"
        }
      },
      "Vectors": {
        "title": "Vectors",
        "required": [
          "vector"
        ],
        "type": "object",
        "properties": {
          "vector": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Vector"
            },
            "description": ""
          }
        },
        "example": {
          "vector": [
            {
              "name": "Device Config Vector",
              "state": "activated",
              "profile": [
                {
                  "name": "ANCP DSL Topology Original",
                  "type": "ancp-profile-type"
                }
              ],
              "type": "device"
            },
            {
              "name": "ONU Eth UNI Profile Vector",
              "state": "activated",
              "profile": [
                {
                  "name": "ONU Ethernet UNI Profile Original",
                  "type": "ethernet-interface-type"
                }
              ],
              "type": "interface"
            },
            {
              "profile": [],
              "name": "SDX Service1 100M",
              "state": "activated",
              "type": "service"
            },
            {
              "profile": [],
              "name": "SDX Service1 100M DHCP",
              "state": "activated",
              "type": "service"
            },
            {
              "profile": [],
              "name": "Sample Bundle Vector",
              "state": "activated",
              "type": "bundle"
            },
            {
              "name": "SimpleInterfaceVector",
              "state": "activated",
              "profile": [
                {
                  "name": "file-transfer-2",
                  "type": "file-transfer-server-profile"
                }
              ],
              "type": "interface"
            },
            {
              "name": "SimpleVector",
              "state": "activated",
              "profile": [
                {
                  "name": "file-transfer-2",
                  "type": "file-transfer-server-profile"
                }
              ],
              "type": "device"
            }
          ]
        }
      },
      "Vector": {
        "title": "Vector",
        "required": [
          "name",
          "state",
          "profile",
          "type"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "profile": {
            "type": "array",
            "items": {
              "oneOf": [
                {
                  "$ref": "#/components/schemas/Profile11"
                },
                {
                  "type": "string"
                }
              ]
            },
            "description": "",
            "example": [
              {
                "name": "ANCP DSL Topology Original",
                "type": "ancp-profile-type"
              }
            ]
          },
          "type": {
            "type": "string"
          }
        },
        "example": {
          "name": "Device Config Vector",
          "state": "activated",
          "profile": [
            {
              "name": "ANCP DSL Topology Original",
              "type": "ancp-profile-type"
            }
          ],
          "type": "device"
        }
      },
      "Profile11": {
        "title": "Profile11",
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          }
        },
        "example": {
          "name": "ANCP DSL Topology Original",
          "type": "ancp-profile-type"
        }
      },
      "GetAllProfiles-Success": {
        "title": "GetAllProfiles-Success",
        "required": [
          "profile"
        ],
        "type": "object",
        "properties": {
          "profile": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Profile12"
            },
            "description": ""
          }
        },
        "example": {
          "profile": [
            {
              "name": "gold-profile",
              "state": "configured"
            },
            {
              "name": "profile-1",
              "state": "activated",
              "parameters": {
                "parameter": [
                  {
                    "format": "^[a-z]$",
                    "name": "parameter-name",
                    "hint": "an excellent letter lower-cased from a-z",
                    "value": "g"
                  }
                ]
              }
            }
          ]
        }
      },
      "Profile12": {
        "title": "Profile12",
        "required": [
          "name",
          "state"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "parameters": {
            "$ref": "#/components/schemas/Parameters1"
          }
        },
        "example": {
          "name": "gold-profile",
          "state": "configured"
        }
      },
      "Parameters1": {
        "title": "Parameters1",
        "required": [
          "parameter"
        ],
        "type": "object",
        "properties": {
          "parameter": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Parameter1"
            },
            "description": ""
          }
        },
        "example": {
          "parameter": [
            {
              "format": "^[a-z]$",
              "name": "parameter-name",
              "hint": "an excellent letter lower-cased from a-z",
              "value": "g"
            }
          ]
        }
      },
      "Parameter1": {
        "title": "Parameter1",
        "required": [
          "format",
          "name",
          "hint",
          "value"
        ],
        "type": "object",
        "properties": {
          "format": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "hint": {
            "type": "string"
          },
          "value": {
            "type": "string"
          }
        },
        "example": {
          "format": "^[a-z]$",
          "name": "parameter-name",
          "hint": "an excellent letter lower-cased from a-z",
          "value": "g"
        }
      },
      "AddaProfileRequest": {
        "title": "AddaProfileRequest",
        "required": [
          "name",
          "state",
          "type",
          "tpid-profile"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "tpid-profile": {
            "$ref": "#/components/schemas/TpidProfile"
          }
        },
        "example": {
          "name": "tpid-profile-1",
          "state": "activated",
          "type": "tpid-profile-type",
          "tpid-profile": {
            "stag-tpid": 8100,
            "ctag-tpid": 8200
          }
        }
      },
      "TpidProfile": {
        "title": "TpidProfile",
        "required": [
          "stag-tpid",
          "ctag-tpid"
        ],
        "type": "object",
        "properties": {
          "stag-tpid": {
            "type": "integer",
            "format": "int32"
          },
          "ctag-tpid": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "stag-tpid": 8100,
          "ctag-tpid": 8200
        }
      },
      "AddaProfileConflict1": {
        "title": "AddaProfileConflict1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Cannot overwrite path List(adtran-cloud-platform-profiles, profiles, profile=tpid-profile-type,tpid-profile-1)"
        }
      },
      "GetProfileCantfindprofile1": {
        "title": "GetProfileCantfindprofile1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Could not find path List(adtran-cloud-platform-profiles, profiles, profile=tpid-profile-type,tpid-profile-1)"
        }
      },
      "GetProfile": {
        "title": "GetProfile",
        "required": [
          "name",
          "state",
          "type",
          "tpid-profile"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "tpid-profile": {
            "$ref": "#/components/schemas/TpidProfile"
          }
        },
        "example": {
          "name": "tpid-profile-1",
          "state": "activated",
          "type": "tpid-profile-type",
          "tpid-profile": {
            "stag-tpid": 8100,
            "ctag-tpid": 8200
          }
        }
      },
      "UpdateaProfileRequest": {
        "title": "UpdateaProfileRequest",
        "required": [
          "name",
          "state",
          "type",
          "tpid-profile"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "tpid-profile": {
            "$ref": "#/components/schemas/TpidProfile"
          }
        },
        "example": {
          "name": "tpid-profile-1",
          "state": "activated",
          "type": "tpid-profile-type",
          "tpid-profile": {
            "stag-tpid": 8101,
            "ctag-tpid": 8200
          }
        }
      },
      "RemoveaProfiledoesntexist1": {
        "title": "RemoveaProfiledoesntexist1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Could not find path List(adtran-cloud-platform-profiles, profiles, profile=tpid-profile-type,tpid-profile-1)"
        }
      },
      "RemoveaProfileConnectedtoanexistingprofilevector1": {
        "title": "RemoveaProfileConnectedtoanexistingprofilevector1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Cannot remove path 'adtran-cloud-platform-profiles:profiles/profile=tpid-profile-type,tpid-profile-1' due to reference from 'adtran-cloud-platform-profiles:profiles/vectors/vector=chris-test/profile=tpid-profile-type,tpid-profile-1'}"
        }
      },
      "GetOverriddenProfilesListforAllMCPObjects": {
        "title": "GetOverriddenProfilesListforAllMCPObjects",
        "required": [
          "overrides"
        ],
        "type": "object",
        "properties": {
          "overrides": {
            "$ref": "#/components/schemas/Overrides"
          }
        }
      },
      "Overrides": {
        "title": "Overrides",
        "required": [
          "device-override",
          "interface-override"
        ],
        "type": "object",
        "properties": {
          "device-override": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DeviceOverride"
            },
            "description": ""
          },
          "interface-override": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/InterfaceOverride"
            },
            "description": ""
          }
        }
      },
      "DeviceOverride": {
        "title": "DeviceOverride",
        "required": [
          "name",
          "profiles"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "profiles": {
            "$ref": "#/components/schemas/Profiles1"
          }
        },
        "example": {
          "name": "ONU-1",
          "profiles": {
            "profile": []
          }
        }
      },
      "Profiles1": {
        "title": "Profiles1",
        "required": [
          "profile"
        ],
        "type": "object",
        "properties": {
          "profile": {
            "type": "array",
            "items": {
              "oneOf": [
                {
                  "$ref": "#/components/schemas/Profile11"
                },
                {
                  "$ref": "#/components/schemas/Profile"
                }
              ]
            },
            "description": "",
            "example": [
              {
                "name": "ANCP DSL Topology",
                "type": "ancp-profile-type"
              }
            ]
          }
        },
        "example": {
          "profile": []
        }
      },
      "InterfaceOverride": {
        "title": "InterfaceOverride",
        "required": [
          "name",
          "profiles"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "profiles": {
            "$ref": "#/components/schemas/Profiles1"
          }
        },
        "example": {
          "name": "ONU-1-to-Subscriber",
          "profiles": {
            "profile": []
          }
        }
      },
      "GetOverriddenProfilesListforInterface": {
        "title": "GetOverriddenProfilesListforInterface",
        "required": [
          "interface-override"
        ],
        "type": "object",
        "properties": {
          "interface-override": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/InterfaceOverride"
            },
            "description": ""
          }
        }
      },
      "GetOverriddenProfilesListforDevice": {
        "title": "GetOverriddenProfilesListforDevice",
        "required": [
          "device-override"
        ],
        "type": "object",
        "properties": {
          "device-override": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DeviceOverride"
            },
            "description": ""
          }
        }
      },
      "AddaProfileVectorRequest": {
        "title": "AddaProfileVectorRequest",
        "required": [
          "name",
          "profile",
          "state",
          "type"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "profile": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Profile"
            },
            "description": ""
          },
          "state": {
            "type": "string"
          },
          "type": {
            "type": "string"
          }
        },
        "example": {
          "name": "NewProfileVector",
          "profile": [
            {
              "name": "{{pv-profile-name-1}}",
              "type": "tpid-profile-type"
            },
            {
              "name": "{{pv-profile-name-2}}",
              "type": "vectoring-profile-type"
            }
          ],
          "state": "activated",
          "type": "device"
        }
      },
      "UpdateaProfileVectorRequest": {
        "title": "UpdateaProfileVectorRequest",
        "required": [
          "name",
          "profile",
          "state",
          "type"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "profile": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Profile"
            },
            "description": ""
          },
          "state": {
            "type": "string"
          },
          "type": {
            "type": "string"
          }
        },
        "example": {
          "name": "NewProfileVector",
          "profile": [
            {
              "name": "{{pv-profile-name-1}}",
              "type": "tpid-profile-type"
            }
          ],
          "state": "activated",
          "type": "device"
        }
      },
      "RemoveaProfileVectorinUsebyAnotherObject1": {
        "title": "RemoveaProfileVectorinUsebyAnotherObject1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Cannot remove path 'adtran-cloud-platform-profiles:profiles/vectors/vector=NewProfileVector' due to reference from 'adtran-cloud-platform-devices:devices/device=device-to-resolve'}"
        }
      },
      "CreateConditionalProfileDeviceConditionRequest": {
        "title": "CreateConditionalProfileDeviceConditionRequest",
        "required": [
          "name",
          "state",
          "type",
          "condition"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "condition": {
            "$ref": "#/components/schemas/Condition1"
          }
        },
        "example": {
          "name": "ExampleDeviceConditional",
          "state": "activated",
          "type": "conditional-profile-type",
          "condition": {
            "profile-name": "{{tpid-profile-site-a}}",
            "profile-type": "tpid-profile-type",
            "device-condition": {
              "default": true,
              "device-model-name": [
                "example-model-name"
              ],
              "management-domain-name": [
                "example-management-domain-name"
              ],
              "device-name": [
                "example-device-name",
                "example-device-name-2",
                "example-device-name-3"
              ],
              "data-center-name": [
                "example-data-center-name"
              ],
              "exclude": {
                "default": false,
                "device-model-name": [
                  "example-model-name-exclude"
                ],
                "management-domain-name": [
                  "example-management-domain-name-exclude"
                ],
                "device-name": [
                  "example-device-name-exclude",
                  "example-device-name-exclude-1",
                  "example-device-name-exclude-2"
                ],
                "data-center-name": [
                  "example-data-center-name-exclude"
                ]
              }
            }
          }
        }
      },
      "Condition1": {
        "title": "Condition1",
        "required": [
          "profile-name",
          "profile-type",
          "device-condition"
        ],
        "type": "object",
        "properties": {
          "profile-name": {
            "type": "string"
          },
          "profile-type": {
            "type": "string"
          },
          "device-condition": {
            "$ref": "#/components/schemas/DeviceCondition1"
          }
        },
        "example": {
          "profile-name": "{{tpid-profile-site-a}}",
          "profile-type": "tpid-profile-type",
          "device-condition": {
            "default": true,
            "device-model-name": [
              "example-model-name"
            ],
            "management-domain-name": [
              "example-management-domain-name"
            ],
            "device-name": [
              "example-device-name",
              "example-device-name-2",
              "example-device-name-3"
            ],
            "data-center-name": [
              "example-data-center-name"
            ],
            "exclude": {
              "default": false,
              "device-model-name": [
                "example-model-name-exclude"
              ],
              "management-domain-name": [
                "example-management-domain-name-exclude"
              ],
              "device-name": [
                "example-device-name-exclude",
                "example-device-name-exclude-1",
                "example-device-name-exclude-2"
              ],
              "data-center-name": [
                "example-data-center-name-exclude"
              ]
            }
          }
        }
      },
      "DeviceCondition1": {
        "title": "DeviceCondition1",
        "required": [
          "default",
          "device-model-name",
          "management-domain-name",
          "device-name",
          "data-center-name",
          "exclude"
        ],
        "type": "object",
        "properties": {
          "default": {
            "type": "boolean"
          },
          "device-model-name": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "management-domain-name": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "device-name": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "data-center-name": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "exclude": {
            "$ref": "#/components/schemas/Exclude"
          }
        },
        "example": {
          "default": true,
          "device-model-name": [
            "example-model-name"
          ],
          "management-domain-name": [
            "example-management-domain-name"
          ],
          "device-name": [
            "example-device-name",
            "example-device-name-2",
            "example-device-name-3"
          ],
          "data-center-name": [
            "example-data-center-name"
          ],
          "exclude": {
            "default": false,
            "device-model-name": [
              "example-model-name-exclude"
            ],
            "management-domain-name": [
              "example-management-domain-name-exclude"
            ],
            "device-name": [
              "example-device-name-exclude",
              "example-device-name-exclude-1",
              "example-device-name-exclude-2"
            ],
            "data-center-name": [
              "example-data-center-name-exclude"
            ]
          }
        }
      },
      "Exclude": {
        "title": "Exclude",
        "required": [
          "default",
          "device-model-name",
          "management-domain-name",
          "device-name",
          "data-center-name"
        ],
        "type": "object",
        "properties": {
          "default": {
            "type": "boolean"
          },
          "device-model-name": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "management-domain-name": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "device-name": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "data-center-name": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "default": false,
          "device-model-name": [
            "example-model-name-exclude"
          ],
          "management-domain-name": [
            "example-management-domain-name-exclude"
          ],
          "device-name": [
            "example-device-name-exclude",
            "example-device-name-exclude-1",
            "example-device-name-exclude-2"
          ],
          "data-center-name": [
            "example-data-center-name-exclude"
          ]
        }
      },
      "CreateConditionalProfileInterfaceConditionRequest": {
        "title": "CreateConditionalProfileInterfaceConditionRequest",
        "required": [
          "name",
          "state",
          "type",
          "condition"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "condition": {
            "$ref": "#/components/schemas/Condition2"
          }
        },
        "example": {
          "name": "ExampleInterfaceConditional",
          "state": "activated",
          "type": "conditional-profile-type",
          "condition": {
            "profile-name": "{{tpid-profile-site-a}}",
            "profile-type": "tpid-profile-type",
            "interface-condition": {
              "default": true,
              "device-model-name": [
                "example-model-name"
              ],
              "management-domain-name": [
                "example-management-domain-name"
              ],
              "device-name": [
                "example-device-name"
              ],
              "data-center-name": [
                "example-data-center-name"
              ],
              "interface-id": [
                "555-555-1212"
              ],
              "interface-name": [
                "example-interface-name",
                "example-interface-name2"
              ],
              "interface-type": [
                "example-interface-type"
              ],
              "exclude": {
                "default": false,
                "device-model-name": [
                  "example-model-name-exclude"
                ],
                "management-domain-name": [
                  "example-management-domain-name-exclude"
                ],
                "device-name": [
                  "example-device-name-exclude"
                ],
                "data-center-name": [
                  "example-data-center-name-exclude"
                ],
                "interface-id": [
                  "excluded-id"
                ],
                "interface-name": [
                  "example-interface-name-to-exclude",
                  "example-interface-name-to-exclude2"
                ],
                "interface-type": [
                  "excluded-interface-type"
                ]
              }
            }
          }
        }
      },
      "Condition2": {
        "title": "Condition2",
        "required": [
          "profile-name",
          "profile-type",
          "interface-condition"
        ],
        "type": "object",
        "properties": {
          "profile-name": {
            "type": "string"
          },
          "profile-type": {
            "type": "string"
          },
          "interface-condition": {
            "$ref": "#/components/schemas/InterfaceCondition"
          }
        },
        "example": {
          "profile-name": "{{tpid-profile-site-a}}",
          "profile-type": "tpid-profile-type",
          "interface-condition": {
            "default": true,
            "device-model-name": [
              "example-model-name"
            ],
            "management-domain-name": [
              "example-management-domain-name"
            ],
            "device-name": [
              "example-device-name"
            ],
            "data-center-name": [
              "example-data-center-name"
            ],
            "interface-id": [
              "555-555-1212"
            ],
            "interface-name": [
              "example-interface-name",
              "example-interface-name2"
            ],
            "interface-type": [
              "example-interface-type"
            ],
            "exclude": {
              "default": false,
              "device-model-name": [
                "example-model-name-exclude"
              ],
              "management-domain-name": [
                "example-management-domain-name-exclude"
              ],
              "device-name": [
                "example-device-name-exclude"
              ],
              "data-center-name": [
                "example-data-center-name-exclude"
              ],
              "interface-id": [
                "excluded-id"
              ],
              "interface-name": [
                "example-interface-name-to-exclude",
                "example-interface-name-to-exclude2"
              ],
              "interface-type": [
                "excluded-interface-type"
              ]
            }
          }
        }
      },
      "InterfaceCondition": {
        "title": "InterfaceCondition",
        "required": [
          "default",
          "device-model-name",
          "management-domain-name",
          "device-name",
          "data-center-name",
          "interface-id",
          "interface-name",
          "interface-type",
          "exclude"
        ],
        "type": "object",
        "properties": {
          "default": {
            "type": "boolean"
          },
          "device-model-name": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "management-domain-name": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "device-name": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "data-center-name": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "interface-id": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "interface-name": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "interface-type": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "exclude": {
            "$ref": "#/components/schemas/Exclude1"
          }
        },
        "example": {
          "default": true,
          "device-model-name": [
            "example-model-name"
          ],
          "management-domain-name": [
            "example-management-domain-name"
          ],
          "device-name": [
            "example-device-name"
          ],
          "data-center-name": [
            "example-data-center-name"
          ],
          "interface-id": [
            "555-555-1212"
          ],
          "interface-name": [
            "example-interface-name",
            "example-interface-name2"
          ],
          "interface-type": [
            "example-interface-type"
          ],
          "exclude": {
            "default": false,
            "device-model-name": [
              "example-model-name-exclude"
            ],
            "management-domain-name": [
              "example-management-domain-name-exclude"
            ],
            "device-name": [
              "example-device-name-exclude"
            ],
            "data-center-name": [
              "example-data-center-name-exclude"
            ],
            "interface-id": [
              "excluded-id"
            ],
            "interface-name": [
              "example-interface-name-to-exclude",
              "example-interface-name-to-exclude2"
            ],
            "interface-type": [
              "excluded-interface-type"
            ]
          }
        }
      },
      "Exclude1": {
        "title": "Exclude1",
        "required": [
          "default",
          "device-model-name",
          "management-domain-name",
          "device-name",
          "data-center-name",
          "interface-id",
          "interface-name",
          "interface-type"
        ],
        "type": "object",
        "properties": {
          "default": {
            "type": "boolean"
          },
          "device-model-name": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "management-domain-name": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "device-name": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "data-center-name": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "interface-id": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "interface-name": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "interface-type": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "default": false,
          "device-model-name": [
            "example-model-name-exclude"
          ],
          "management-domain-name": [
            "example-management-domain-name-exclude"
          ],
          "device-name": [
            "example-device-name-exclude"
          ],
          "data-center-name": [
            "example-data-center-name-exclude"
          ],
          "interface-id": [
            "excluded-id"
          ],
          "interface-name": [
            "example-interface-name-to-exclude",
            "example-interface-name-to-exclude2"
          ],
          "interface-type": [
            "excluded-interface-type"
          ]
        }
      },
      "SelectByInterfaceNameRequest": {
        "title": "SelectByInterfaceNameRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input164"
          }
        },
        "example": {
          "input": {
            "behavior-context": {
              "behavior-group": "{{select-behavior-tpid}}",
              "behavior": "{{select-behavior-cp-site-a}}",
              "interface-context": {
                "interface-name": [
                  "{{select-behavior-sim-int-name}}"
                ]
              }
            }
          }
        }
      },
      "Input164": {
        "title": "Input164",
        "required": [
          "behavior-context"
        ],
        "type": "object",
        "properties": {
          "behavior-context": {
            "$ref": "#/components/schemas/BehaviorContext"
          }
        },
        "example": {
          "behavior-context": {
            "behavior-group": "{{select-behavior-tpid}}",
            "behavior": "{{select-behavior-cp-site-a}}",
            "interface-context": {
              "interface-name": [
                "{{select-behavior-sim-int-name}}"
              ]
            }
          }
        }
      },
      "BehaviorContext": {
        "title": "BehaviorContext",
        "required": [
          "behavior-group",
          "behavior",
          "interface-context"
        ],
        "type": "object",
        "properties": {
          "behavior-group": {
            "type": "string"
          },
          "behavior": {
            "type": "string"
          },
          "interface-context": {
            "$ref": "#/components/schemas/InterfaceContext20"
          }
        },
        "example": {
          "behavior-group": "{{select-behavior-tpid}}",
          "behavior": "{{select-behavior-cp-site-a}}",
          "interface-context": {
            "interface-name": [
              "{{select-behavior-sim-int-name}}"
            ]
          }
        }
      },
      "InterfaceContext20": {
        "title": "InterfaceContext20",
        "required": [
          "interface-name"
        ],
        "type": "object",
        "properties": {
          "interface-name": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "interface-name": [
            "{{select-behavior-sim-int-name}}"
          ]
        }
      },
      "SelectByInterfaceName": {
        "title": "SelectByInterfaceName",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output192"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-12-15T17:10:56.022834",
            "status": "select-behavior",
            "trans-id": "683c3293-6f25-4184-8eb9-b8d936c560eb",
            "completion-status": "in-progress",
            "select-behavior": "sb-tpid-behavior"
          }
        }
      },
      "Output192": {
        "title": "Output192",
        "required": [
          "timestamp",
          "status",
          "trans-id",
          "completion-status",
          "select-behavior"
        ],
        "type": "object",
        "properties": {
          "timestamp": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "trans-id": {
            "type": "string"
          },
          "completion-status": {
            "type": "string"
          },
          "select-behavior": {
            "type": "string"
          }
        },
        "example": {
          "timestamp": "2020-12-15T17:10:56.022834",
          "status": "select-behavior",
          "trans-id": "683c3293-6f25-4184-8eb9-b8d936c560eb",
          "completion-status": "in-progress",
          "select-behavior": "sb-tpid-behavior"
        }
      },
      "DeselectInterfaceNameRequest": {
        "title": "DeselectInterfaceNameRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input164"
          }
        },
        "example": {
          "input": {
            "behavior-context": {
              "behavior-group": "{{select-behavior-tpid}}",
              "behavior": "{{select-behavior-cp-site-a}}",
              "interface-context": {
                "interface-name": [
                  "{{select-behavior-sim-int-name}}"
                ]
              }
            }
          }
        }
      },
      "DeselectIncludeInterfaceBehavior": {
        "title": "DeselectIncludeInterfaceBehavior",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output193"
          }
        },
        "example": {
          "output": {
            "deselect-behavior": "sb-tpid-behavior",
            "timestamp": "2020-12-15T17:11:25.999794",
            "status": "deselect-behavior",
            "trans-id": "c5a561e2-0b77-4028-b4e5-fe2065ae9e58",
            "completion-status": "in-progress"
          }
        }
      },
      "Output193": {
        "title": "Output193",
        "required": [
          "deselect-behavior",
          "timestamp",
          "status",
          "trans-id",
          "completion-status"
        ],
        "type": "object",
        "properties": {
          "deselect-behavior": {
            "type": "string"
          },
          "timestamp": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "trans-id": {
            "type": "string"
          },
          "completion-status": {
            "type": "string"
          }
        },
        "example": {
          "deselect-behavior": "sb-tpid-behavior",
          "timestamp": "2020-12-15T17:11:25.999794",
          "status": "deselect-behavior",
          "trans-id": "c5a561e2-0b77-4028-b4e5-fe2065ae9e58",
          "completion-status": "in-progress"
        }
      },
      "SelectInterfaceByDeviceNameRequest": {
        "title": "SelectInterfaceByDeviceNameRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input166"
          }
        },
        "example": {
          "input": {
            "behavior-context": {
              "behavior-group": "{{select-behavior-tpid}}",
              "behavior": "{{select-behavior-cp-site-a}}",
              "interface-context": {
                "device-name": [
                  "{{select-behavior-sim-dev-name}}"
                ]
              }
            }
          }
        }
      },
      "Input166": {
        "title": "Input166",
        "required": [
          "behavior-context"
        ],
        "type": "object",
        "properties": {
          "behavior-context": {
            "$ref": "#/components/schemas/BehaviorContext2"
          }
        },
        "example": {
          "behavior-context": {
            "behavior-group": "{{select-behavior-tpid}}",
            "behavior": "{{select-behavior-cp-site-a}}",
            "interface-context": {
              "device-name": [
                "{{select-behavior-sim-dev-name}}"
              ]
            }
          }
        }
      },
      "BehaviorContext2": {
        "title": "BehaviorContext2",
        "required": [
          "behavior-group",
          "behavior",
          "interface-context"
        ],
        "type": "object",
        "properties": {
          "behavior-group": {
            "type": "string"
          },
          "behavior": {
            "type": "string"
          },
          "interface-context": {
            "$ref": "#/components/schemas/InterfaceContext22"
          }
        },
        "example": {
          "behavior-group": "{{select-behavior-tpid}}",
          "behavior": "{{select-behavior-cp-site-a}}",
          "interface-context": {
            "device-name": [
              "{{select-behavior-sim-dev-name}}"
            ]
          }
        }
      },
      "InterfaceContext22": {
        "title": "InterfaceContext22",
        "required": [
          "device-name"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "device-name": [
            "{{select-behavior-sim-dev-name}}"
          ]
        }
      },
      "SelectByDeviceName": {
        "title": "SelectByDeviceName",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output192"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-12-15T17:12:04.045511",
            "status": "select-behavior",
            "trans-id": "56941d2e-cd5d-4ba4-ae8a-90592bbf0fd9",
            "completion-status": "in-progress",
            "select-behavior": "sb-tpid-behavior"
          }
        }
      },
      "DeselectInterfaceByDeviceNameRequest": {
        "title": "DeselectInterfaceByDeviceNameRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input166"
          }
        },
        "example": {
          "input": {
            "behavior-context": {
              "behavior-group": "{{select-behavior-tpid}}",
              "behavior": "{{select-behavior-cp-site-a}}",
              "interface-context": {
                "device-name": [
                  "{{select-behavior-sim-dev-name}}"
                ]
              }
            }
          }
        }
      },
      "DeselectInterfaceByDeviceName": {
        "title": "DeselectInterfaceByDeviceName",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output193"
          }
        },
        "example": {
          "output": {
            "deselect-behavior": "sb-tpid-behavior",
            "timestamp": "2020-12-15T17:12:37.864227",
            "status": "deselect-behavior",
            "trans-id": "d0008de6-3cee-43f4-8904-28c479a4b97e",
            "completion-status": "in-progress"
          }
        }
      },
      "SelectByInterfaceIDRequest": {
        "title": "SelectByInterfaceIDRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input168"
          }
        },
        "example": {
          "input": {
            "behavior-context": {
              "behavior-group": "{{select-behavior-tpid}}",
              "behavior": "{{select-behavior-cp-site-a}}",
              "interface-context": {
                "interface-id": [
                  "{{select-behavior-sim-int-name}}"
                ]
              }
            }
          }
        }
      },
      "Input168": {
        "title": "Input168",
        "required": [
          "behavior-context"
        ],
        "type": "object",
        "properties": {
          "behavior-context": {
            "$ref": "#/components/schemas/BehaviorContext4"
          }
        },
        "example": {
          "behavior-context": {
            "behavior-group": "{{select-behavior-tpid}}",
            "behavior": "{{select-behavior-cp-site-a}}",
            "interface-context": {
              "interface-id": [
                "{{select-behavior-sim-int-name}}"
              ]
            }
          }
        }
      },
      "BehaviorContext4": {
        "title": "BehaviorContext4",
        "required": [
          "behavior-group",
          "behavior",
          "interface-context"
        ],
        "type": "object",
        "properties": {
          "behavior-group": {
            "type": "string"
          },
          "behavior": {
            "type": "string"
          },
          "interface-context": {
            "$ref": "#/components/schemas/InterfaceContext24"
          }
        },
        "example": {
          "behavior-group": "{{select-behavior-tpid}}",
          "behavior": "{{select-behavior-cp-site-a}}",
          "interface-context": {
            "interface-id": [
              "{{select-behavior-sim-int-name}}"
            ]
          }
        }
      },
      "InterfaceContext24": {
        "title": "InterfaceContext24",
        "required": [
          "interface-id"
        ],
        "type": "object",
        "properties": {
          "interface-id": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "interface-id": [
            "{{select-behavior-sim-int-name}}"
          ]
        }
      },
      "SelectByInterfaceID": {
        "title": "SelectByInterfaceID",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output192"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-12-15T17:12:58.481185",
            "status": "select-behavior",
            "trans-id": "cf8b2725-2882-4dca-885f-1b0ab1e4445c",
            "completion-status": "in-progress",
            "select-behavior": "sb-tpid-behavior"
          }
        }
      },
      "DeselectInterfaceIDRequest": {
        "title": "DeselectInterfaceIDRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input168"
          }
        },
        "example": {
          "input": {
            "behavior-context": {
              "behavior-group": "{{select-behavior-tpid}}",
              "behavior": "{{select-behavior-cp-site-a}}",
              "interface-context": {
                "interface-id": [
                  "{{select-behavior-sim-int-name}}"
                ]
              }
            }
          }
        }
      },
      "DeselectInterfaceTypeBehavior": {
        "title": "DeselectInterfaceTypeBehavior",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output193"
          }
        },
        "example": {
          "output": {
            "deselect-behavior": "sb-tpid-behavior",
            "timestamp": "2020-12-15T17:13:22.515590",
            "status": "deselect-behavior",
            "trans-id": "c399f8a1-6104-4fb9-a169-7a63ef776f6d",
            "completion-status": "in-progress"
          }
        }
      },
      "SelectInterfaceByManagementDomainRequest": {
        "title": "SelectInterfaceByManagementDomainRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input170"
          }
        },
        "example": {
          "input": {
            "behavior-context": {
              "behavior-group": "{{select-behavior-tpid}}",
              "behavior": "{{select-behavior-cp-site-a}}",
              "interface-context": {
                "management-domain-name": [
                  "Sim"
                ]
              }
            }
          }
        }
      },
      "Input170": {
        "title": "Input170",
        "required": [
          "behavior-context"
        ],
        "type": "object",
        "properties": {
          "behavior-context": {
            "$ref": "#/components/schemas/BehaviorContext6"
          }
        },
        "example": {
          "behavior-context": {
            "behavior-group": "{{select-behavior-tpid}}",
            "behavior": "{{select-behavior-cp-site-a}}",
            "interface-context": {
              "management-domain-name": [
                "Sim"
              ]
            }
          }
        }
      },
      "BehaviorContext6": {
        "title": "BehaviorContext6",
        "required": [
          "behavior-group",
          "behavior",
          "interface-context"
        ],
        "type": "object",
        "properties": {
          "behavior-group": {
            "type": "string"
          },
          "behavior": {
            "type": "string"
          },
          "interface-context": {
            "$ref": "#/components/schemas/InterfaceContext26"
          }
        },
        "example": {
          "behavior-group": "{{select-behavior-tpid}}",
          "behavior": "{{select-behavior-cp-site-a}}",
          "interface-context": {
            "management-domain-name": [
              "Sim"
            ]
          }
        }
      },
      "InterfaceContext26": {
        "title": "InterfaceContext26",
        "required": [
          "management-domain-name"
        ],
        "type": "object",
        "properties": {
          "management-domain-name": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "management-domain-name": [
            "Sim"
          ]
        }
      },
      "SelectByManagementDomain": {
        "title": "SelectByManagementDomain",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output192"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-12-15T17:13:38.980168",
            "status": "select-behavior",
            "trans-id": "b7190e36-dabe-4feb-9d01-bcb26bdad1b1",
            "completion-status": "in-progress",
            "select-behavior": "sb-tpid-behavior"
          }
        }
      },
      "DeselectInterfaceByManagementDomainRequest": {
        "title": "DeselectInterfaceByManagementDomainRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input170"
          }
        },
        "example": {
          "input": {
            "behavior-context": {
              "behavior-group": "{{select-behavior-tpid}}",
              "behavior": "{{select-behavior-cp-site-a}}",
              "interface-context": {
                "management-domain-name": [
                  "Sim"
                ]
              }
            }
          }
        }
      },
      "DeselectManagmentDomain": {
        "title": "DeselectManagmentDomain",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output193"
          }
        },
        "example": {
          "output": {
            "deselect-behavior": "sb-tpid-behavior",
            "timestamp": "2020-12-15T17:14:11.534509",
            "status": "deselect-behavior",
            "trans-id": "25726dca-68a9-4e49-9fd0-f62922f8dff3",
            "completion-status": "in-progress"
          }
        }
      },
      "SelectByInterfaceTypeRequest": {
        "title": "SelectByInterfaceTypeRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input172"
          }
        },
        "example": {
          "input": {
            "behavior-context": {
              "behavior-group": "{{select-behavior-tpid}}",
              "behavior": "{{select-behavior-cp-site-a}}",
              "interface-context": {
                "interface-type": [
                  "Simulated"
                ]
              }
            }
          }
        }
      },
      "Input172": {
        "title": "Input172",
        "required": [
          "behavior-context"
        ],
        "type": "object",
        "properties": {
          "behavior-context": {
            "$ref": "#/components/schemas/BehaviorContext8"
          }
        },
        "example": {
          "behavior-context": {
            "behavior-group": "{{select-behavior-tpid}}",
            "behavior": "{{select-behavior-cp-site-a}}",
            "interface-context": {
              "interface-type": [
                "Simulated"
              ]
            }
          }
        }
      },
      "BehaviorContext8": {
        "title": "BehaviorContext8",
        "required": [
          "behavior-group",
          "behavior",
          "interface-context"
        ],
        "type": "object",
        "properties": {
          "behavior-group": {
            "type": "string"
          },
          "behavior": {
            "type": "string"
          },
          "interface-context": {
            "$ref": "#/components/schemas/InterfaceContext28"
          }
        },
        "example": {
          "behavior-group": "{{select-behavior-tpid}}",
          "behavior": "{{select-behavior-cp-site-a}}",
          "interface-context": {
            "interface-type": [
              "Simulated"
            ]
          }
        }
      },
      "InterfaceContext28": {
        "title": "InterfaceContext28",
        "required": [
          "interface-type"
        ],
        "type": "object",
        "properties": {
          "interface-type": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "interface-type": [
            "Simulated"
          ]
        }
      },
      "SelectByInterfaceType": {
        "title": "SelectByInterfaceType",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output192"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-12-15T17:14:32.409284",
            "status": "select-behavior",
            "trans-id": "63088922-7f10-43db-bd75-30d21a41c521",
            "completion-status": "in-progress",
            "select-behavior": "sb-tpid-behavior"
          }
        }
      },
      "DeselectInterfaceTypeRequest": {
        "title": "DeselectInterfaceTypeRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input172"
          }
        },
        "example": {
          "input": {
            "behavior-context": {
              "behavior-group": "{{select-behavior-tpid}}",
              "behavior": "{{select-behavior-cp-site-a}}",
              "interface-context": {
                "interface-type": [
                  "Simulated"
                ]
              }
            }
          }
        }
      },
      "DeselectInterfaceType": {
        "title": "DeselectInterfaceType",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output193"
          }
        },
        "example": {
          "output": {
            "deselect-behavior": "sb-tpid-behavior",
            "timestamp": "2020-12-15T17:15:18.795280",
            "status": "deselect-behavior",
            "trans-id": "6cbdd615-db69-47f6-bd20-1f9a05d1bb7b",
            "completion-status": "in-progress"
          }
        }
      },
      "SelectInterfaceByDeviceModelNameRequest": {
        "title": "SelectInterfaceByDeviceModelNameRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input174"
          }
        },
        "example": {
          "input": {
            "behavior-context": {
              "behavior-group": "{{select-behavior-tpid}}",
              "behavior": "{{select-behavior-cp-site-a}}",
              "interface-context": {
                "device-model-name": [
                  "Simulated"
                ]
              }
            }
          }
        }
      },
      "Input174": {
        "title": "Input174",
        "required": [
          "behavior-context"
        ],
        "type": "object",
        "properties": {
          "behavior-context": {
            "$ref": "#/components/schemas/BehaviorContext10"
          }
        },
        "example": {
          "behavior-context": {
            "behavior-group": "{{select-behavior-tpid}}",
            "behavior": "{{select-behavior-cp-site-a}}",
            "interface-context": {
              "device-model-name": [
                "Simulated"
              ]
            }
          }
        }
      },
      "BehaviorContext10": {
        "title": "BehaviorContext10",
        "required": [
          "behavior-group",
          "behavior",
          "interface-context"
        ],
        "type": "object",
        "properties": {
          "behavior-group": {
            "type": "string"
          },
          "behavior": {
            "type": "string"
          },
          "interface-context": {
            "$ref": "#/components/schemas/InterfaceContext30"
          }
        },
        "example": {
          "behavior-group": "{{select-behavior-tpid}}",
          "behavior": "{{select-behavior-cp-site-a}}",
          "interface-context": {
            "device-model-name": [
              "Simulated"
            ]
          }
        }
      },
      "InterfaceContext30": {
        "title": "InterfaceContext30",
        "required": [
          "device-model-name"
        ],
        "type": "object",
        "properties": {
          "device-model-name": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "device-model-name": [
            "Simulated"
          ]
        }
      },
      "SelectInterfaceByDeviceModelName": {
        "title": "SelectInterfaceByDeviceModelName",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output192"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-12-15T17:15:50.739163",
            "status": "select-behavior",
            "trans-id": "86bb9fbf-daf5-4854-8396-e2e706e3ec80",
            "completion-status": "in-progress",
            "select-behavior": "sb-tpid-behavior"
          }
        }
      },
      "DeselectInterfaceByDeviceModelNameRequest": {
        "title": "DeselectInterfaceByDeviceModelNameRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input174"
          }
        },
        "example": {
          "input": {
            "behavior-context": {
              "behavior-group": "{{select-behavior-tpid}}",
              "behavior": "{{select-behavior-cp-site-a}}",
              "interface-context": {
                "device-model-name": [
                  "Simulated"
                ]
              }
            }
          }
        }
      },
      "DeselectInterfaceBehavior": {
        "title": "DeselectInterfaceBehavior",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output193"
          }
        },
        "example": {
          "output": {
            "deselect-behavior": "sb-tpid-behavior",
            "timestamp": "2020-12-14T15:27:48.559845",
            "status": "deselect-behavior",
            "trans-id": "34bd6cb0-915d-4dbb-ae1a-852250acc58b",
            "completion-status": "in-progress"
          }
        }
      },
      "DeselectInterfaceByDeviceModelName": {
        "title": "DeselectInterfaceByDeviceModelName",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output193"
          }
        },
        "example": {
          "output": {
            "deselect-behavior": "sb-tpid-behavior",
            "timestamp": "2020-12-15T17:16:05.016091",
            "status": "deselect-behavior",
            "trans-id": "f7987d22-53f5-4d85-9adc-bed2a2b3070a",
            "completion-status": "in-progress"
          }
        }
      },
      "VerifyInterfaceBehaviorRequest": {
        "title": "VerifyInterfaceBehaviorRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input115"
          }
        },
        "example": {
          "input": {
            "interface-context": {
              "interface-name": "{{select-behavior-sim-int-name}}"
            }
          }
        }
      },
      "VerifyInterfaceBehavior": {
        "title": "VerifyInterfaceBehavior",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output186"
          }
        },
        "example": {
          "output": {
            "profile": [
              {
                "type": "tpid-profile-type",
                "name": "sb-tpid-site-b"
              }
            ]
          }
        }
      },
      "SelectByDeviceNameRequest": {
        "title": "SelectByDeviceNameRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input177"
          }
        },
        "example": {
          "input": {
            "behavior-context": {
              "behavior-group": "{{select-behavior-tpid}}",
              "behavior": "{{select-behavior-cp-site-a}}",
              "device-context": {
                "device-name": [
                  "{{select-behavior-sim-dev-name}}"
                ]
              }
            }
          }
        }
      },
      "Input177": {
        "title": "Input177",
        "required": [
          "behavior-context"
        ],
        "type": "object",
        "properties": {
          "behavior-context": {
            "$ref": "#/components/schemas/BehaviorContext12"
          }
        },
        "example": {
          "behavior-context": {
            "behavior-group": "{{select-behavior-tpid}}",
            "behavior": "{{select-behavior-cp-site-a}}",
            "device-context": {
              "device-name": [
                "{{select-behavior-sim-dev-name}}"
              ]
            }
          }
        }
      },
      "BehaviorContext12": {
        "title": "BehaviorContext12",
        "required": [
          "behavior-group",
          "behavior",
          "device-context"
        ],
        "type": "object",
        "properties": {
          "behavior-group": {
            "type": "string"
          },
          "behavior": {
            "type": "string"
          },
          "device-context": {
            "$ref": "#/components/schemas/DeviceContext21"
          }
        },
        "example": {
          "behavior-group": "{{select-behavior-tpid}}",
          "behavior": "{{select-behavior-cp-site-a}}",
          "device-context": {
            "device-name": [
              "{{select-behavior-sim-dev-name}}"
            ]
          }
        }
      },
      "DeviceContext21": {
        "title": "DeviceContext21",
        "required": [
          "device-name"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "device-name": [
            "{{select-behavior-sim-dev-name}}"
          ]
        }
      },
      "DeselectDeviceNameRequest": {
        "title": "DeselectDeviceNameRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input177"
          }
        },
        "example": {
          "input": {
            "behavior-context": {
              "behavior-group": "{{select-behavior-tpid}}",
              "behavior": "{{select-behavior-cp-site-a}}",
              "device-context": {
                "device-name": [
                  "{{select-behavior-sim-dev-name}}"
                ]
              }
            }
          }
        }
      },
      "DeselectDeviceName": {
        "title": "DeselectDeviceName",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output193"
          }
        },
        "example": {
          "output": {
            "deselect-behavior": "sb-tpid-behavior",
            "timestamp": "2020-12-15T17:17:25.617276",
            "status": "deselect-behavior",
            "trans-id": "155a212c-8244-4f50-9a24-f4fc398fa171",
            "completion-status": "in-progress"
          }
        }
      },
      "SelectDeviceByManagementDomainRequest": {
        "title": "SelectDeviceByManagementDomainRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input179"
          }
        },
        "example": {
          "input": {
            "behavior-context": {
              "behavior-group": "{{select-behavior-tpid}}",
              "behavior": "{{select-behavior-cp-site-a}}",
              "device-context": {
                "management-domain-name": [
                  "Sim"
                ]
              }
            }
          }
        }
      },
      "Input179": {
        "title": "Input179",
        "required": [
          "behavior-context"
        ],
        "type": "object",
        "properties": {
          "behavior-context": {
            "$ref": "#/components/schemas/BehaviorContext14"
          }
        },
        "example": {
          "behavior-context": {
            "behavior-group": "{{select-behavior-tpid}}",
            "behavior": "{{select-behavior-cp-site-a}}",
            "device-context": {
              "management-domain-name": [
                "Sim"
              ]
            }
          }
        }
      },
      "BehaviorContext14": {
        "title": "BehaviorContext14",
        "required": [
          "behavior-group",
          "behavior",
          "device-context"
        ],
        "type": "object",
        "properties": {
          "behavior-group": {
            "type": "string"
          },
          "behavior": {
            "type": "string"
          },
          "device-context": {
            "$ref": "#/components/schemas/DeviceContext23"
          }
        },
        "example": {
          "behavior-group": "{{select-behavior-tpid}}",
          "behavior": "{{select-behavior-cp-site-a}}",
          "device-context": {
            "management-domain-name": [
              "Sim"
            ]
          }
        }
      },
      "DeviceContext23": {
        "title": "DeviceContext23",
        "required": [
          "management-domain-name"
        ],
        "type": "object",
        "properties": {
          "management-domain-name": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "management-domain-name": [
            "Sim"
          ]
        }
      },
      "SelectDeviceByManagementDomain": {
        "title": "SelectDeviceByManagementDomain",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output192"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-12-15T17:17:46.539265",
            "status": "select-behavior",
            "trans-id": "c679a493-b141-41f3-985f-68efb786c3c2",
            "completion-status": "in-progress",
            "select-behavior": "sb-tpid-behavior"
          }
        }
      },
      "DeselectDeviceByManagementDomainRequest": {
        "title": "DeselectDeviceByManagementDomainRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input179"
          }
        },
        "example": {
          "input": {
            "behavior-context": {
              "behavior-group": "{{select-behavior-tpid}}",
              "behavior": "{{select-behavior-cp-site-a}}",
              "device-context": {
                "management-domain-name": [
                  "Sim"
                ]
              }
            }
          }
        }
      },
      "DeselectDeviceByManagmentDomain": {
        "title": "DeselectDeviceByManagmentDomain",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output193"
          }
        },
        "example": {
          "output": {
            "deselect-behavior": "sb-tpid-behavior",
            "timestamp": "2020-12-15T17:18:25.347632",
            "status": "deselect-behavior",
            "trans-id": "85c9793c-fbf2-4856-99cd-cc673a805dc1",
            "completion-status": "in-progress"
          }
        }
      },
      "SelectByDeviceModelNameRequest": {
        "title": "SelectByDeviceModelNameRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input181"
          }
        },
        "example": {
          "input": {
            "behavior-context": {
              "behavior-group": "{{select-behavior-tpid}}",
              "behavior": "{{select-behavior-cp-site-a}}",
              "device-context": {
                "device-model-name": [
                  "Simulated"
                ]
              }
            }
          }
        }
      },
      "Input181": {
        "title": "Input181",
        "required": [
          "behavior-context"
        ],
        "type": "object",
        "properties": {
          "behavior-context": {
            "$ref": "#/components/schemas/BehaviorContext16"
          }
        },
        "example": {
          "behavior-context": {
            "behavior-group": "{{select-behavior-tpid}}",
            "behavior": "{{select-behavior-cp-site-a}}",
            "device-context": {
              "device-model-name": [
                "Simulated"
              ]
            }
          }
        }
      },
      "BehaviorContext16": {
        "title": "BehaviorContext16",
        "required": [
          "behavior-group",
          "behavior",
          "device-context"
        ],
        "type": "object",
        "properties": {
          "behavior-group": {
            "type": "string"
          },
          "behavior": {
            "type": "string"
          },
          "device-context": {
            "$ref": "#/components/schemas/DeviceContext25"
          }
        },
        "example": {
          "behavior-group": "{{select-behavior-tpid}}",
          "behavior": "{{select-behavior-cp-site-a}}",
          "device-context": {
            "device-model-name": [
              "Simulated"
            ]
          }
        }
      },
      "DeviceContext25": {
        "title": "DeviceContext25",
        "required": [
          "device-model-name"
        ],
        "type": "object",
        "properties": {
          "device-model-name": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "device-model-name": [
            "Simulated"
          ]
        }
      },
      "SelectByDeviceModelName": {
        "title": "SelectByDeviceModelName",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output192"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-12-15T17:18:55.455269",
            "status": "select-behavior",
            "trans-id": "921382e5-4453-4231-9df6-52b566a9d891",
            "completion-status": "in-progress",
            "select-behavior": "sb-tpid-behavior"
          }
        }
      },
      "DeselectDeviceModelNameRequest": {
        "title": "DeselectDeviceModelNameRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input181"
          }
        },
        "example": {
          "input": {
            "behavior-context": {
              "behavior-group": "{{select-behavior-tpid}}",
              "behavior": "{{select-behavior-cp-site-a}}",
              "device-context": {
                "device-model-name": [
                  "Simulated"
                ]
              }
            }
          }
        }
      },
      "DeselectDeviceModelName": {
        "title": "DeselectDeviceModelName",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output193"
          }
        },
        "example": {
          "output": {
            "deselect-behavior": "sb-tpid-behavior",
            "timestamp": "2020-12-15T17:19:19.623438",
            "status": "deselect-behavior",
            "trans-id": "cb112d4e-0d42-435b-b8ce-fc6585396032",
            "completion-status": "in-progress"
          }
        }
      },
      "VerifyDeviceBehaviorRequest": {
        "title": "VerifyDeviceBehaviorRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input98"
          }
        },
        "example": {
          "input": {
            "device-context": {
              "device-name": "{{select-behavior-sim-dev-name}}"
            }
          }
        }
      },
      "VerifyDeviceBehavior": {
        "title": "VerifyDeviceBehavior",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output186"
          }
        },
        "example": {
          "output": {
            "profile": [
              {
                "type": "tpid-profile-type",
                "name": "sb-tpid-site-b"
              }
            ]
          }
        }
      },
      "CreateGroupingProfileBehaviorGroupRequest": {
        "title": "CreateGroupingProfileBehaviorGroupRequest",
        "required": [
          "name",
          "state",
          "type",
          "references"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "references": {
            "$ref": "#/components/schemas/References1"
          }
        },
        "example": {
          "name": "example-behavior-group",
          "state": "activated",
          "type": "grouping-profile-type",
          "references": {
            "selectable": true,
            "reference": [
              {
                "profile-type": "conditional-profile-type",
                "profile-name": "{{ select-behavior-cp-site-a }}"
              },
              {
                "profile-type": "conditional-profile-type",
                "profile-name": "{{ select-behavior-cp-site-b }}"
              }
            ]
          }
        }
      },
      "References1": {
        "title": "References1",
        "required": [
          "selectable",
          "reference"
        ],
        "type": "object",
        "properties": {
          "selectable": {
            "type": "boolean"
          },
          "reference": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Reference"
            },
            "description": ""
          }
        },
        "example": {
          "selectable": true,
          "reference": [
            {
              "profile-type": "conditional-profile-type",
              "profile-name": "{{ select-behavior-cp-site-a }}"
            },
            {
              "profile-type": "conditional-profile-type",
              "profile-name": "{{ select-behavior-cp-site-b }}"
            }
          ]
        }
      },
      "GetAllBehaviors": {
        "title": "GetAllBehaviors",
        "required": [
          "behaviors"
        ],
        "type": "object",
        "properties": {
          "behaviors": {
            "$ref": "#/components/schemas/Behaviors"
          }
        },
        "example": {
          "behaviors": {
            "behavior-group": [
              {
                "name": "LCI Group",
                "behavior": [
                  {
                    "name": "OLT LCI Condition"
                  }
                ]
              },
              {
                "name": "LCI OLT Group",
                "behavior": []
              },
              {
                "name": "OLT Upgrade Profile Group",
                "behavior": [
                  {
                    "name": "SDX 6010 OLT Upgrade Conditional Profile"
                  },
                  {
                    "name": "SDX 6310 OLT Upgrade Conditional Profile"
                  },
                  {
                    "name": "SDX 6312 OLT Upgrade Conditional Profile"
                  },
                  {
                    "name": "SDX 6320 OLT Upgrade Conditional Profile"
                  }
                ]
              },
              {
                "name": "ONU Upgrade Group",
                "behavior": [
                  {
                    "name": "401 GPON ONU Upgrade Conditional Profile"
                  },
                  {
                    "name": "411 GPON ONU Upgrade Conditional Profile"
                  },
                  {
                    "name": "SDX 602V Upgrade Conditional Profile"
                  },
                  {
                    "name": "SDX 602X Upgrade Conditional Profile"
                  },
                  {
                    "name": "SDX 611 GPON ONU Upgrade Conditional Profile"
                  },
                  {
                    "name": "SDX 621V Upgrade Conditional Profile"
                  },
                  {
                    "name": "SDX 621X Upgrade Conditional Profile"
                  }
                ]
              },
              {
                "name": "Residential Data Service Group",
                "behavior": [
                  {
                    "name": "OLT Residential Data Service Condition"
                  },
                  {
                    "name": "ONU Residential Data Service Condition"
                  }
                ]
              },
              {
                "name": "Residential Data Service OLT Group",
                "behavior": []
              },
              {
                "name": "Residential Data Service ONU Group",
                "behavior": []
              },
              {
                "name": "Residential Video Service Group",
                "behavior": [
                  {
                    "name": "OLT Residential Video Service Condition"
                  },
                  {
                    "name": "ONU Residential Video Service Condition"
                  }
                ]
              },
              {
                "name": "Residential Video Service OLT Group",
                "behavior": []
              },
              {
                "name": "Residential Video Service ONU Group",
                "behavior": []
              },
              {
                "name": "SDX Service1 Group",
                "behavior": [
                  {
                    "name": "OLT Service1 Condition"
                  },
                  {
                    "name": "ONU Service1 Condition"
                  }
                ]
              },
              {
                "name": "SDX Service1 Group DHCP",
                "behavior": [
                  {
                    "name": "OLT Service1 Condition DHCP"
                  },
                  {
                    "name": "ONU Service1 Condition"
                  }
                ]
              },
              {
                "name": "SDX Service1 Group PPPoE",
                "behavior": [
                  {
                    "name": "OLT Service1 Condition PPPoE"
                  },
                  {
                    "name": "ONU Service1 Condition"
                  }
                ]
              },
              {
                "name": "SDX Service1 OLT Group",
                "behavior": []
              },
              {
                "name": "SDX Service1 OLT Group DHCP",
                "behavior": []
              },
              {
                "name": "SDX Service1 OLT Group PPPoE",
                "behavior": []
              },
              {
                "name": "SDX Service1 ONU Group",
                "behavior": []
              },
              {
                "name": "SDX Service2 Group",
                "behavior": [
                  {
                    "name": "OLT Service2 Condition"
                  },
                  {
                    "name": "ONU Service2 Condition"
                  }
                ]
              },
              {
                "name": "SDX Service2 Group ANCP",
                "behavior": [
                  {
                    "name": "OLT Service2 Condition ANCP"
                  },
                  {
                    "name": "ONU Service2 Condition"
                  }
                ]
              },
              {
                "name": "SDX Service2 Group DHCP",
                "behavior": [
                  {
                    "name": "OLT Service2 Condition DHCP"
                  },
                  {
                    "name": "ONU Service2 Condition"
                  }
                ]
              },
              {
                "name": "SDX Service2 Group DHCP and ANCP",
                "behavior": [
                  {
                    "name": "OLT Service2 Condition DHCP and ANCP"
                  },
                  {
                    "name": "ONU Service2 Condition"
                  }
                ]
              },
              {
                "name": "SDX Service2 Group PPPoE",
                "behavior": [
                  {
                    "name": "OLT Service2 Condition PPPoE"
                  },
                  {
                    "name": "ONU Service2 Condition"
                  }
                ]
              },
              {
                "name": "SDX Service2 Group PPPoE and ANCP",
                "behavior": [
                  {
                    "name": "OLT Service2 Condition PPPoE and ANCP"
                  },
                  {
                    "name": "ONU Service2 Condition"
                  }
                ]
              },
              {
                "name": "SDX Service2 Group Scheduler",
                "behavior": [
                  {
                    "name": "OLT Service2 Condition Scheduler"
                  },
                  {
                    "name": "ONU Service2 Condition"
                  }
                ]
              },
              {
                "name": "SDX Service2 OLT Group",
                "behavior": []
              },
              {
                "name": "SDX Service2 OLT Group ANCP",
                "behavior": []
              },
              {
                "name": "SDX Service2 OLT Group DHCP",
                "behavior": []
              },
              {
                "name": "SDX Service2 OLT Group DHCP and ANCP",
                "behavior": []
              },
              {
                "name": "SDX Service2 OLT Group PPPoE",
                "behavior": []
              },
              {
                "name": "SDX Service2 OLT Group PPPoE and ANCP",
                "behavior": []
              },
              {
                "name": "SDX Service2 OLT Group Scheduler",
                "behavior": []
              },
              {
                "name": "SDX Service2 ONU Group",
                "behavior": []
              },
              {
                "name": "SDX Service3 Group",
                "behavior": [
                  {
                    "name": "OLT Service3 Condition"
                  },
                  {
                    "name": "ONU Service3 Condition"
                  }
                ]
              },
              {
                "name": "SDX Service3 Group DHCP",
                "behavior": [
                  {
                    "name": "OLT Service3 Condition DHCP"
                  },
                  {
                    "name": "ONU Service3 Condition"
                  }
                ]
              },
              {
                "name": "SDX Service3 Group PPPoE",
                "behavior": [
                  {
                    "name": "OLT Service3 Condition PPPoE"
                  },
                  {
                    "name": "ONU Service3 Condition"
                  }
                ]
              },
              {
                "name": "SDX Service3 Group Scheduler",
                "behavior": [
                  {
                    "name": "OLT Service3 Condition Scheduler"
                  },
                  {
                    "name": "ONU Service3 Condition"
                  }
                ]
              },
              {
                "name": "SDX Service3 OLT Group",
                "behavior": []
              },
              {
                "name": "SDX Service3 OLT Group DHCP",
                "behavior": []
              },
              {
                "name": "SDX Service3 OLT Group PPPoE",
                "behavior": []
              },
              {
                "name": "SDX Service3 OLT Group Scheduler",
                "behavior": []
              },
              {
                "name": "SDX Service3 ONU Group",
                "behavior": []
              },
              {
                "name": "SDX Service4 Group",
                "behavior": [
                  {
                    "name": "OLT Service4 Condition"
                  },
                  {
                    "name": "ONU Service4 Condition"
                  }
                ]
              },
              {
                "name": "SDX Service4 Group DHCP",
                "behavior": [
                  {
                    "name": "OLT Service4 Condition DHCP"
                  },
                  {
                    "name": "ONU Service4 Condition"
                  }
                ]
              },
              {
                "name": "SDX Service4 Group PPPoE",
                "behavior": [
                  {
                    "name": "OLT Service4 Condition PPPoE"
                  },
                  {
                    "name": "ONU Service4 Condition"
                  }
                ]
              },
              {
                "name": "SDX Service4 OLT Group",
                "behavior": []
              },
              {
                "name": "SDX Service4 OLT Group DHCP",
                "behavior": []
              },
              {
                "name": "SDX Service4 OLT Group PPPoE",
                "behavior": []
              },
              {
                "name": "SDX Service4 ONU Group",
                "behavior": []
              }
            ]
          }
        }
      },
      "Behaviors": {
        "title": "Behaviors",
        "required": [
          "behavior-group"
        ],
        "type": "object",
        "properties": {
          "behavior-group": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/BehaviorGroup"
            },
            "description": ""
          }
        },
        "example": {
          "behavior-group": [
            {
              "name": "LCI Group",
              "behavior": [
                {
                  "name": "OLT LCI Condition"
                }
              ]
            },
            {
              "name": "LCI OLT Group",
              "behavior": []
            },
            {
              "name": "OLT Upgrade Profile Group",
              "behavior": [
                {
                  "name": "SDX 6010 OLT Upgrade Conditional Profile"
                },
                {
                  "name": "SDX 6310 OLT Upgrade Conditional Profile"
                },
                {
                  "name": "SDX 6312 OLT Upgrade Conditional Profile"
                },
                {
                  "name": "SDX 6320 OLT Upgrade Conditional Profile"
                }
              ]
            },
            {
              "name": "ONU Upgrade Group",
              "behavior": [
                {
                  "name": "401 GPON ONU Upgrade Conditional Profile"
                },
                {
                  "name": "411 GPON ONU Upgrade Conditional Profile"
                },
                {
                  "name": "SDX 602V Upgrade Conditional Profile"
                },
                {
                  "name": "SDX 602X Upgrade Conditional Profile"
                },
                {
                  "name": "SDX 611 GPON ONU Upgrade Conditional Profile"
                },
                {
                  "name": "SDX 621V Upgrade Conditional Profile"
                },
                {
                  "name": "SDX 621X Upgrade Conditional Profile"
                }
              ]
            },
            {
              "name": "Residential Data Service Group",
              "behavior": [
                {
                  "name": "OLT Residential Data Service Condition"
                },
                {
                  "name": "ONU Residential Data Service Condition"
                }
              ]
            },
            {
              "name": "Residential Data Service OLT Group",
              "behavior": []
            },
            {
              "name": "Residential Data Service ONU Group",
              "behavior": []
            },
            {
              "name": "Residential Video Service Group",
              "behavior": [
                {
                  "name": "OLT Residential Video Service Condition"
                },
                {
                  "name": "ONU Residential Video Service Condition"
                }
              ]
            },
            {
              "name": "Residential Video Service OLT Group",
              "behavior": []
            },
            {
              "name": "Residential Video Service ONU Group",
              "behavior": []
            },
            {
              "name": "SDX Service1 Group",
              "behavior": [
                {
                  "name": "OLT Service1 Condition"
                },
                {
                  "name": "ONU Service1 Condition"
                }
              ]
            },
            {
              "name": "SDX Service1 Group DHCP",
              "behavior": [
                {
                  "name": "OLT Service1 Condition DHCP"
                },
                {
                  "name": "ONU Service1 Condition"
                }
              ]
            },
            {
              "name": "SDX Service1 Group PPPoE",
              "behavior": [
                {
                  "name": "OLT Service1 Condition PPPoE"
                },
                {
                  "name": "ONU Service1 Condition"
                }
              ]
            },
            {
              "name": "SDX Service1 OLT Group",
              "behavior": []
            },
            {
              "name": "SDX Service1 OLT Group DHCP",
              "behavior": []
            },
            {
              "name": "SDX Service1 OLT Group PPPoE",
              "behavior": []
            },
            {
              "name": "SDX Service1 ONU Group",
              "behavior": []
            },
            {
              "name": "SDX Service2 Group",
              "behavior": [
                {
                  "name": "OLT Service2 Condition"
                },
                {
                  "name": "ONU Service2 Condition"
                }
              ]
            },
            {
              "name": "SDX Service2 Group ANCP",
              "behavior": [
                {
                  "name": "OLT Service2 Condition ANCP"
                },
                {
                  "name": "ONU Service2 Condition"
                }
              ]
            },
            {
              "name": "SDX Service2 Group DHCP",
              "behavior": [
                {
                  "name": "OLT Service2 Condition DHCP"
                },
                {
                  "name": "ONU Service2 Condition"
                }
              ]
            },
            {
              "name": "SDX Service2 Group DHCP and ANCP",
              "behavior": [
                {
                  "name": "OLT Service2 Condition DHCP and ANCP"
                },
                {
                  "name": "ONU Service2 Condition"
                }
              ]
            },
            {
              "name": "SDX Service2 Group PPPoE",
              "behavior": [
                {
                  "name": "OLT Service2 Condition PPPoE"
                },
                {
                  "name": "ONU Service2 Condition"
                }
              ]
            },
            {
              "name": "SDX Service2 Group PPPoE and ANCP",
              "behavior": [
                {
                  "name": "OLT Service2 Condition PPPoE and ANCP"
                },
                {
                  "name": "ONU Service2 Condition"
                }
              ]
            },
            {
              "name": "SDX Service2 Group Scheduler",
              "behavior": [
                {
                  "name": "OLT Service2 Condition Scheduler"
                },
                {
                  "name": "ONU Service2 Condition"
                }
              ]
            },
            {
              "name": "SDX Service2 OLT Group",
              "behavior": []
            },
            {
              "name": "SDX Service2 OLT Group ANCP",
              "behavior": []
            },
            {
              "name": "SDX Service2 OLT Group DHCP",
              "behavior": []
            },
            {
              "name": "SDX Service2 OLT Group DHCP and ANCP",
              "behavior": []
            },
            {
              "name": "SDX Service2 OLT Group PPPoE",
              "behavior": []
            },
            {
              "name": "SDX Service2 OLT Group PPPoE and ANCP",
              "behavior": []
            },
            {
              "name": "SDX Service2 OLT Group Scheduler",
              "behavior": []
            },
            {
              "name": "SDX Service2 ONU Group",
              "behavior": []
            },
            {
              "name": "SDX Service3 Group",
              "behavior": [
                {
                  "name": "OLT Service3 Condition"
                },
                {
                  "name": "ONU Service3 Condition"
                }
              ]
            },
            {
              "name": "SDX Service3 Group DHCP",
              "behavior": [
                {
                  "name": "OLT Service3 Condition DHCP"
                },
                {
                  "name": "ONU Service3 Condition"
                }
              ]
            },
            {
              "name": "SDX Service3 Group PPPoE",
              "behavior": [
                {
                  "name": "OLT Service3 Condition PPPoE"
                },
                {
                  "name": "ONU Service3 Condition"
                }
              ]
            },
            {
              "name": "SDX Service3 Group Scheduler",
              "behavior": [
                {
                  "name": "OLT Service3 Condition Scheduler"
                },
                {
                  "name": "ONU Service3 Condition"
                }
              ]
            },
            {
              "name": "SDX Service3 OLT Group",
              "behavior": []
            },
            {
              "name": "SDX Service3 OLT Group DHCP",
              "behavior": []
            },
            {
              "name": "SDX Service3 OLT Group PPPoE",
              "behavior": []
            },
            {
              "name": "SDX Service3 OLT Group Scheduler",
              "behavior": []
            },
            {
              "name": "SDX Service3 ONU Group",
              "behavior": []
            },
            {
              "name": "SDX Service4 Group",
              "behavior": [
                {
                  "name": "OLT Service4 Condition"
                },
                {
                  "name": "ONU Service4 Condition"
                }
              ]
            },
            {
              "name": "SDX Service4 Group DHCP",
              "behavior": [
                {
                  "name": "OLT Service4 Condition DHCP"
                },
                {
                  "name": "ONU Service4 Condition"
                }
              ]
            },
            {
              "name": "SDX Service4 Group PPPoE",
              "behavior": [
                {
                  "name": "OLT Service4 Condition PPPoE"
                },
                {
                  "name": "ONU Service4 Condition"
                }
              ]
            },
            {
              "name": "SDX Service4 OLT Group",
              "behavior": []
            },
            {
              "name": "SDX Service4 OLT Group DHCP",
              "behavior": []
            },
            {
              "name": "SDX Service4 OLT Group PPPoE",
              "behavior": []
            },
            {
              "name": "SDX Service4 ONU Group",
              "behavior": []
            }
          ]
        }
      },
      "BehaviorGroup": {
        "title": "BehaviorGroup",
        "required": [
          "name",
          "behavior"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "behavior": {
            "type": "array",
            "items": {
              "oneOf": [
                {
                  "$ref": "#/components/schemas/Behavior"
                },
                {
                  "type": "string"
                }
              ]
            },
            "description": "",
            "example": [
              {
                "name": "OLT LCI Condition"
              }
            ]
          }
        },
        "example": {
          "name": "LCI Group",
          "behavior": [
            {
              "name": "OLT LCI Condition"
            }
          ]
        }
      },
      "Behavior": {
        "title": "Behavior",
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          }
        },
        "example": {
          "name": "OLT LCI Condition"
        }
      },
      "GetAllBehaviors1": {
        "title": "GetAllBehaviors1",
        "required": [
          "behaviors"
        ],
        "type": "object",
        "properties": {
          "behaviors": {
            "$ref": "#/components/schemas/Behaviors1"
          }
        },
        "example": {
          "behaviors": {
            "behavior-group": [
              {
                "name": "sb-tpid-behavior",
                "behavior": [
                  {
                    "name": "sb-dev-cp-site-a"
                  },
                  {
                    "name": "sb-dev-cp-site-b"
                  }
                ]
              }
            ]
          }
        }
      },
      "Behaviors1": {
        "title": "Behaviors1",
        "required": [
          "behavior-group"
        ],
        "type": "object",
        "properties": {
          "behavior-group": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/BehaviorGroup1"
            },
            "description": ""
          }
        },
        "example": {
          "behavior-group": [
            {
              "name": "sb-tpid-behavior",
              "behavior": [
                {
                  "name": "sb-dev-cp-site-a"
                },
                {
                  "name": "sb-dev-cp-site-b"
                }
              ]
            }
          ]
        }
      },
      "BehaviorGroup1": {
        "title": "BehaviorGroup1",
        "required": [
          "name",
          "behavior"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "behavior": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Behavior2"
            },
            "description": ""
          }
        },
        "example": {
          "name": "sb-tpid-behavior",
          "behavior": [
            {
              "name": "sb-dev-cp-site-a"
            },
            {
              "name": "sb-dev-cp-site-b"
            }
          ]
        }
      },
      "Behavior2": {
        "title": "Behavior2",
        "required": [
          "name"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          }
        },
        "example": {
          "name": "sb-dev-cp-site-a"
        }
      },
      "AddLabelRequest": {
        "title": "AddLabelRequest",
        "required": [
          "name",
          "referenced-objects"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "referenced-objects": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ReferencedObject"
            },
            "description": ""
          }
        },
        "example": {
          "name": "label_1",
          "referenced-objects": [
            {
              "name": "device_test1",
              "object-type": "device"
            }
          ]
        }
      },
      "ReferencedObject": {
        "title": "ReferencedObject",
        "required": [
          "name",
          "object-type"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "object-type": {
            "type": "string"
          }
        },
        "example": {
          "name": "device_test1",
          "object-type": "device"
        }
      },
      "AddLabel-DeviceNotExists1": {
        "title": "AddLabel-DeviceNotExists1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Cannot insert path 'adtran-cloud-platform-labels:labels/label=label_4/referenced-objects=device,unknown device' due non-existing reference to 'adtran-cloud-platform-devices:devices/device=unknown device'"
        }
      },
      "AddLabel-LabelAlreadyExists1": {
        "title": "AddLabel-LabelAlreadyExists1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Cannot overwrite path List(adtran-cloud-platform-labels, labels, label=label_1)"
        }
      },
      "DataFilterForLabelRequest": {
        "title": "DataFilterForLabelRequest",
        "required": [
          "referenced-objects"
        ],
        "type": "object",
        "properties": {
          "referenced-objects": {
            "$ref": "#/components/schemas/ReferencedObjects"
          }
        },
        "example": {
          "referenced-objects": {
            "name": "device_test1",
            "object-type": "device"
          }
        }
      },
      "ReferencedObjects": {
        "title": "ReferencedObjects",
        "required": [
          "name",
          "object-type"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "object-type": {
            "type": "string"
          }
        },
        "example": {
          "name": "device_test1",
          "object-type": "device"
        }
      },
      "DataFilterForLabel-IncorrectDeviceName": {
        "title": "DataFilterForLabel-IncorrectDeviceName",
        "required": [
          "label"
        ],
        "type": "object",
        "properties": {
          "label": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "label": []
        }
      },
      "DataFilterForLabel-FilterByDevice": {
        "title": "DataFilterForLabel-FilterByDevice",
        "required": [
          "label"
        ],
        "type": "object",
        "properties": {
          "label": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Label"
            },
            "description": ""
          }
        },
        "example": {
          "label": [
            {
              "name": "label_1"
            },
            {
              "name": "label_2"
            }
          ]
        }
      },
      "Label": {
        "title": "Label",
        "required": [
          "name"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          }
        },
        "example": {
          "name": "label_1"
        }
      },
      "DataFilterForLabel-FilterByInterface": {
        "title": "DataFilterForLabel-FilterByInterface",
        "required": [
          "label"
        ],
        "type": "object",
        "properties": {
          "label": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Label"
            },
            "description": ""
          }
        },
        "example": {
          "label": [
            {
              "name": "label_1"
            }
          ]
        }
      },
      "SearchLabelRequest": {
        "title": "SearchLabelRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input184"
          }
        },
        "example": {
          "input": {
            "type": "search-global",
            "related-objects-term": {
              "cursor": 0,
              "result-size": 25,
              "search-term": "label_1",
              "object-type": "label",
              "search-field": "name"
            }
          }
        }
      },
      "Input184": {
        "title": "Input184",
        "required": [
          "type",
          "related-objects-term"
        ],
        "type": "object",
        "properties": {
          "type": {
            "type": "string"
          },
          "related-objects-term": {
            "$ref": "#/components/schemas/RelatedObjectsTerm"
          }
        },
        "example": {
          "type": "search-global",
          "related-objects-term": {
            "cursor": 0,
            "result-size": 25,
            "search-term": "label_1",
            "object-type": "label",
            "search-field": "name"
          }
        }
      },
      "RelatedObjectsTerm": {
        "title": "RelatedObjectsTerm",
        "required": [
          "cursor",
          "result-size",
          "search-term",
          "object-type",
          "search-field"
        ],
        "type": "object",
        "properties": {
          "cursor": {
            "type": "integer",
            "format": "int32"
          },
          "result-size": {
            "type": "integer",
            "format": "int32"
          },
          "search-term": {
            "type": "string"
          },
          "object-type": {
            "type": "string"
          },
          "search-field": {
            "type": "string"
          }
        },
        "example": {
          "cursor": 0,
          "result-size": 25,
          "search-term": "label_1",
          "object-type": "label",
          "search-field": "name"
        }
      },
      "SearchLabels-SearchAllLabels": {
        "title": "SearchLabels-SearchAllLabels",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output213"
          }
        },
        "example": {
          "output": {
            "related-object-results": {
              "count": 2,
              "cursor": 2,
              "matching-object": [
                {
                  "name": "label_1",
                  "label": {
                    "referenced-objects": [
                      {
                        "object-type": "device",
                        "name": "device_test1"
                      },
                      {
                        "object-type": "interface",
                        "name": "interface_1"
                      }
                    ],
                    "name": "label_1"
                  }
                },
                {
                  "name": "label_2",
                  "label": {
                    "referenced-objects": [],
                    "name": "label_2"
                  }
                }
              ]
            },
            "type": "search-global"
          }
        }
      },
      "Output213": {
        "title": "Output213",
        "required": [
          "related-object-results",
          "type"
        ],
        "type": "object",
        "properties": {
          "related-object-results": {
            "$ref": "#/components/schemas/RelatedObjectResults"
          },
          "type": {
            "type": "string"
          }
        },
        "example": {
          "related-object-results": {
            "count": 2,
            "cursor": 2,
            "matching-object": [
              {
                "name": "label_1",
                "label": {
                  "referenced-objects": [
                    {
                      "object-type": "device",
                      "name": "device_test1"
                    },
                    {
                      "object-type": "interface",
                      "name": "interface_1"
                    }
                  ],
                  "name": "label_1"
                }
              },
              {
                "name": "label_2",
                "label": {
                  "referenced-objects": [],
                  "name": "label_2"
                }
              }
            ]
          },
          "type": "search-global"
        }
      },
      "RelatedObjectResults": {
        "title": "RelatedObjectResults",
        "required": [
          "count",
          "cursor",
          "matching-object"
        ],
        "type": "object",
        "properties": {
          "count": {
            "type": "integer",
            "format": "int32"
          },
          "cursor": {
            "type": "integer",
            "format": "int32"
          },
          "matching-object": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/MatchingObject"
            },
            "description": ""
          }
        },
        "example": {
          "count": 2,
          "cursor": 2,
          "matching-object": [
            {
              "name": "label_1",
              "label": {
                "referenced-objects": [
                  {
                    "object-type": "device",
                    "name": "device_test1"
                  },
                  {
                    "object-type": "interface",
                    "name": "interface_1"
                  }
                ],
                "name": "label_1"
              }
            },
            {
              "name": "label_2",
              "label": {
                "referenced-objects": [],
                "name": "label_2"
              }
            }
          ]
        }
      },
      "MatchingObject": {
        "title": "MatchingObject",
        "required": [
          "name",
          "label"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "label": {
            "$ref": "#/components/schemas/Label2"
          }
        },
        "example": {
          "name": "label_1",
          "label": {
            "referenced-objects": [
              {
                "object-type": "device",
                "name": "device_test1"
              },
              {
                "object-type": "interface",
                "name": "interface_1"
              }
            ],
            "name": "label_1"
          }
        }
      },
      "Label2": {
        "title": "Label2",
        "required": [
          "referenced-objects",
          "name"
        ],
        "type": "object",
        "properties": {
          "referenced-objects": {
            "type": "array",
            "items": {
              "oneOf": [
                {
                  "$ref": "#/components/schemas/ReferencedObjects1"
                },
                {
                  "type": "string"
                }
              ]
            },
            "description": "",
            "example": [
              {
                "object-type": "device",
                "name": "device_test1"
              }
            ]
          },
          "name": {
            "type": "string"
          }
        },
        "example": {
          "referenced-objects": [
            {
              "object-type": "device",
              "name": "device_test1"
            },
            {
              "object-type": "interface",
              "name": "interface_1"
            }
          ],
          "name": "label_1"
        }
      },
      "ReferencedObjects1": {
        "title": "ReferencedObjects1",
        "type": "object",
        "properties": {
          "object-type": {
            "type": "string"
          },
          "name": {
            "type": "string"
          }
        },
        "example": {
          "object-type": "device",
          "name": "device_test1"
        }
      },
      "SearchLabels-IncorrectLabelName": {
        "title": "SearchLabels-IncorrectLabelName",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output214"
          }
        },
        "example": {
          "output": {
            "related-object-results": {
              "count": 0,
              "cursor": 0,
              "matching-object": []
            },
            "type": "search-global"
          }
        }
      },
      "Output214": {
        "title": "Output214",
        "required": [
          "related-object-results",
          "type"
        ],
        "type": "object",
        "properties": {
          "related-object-results": {
            "$ref": "#/components/schemas/RelatedObjectResults1"
          },
          "type": {
            "type": "string"
          }
        },
        "example": {
          "related-object-results": {
            "count": 0,
            "cursor": 0,
            "matching-object": []
          },
          "type": "search-global"
        }
      },
      "RelatedObjectResults1": {
        "title": "RelatedObjectResults1",
        "required": [
          "count",
          "cursor",
          "matching-object"
        ],
        "type": "object",
        "properties": {
          "count": {
            "type": "integer",
            "format": "int32"
          },
          "cursor": {
            "type": "integer",
            "format": "int32"
          },
          "matching-object": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "count": 0,
          "cursor": 0,
          "matching-object": []
        }
      },
      "SearchLabels-SearchLabelByName": {
        "title": "SearchLabels-SearchLabelByName",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output215"
          }
        },
        "example": {
          "output": {
            "related-object-results": {
              "count": 1,
              "cursor": 1,
              "matching-object": [
                {
                  "name": "label_1",
                  "label": {
                    "referenced-objects": [
                      {
                        "object-type": "device",
                        "name": "device_test1"
                      },
                      {
                        "object-type": "interface",
                        "name": "interface_1"
                      }
                    ],
                    "name": "label_1"
                  }
                }
              ]
            },
            "type": "search-global"
          }
        }
      },
      "Output215": {
        "title": "Output215",
        "required": [
          "related-object-results",
          "type"
        ],
        "type": "object",
        "properties": {
          "related-object-results": {
            "$ref": "#/components/schemas/RelatedObjectResults2"
          },
          "type": {
            "type": "string"
          }
        },
        "example": {
          "related-object-results": {
            "count": 1,
            "cursor": 1,
            "matching-object": [
              {
                "name": "label_1",
                "label": {
                  "referenced-objects": [
                    {
                      "object-type": "device",
                      "name": "device_test1"
                    },
                    {
                      "object-type": "interface",
                      "name": "interface_1"
                    }
                  ],
                  "name": "label_1"
                }
              }
            ]
          },
          "type": "search-global"
        }
      },
      "RelatedObjectResults2": {
        "title": "RelatedObjectResults2",
        "required": [
          "count",
          "cursor",
          "matching-object"
        ],
        "type": "object",
        "properties": {
          "count": {
            "type": "integer",
            "format": "int32"
          },
          "cursor": {
            "type": "integer",
            "format": "int32"
          },
          "matching-object": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/MatchingObject1"
            },
            "description": ""
          }
        },
        "example": {
          "count": 1,
          "cursor": 1,
          "matching-object": [
            {
              "name": "label_1",
              "label": {
                "referenced-objects": [
                  {
                    "object-type": "device",
                    "name": "device_test1"
                  },
                  {
                    "object-type": "interface",
                    "name": "interface_1"
                  }
                ],
                "name": "label_1"
              }
            }
          ]
        }
      },
      "MatchingObject1": {
        "title": "MatchingObject1",
        "required": [
          "name",
          "label"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "label": {
            "$ref": "#/components/schemas/Label3"
          }
        },
        "example": {
          "name": "label_1",
          "label": {
            "referenced-objects": [
              {
                "object-type": "device",
                "name": "device_test1"
              },
              {
                "object-type": "interface",
                "name": "interface_1"
              }
            ],
            "name": "label_1"
          }
        }
      },
      "Label3": {
        "title": "Label3",
        "required": [
          "referenced-objects",
          "name"
        ],
        "type": "object",
        "properties": {
          "referenced-objects": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ReferencedObjects"
            },
            "description": ""
          },
          "name": {
            "type": "string"
          }
        },
        "example": {
          "referenced-objects": [
            {
              "object-type": "device",
              "name": "device_test1"
            },
            {
              "object-type": "interface",
              "name": "interface_1"
            }
          ],
          "name": "label_1"
        }
      },
      "DeleteLabel-InterfaceNotExists1": {
        "title": "DeleteLabel-InterfaceNotExists1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Could not find path List(adtran-cloud-platform-labels, labels, label=label_1, referenced-objects=interface,unknown_interface)"
        }
      },
      "DeleteLabel-LabelNotExists1": {
        "title": "DeleteLabel-LabelNotExists1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Could not find path List(adtran-cloud-platform-labels, labels, label=label_3)"
        }
      },
      "OnboardDeviceUsingPortPatternRequest": {
        "title": "OnboardDeviceUsingPortPatternRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input185"
          }
        },
        "example": {
          "input": {
            "device-context": {
              "object-parameters": {},
              "interface-names": [
                "{{int-for-port-pattern}}"
              ],
              "device-name": "device_123",
              "model-name": "Generic Device",
              "management-domain-context": {
                "management-domain-static-ipv4": {
                  "ip-address": "10.27.115.15",
                  "mask": "255.255.255.0",
                  "gateway": "10.27.115.10"
                }
              },
              "base-configuration": ""
            },
            "interface-context": {
              "lower-layer-interfaces": [],
              "interface-id-pattern": "gpon 0/$port%2$",
              "interface-name-pattern": "{{int-for-port-pattern}}-$port%2$",
              "interface-type": "generic",
              "port-range": {
                "from": 1,
                "to": 1
              }
            },
            "bundle-context": {
              "counter-start": 1,
              "bundle-id-pattern": "10$port$/1",
              "bundle-name-pattern": "bundle_1$port$",
              "bundle-type": "",
              "profile-vector-name": ""
            }
          }
        }
      },
      "Input185": {
        "title": "Input185",
        "required": [
          "device-context",
          "interface-context",
          "bundle-context"
        ],
        "type": "object",
        "properties": {
          "device-context": {
            "$ref": "#/components/schemas/DeviceContext28"
          },
          "interface-context": {
            "$ref": "#/components/schemas/InterfaceContext33"
          },
          "bundle-context": {
            "$ref": "#/components/schemas/BundleContext11"
          }
        },
        "example": {
          "device-context": {
            "object-parameters": {},
            "interface-names": [
              "{{int-for-port-pattern}}"
            ],
            "device-name": "device_123",
            "model-name": "Generic Device",
            "management-domain-context": {
              "management-domain-static-ipv4": {
                "ip-address": "10.27.115.15",
                "mask": "255.255.255.0",
                "gateway": "10.27.115.10"
              }
            },
            "base-configuration": ""
          },
          "interface-context": {
            "lower-layer-interfaces": [],
            "interface-id-pattern": "gpon 0/$port%2$",
            "interface-name-pattern": "{{int-for-port-pattern}}-$port%2$",
            "interface-type": "generic",
            "port-range": {
              "from": 1,
              "to": 1
            }
          },
          "bundle-context": {
            "counter-start": 1,
            "bundle-id-pattern": "10$port$/1",
            "bundle-name-pattern": "bundle_1$port$",
            "bundle-type": "",
            "profile-vector-name": ""
          }
        }
      },
      "DeviceContext28": {
        "title": "DeviceContext28",
        "required": [
          "object-parameters",
          "interface-names",
          "device-name",
          "model-name",
          "management-domain-context",
          "base-configuration"
        ],
        "type": "object",
        "properties": {
          "object-parameters": {
            "type": "object"
          },
          "interface-names": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "device-name": {
            "type": "string"
          },
          "model-name": {
            "type": "string"
          },
          "management-domain-context": {
            "$ref": "#/components/schemas/ManagementDomainContext19"
          },
          "base-configuration": {
            "type": "string"
          }
        },
        "example": {
          "object-parameters": {},
          "interface-names": [
            "{{int-for-port-pattern}}"
          ],
          "device-name": "device_123",
          "model-name": "Generic Device",
          "management-domain-context": {
            "management-domain-static-ipv4": {
              "ip-address": "10.27.115.15",
              "mask": "255.255.255.0",
              "gateway": "10.27.115.10"
            }
          },
          "base-configuration": ""
        }
      },
      "ManagementDomainContext19": {
        "title": "ManagementDomainContext19",
        "required": [
          "management-domain-static-ipv4"
        ],
        "type": "object",
        "properties": {
          "management-domain-static-ipv4": {
            "$ref": "#/components/schemas/ManagementDomainStaticIpv4"
          }
        },
        "example": {
          "management-domain-static-ipv4": {
            "ip-address": "10.27.115.15",
            "mask": "255.255.255.0",
            "gateway": "10.27.115.10"
          }
        }
      },
      "InterfaceContext33": {
        "title": "InterfaceContext33",
        "required": [
          "lower-layer-interfaces",
          "interface-id-pattern",
          "interface-name-pattern",
          "interface-type",
          "port-range"
        ],
        "type": "object",
        "properties": {
          "lower-layer-interfaces": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "interface-id-pattern": {
            "type": "string"
          },
          "interface-name-pattern": {
            "type": "string"
          },
          "interface-type": {
            "type": "string"
          },
          "port-range": {
            "$ref": "#/components/schemas/PortRange"
          }
        },
        "example": {
          "lower-layer-interfaces": [],
          "interface-id-pattern": "gpon 0/$port%2$",
          "interface-name-pattern": "{{int-for-port-pattern}}-$port%2$",
          "interface-type": "generic",
          "port-range": {
            "from": 1,
            "to": 1
          }
        }
      },
      "PortRange": {
        "title": "PortRange",
        "required": [
          "from",
          "to"
        ],
        "type": "object",
        "properties": {
          "from": {
            "type": "integer",
            "format": "int32"
          },
          "to": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "from": 1,
          "to": 1
        }
      },
      "BundleContext11": {
        "title": "BundleContext11",
        "required": [
          "counter-start",
          "bundle-id-pattern",
          "bundle-name-pattern",
          "bundle-type",
          "profile-vector-name"
        ],
        "type": "object",
        "properties": {
          "counter-start": {
            "type": "integer",
            "format": "int32"
          },
          "bundle-id-pattern": {
            "type": "string"
          },
          "bundle-name-pattern": {
            "type": "string"
          },
          "bundle-type": {
            "type": "string"
          },
          "profile-vector-name": {
            "type": "string"
          }
        },
        "example": {
          "counter-start": 1,
          "bundle-id-pattern": "10$port$/1",
          "bundle-name-pattern": "bundle_1$port$",
          "bundle-type": "",
          "profile-vector-name": ""
        }
      },
      "PortPattern-UndeployInterfaceRequest": {
        "title": "PortPattern-UndeployInterfaceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input115"
          }
        },
        "example": {
          "input": {
            "interface-context": {
              "interface-name": "{{int-for-port-pattern}}-01"
            }
          }
        }
      },
      "PortPattern-DeleteInterfaceRequest": {
        "title": "PortPattern-DeleteInterfaceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input115"
          }
        },
        "example": {
          "input": {
            "interface-context": {
              "interface-name": "{{int-for-port-pattern}}-01"
            }
          }
        }
      },
      "PortPattern-UndeployBundleRequest": {
        "title": "PortPattern-UndeployBundleRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input65"
          }
        },
        "example": {
          "input": {
            "bundle-context": {
              "bundle-name": "bundle_11"
            }
          }
        }
      },
      "PortPattern-DeleteBundleRequest": {
        "title": "PortPattern-DeleteBundleRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input65"
          }
        },
        "example": {
          "input": {
            "bundle-context": {
              "bundle-name": "bundle_11"
            }
          }
        }
      },
      "PortPattern-UndeployDeviceRequest": {
        "title": "PortPattern-UndeployDeviceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input98"
          }
        },
        "example": {
          "input": {
            "device-context": {
              "device-name": "device_123"
            }
          }
        }
      },
      "PortPattern-DeleteDeviceRequest": {
        "title": "PortPattern-DeleteDeviceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input98"
          }
        },
        "example": {
          "input": {
            "device-context": {
              "device-name": "device_123"
            }
          }
        }
      },
      "PortPattern-DeactivateDeviceInterfaceRequest": {
        "title": "PortPattern-DeactivateDeviceInterfaceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input115"
          }
        },
        "example": {
          "input": {
            "interface-context": {
              "interface-name": "{{int-for-port-pattern}}"
            }
          }
        }
      },
      "PortPattern-UndeployDeviceInterfaceRequest": {
        "title": "PortPattern-UndeployDeviceInterfaceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input115"
          }
        },
        "example": {
          "input": {
            "interface-context": {
              "interface-name": "{{int-for-port-pattern}}"
            }
          }
        }
      },
      "PortPattern-DeleteDeviceInterfaceRequest": {
        "title": "PortPattern-DeleteDeviceInterfaceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input115"
          }
        },
        "example": {
          "input": {
            "interface-context": {
              "interface-name": "{{int-for-port-pattern}}"
            }
          }
        }
      },
      "OnboardDeviceRequest": {
        "title": "OnboardDeviceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input195"
          }
        },
        "example": {
          "input": {
            "rollback-on-failure": true,
            "device-context": {
              "object-parameters": {},
              "interface-names": [
                "Interface-name-1"
              ],
              "device-name": "{{onboard-device-name}}",
              "model-name": "NGPON2 16P OLT Access Switch",
              "management-domain-context": {
                "management-domain-static-ipv4": {
                  "ip-address": "10.27.115.15",
                  "mask": "255.255.255.0",
                  "gateway": "10.27.115.10"
                }
              },
              "profile-vector-name": "SimpleVector",
              "credentials-name": "Credentials",
              "base-configuration": ""
            },
            "interface-context": {
              "lower-layer-interfaces": [],
              "interface-id-pattern": "gpon 0/$port$",
              "interface-name-pattern": "{{onboard-interface-name}}-$port$",
              "interface-type": "generic",
              "profile-vector-name": "SimpleInterfaceVector",
              "port-range": {
                "from": 1,
                "to": 1
              }
            },
            "bundle-context": {
              "counter-start": 1,
              "bundle-id-pattern": "10$port$/1",
              "bundle-name-pattern": "{{onboard-bundle-name}}-$port$",
              "bundle-type": "Generic Bundle",
              "profile-vector-name": ""
            }
          }
        }
      },
      "Input195": {
        "title": "Input195",
        "required": [
          "rollback-on-failure",
          "device-context",
          "interface-context",
          "bundle-context"
        ],
        "type": "object",
        "properties": {
          "rollback-on-failure": {
            "type": "boolean"
          },
          "device-context": {
            "$ref": "#/components/schemas/DeviceContext31"
          },
          "interface-context": {
            "$ref": "#/components/schemas/InterfaceContext39"
          },
          "bundle-context": {
            "$ref": "#/components/schemas/BundleContext11"
          }
        },
        "example": {
          "rollback-on-failure": true,
          "device-context": {
            "object-parameters": {},
            "interface-names": [
              "Interface-name-1"
            ],
            "device-name": "{{onboard-device-name}}",
            "model-name": "NGPON2 16P OLT Access Switch",
            "management-domain-context": {
              "management-domain-static-ipv4": {
                "ip-address": "10.27.115.15",
                "mask": "255.255.255.0",
                "gateway": "10.27.115.10"
              }
            },
            "profile-vector-name": "SimpleVector",
            "credentials-name": "Credentials",
            "base-configuration": ""
          },
          "interface-context": {
            "lower-layer-interfaces": [],
            "interface-id-pattern": "gpon 0/$port$",
            "interface-name-pattern": "{{onboard-interface-name}}-$port$",
            "interface-type": "generic",
            "profile-vector-name": "SimpleInterfaceVector",
            "port-range": {
              "from": 1,
              "to": 1
            }
          },
          "bundle-context": {
            "counter-start": 1,
            "bundle-id-pattern": "10$port$/1",
            "bundle-name-pattern": "{{onboard-bundle-name}}-$port$",
            "bundle-type": "Generic Bundle",
            "profile-vector-name": ""
          }
        }
      },
      "DeviceContext31": {
        "title": "DeviceContext31",
        "required": [
          "object-parameters",
          "interface-names",
          "device-name",
          "model-name",
          "management-domain-context",
          "profile-vector-name",
          "credentials-name",
          "base-configuration"
        ],
        "type": "object",
        "properties": {
          "object-parameters": {
            "type": "object"
          },
          "interface-names": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "device-name": {
            "type": "string"
          },
          "model-name": {
            "type": "string"
          },
          "management-domain-context": {
            "$ref": "#/components/schemas/ManagementDomainContext19"
          },
          "profile-vector-name": {
            "type": "string"
          },
          "credentials-name": {
            "type": "string"
          },
          "base-configuration": {
            "type": "string"
          }
        },
        "example": {
          "object-parameters": {},
          "interface-names": [
            "Interface-name-1"
          ],
          "device-name": "{{onboard-device-name}}",
          "model-name": "NGPON2 16P OLT Access Switch",
          "management-domain-context": {
            "management-domain-static-ipv4": {
              "ip-address": "10.27.115.15",
              "mask": "255.255.255.0",
              "gateway": "10.27.115.10"
            }
          },
          "profile-vector-name": "SimpleVector",
          "credentials-name": "Credentials",
          "base-configuration": ""
        }
      },
      "InterfaceContext39": {
        "title": "InterfaceContext39",
        "required": [
          "lower-layer-interfaces",
          "interface-id-pattern",
          "interface-name-pattern",
          "interface-type",
          "profile-vector-name",
          "port-range"
        ],
        "type": "object",
        "properties": {
          "lower-layer-interfaces": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "interface-id-pattern": {
            "type": "string"
          },
          "interface-name-pattern": {
            "type": "string"
          },
          "interface-type": {
            "type": "string"
          },
          "profile-vector-name": {
            "type": "string"
          },
          "port-range": {
            "$ref": "#/components/schemas/PortRange"
          }
        },
        "example": {
          "lower-layer-interfaces": [],
          "interface-id-pattern": "gpon 0/$port$",
          "interface-name-pattern": "{{onboard-interface-name}}-$port$",
          "interface-type": "generic",
          "profile-vector-name": "SimpleInterfaceVector",
          "port-range": {
            "from": 1,
            "to": 1
          }
        }
      },
      "OnboardDevice-Success": {
        "title": "OnboardDevice-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output131"
          }
        },
        "example": {
          "output": {
            "device-name": "onboard_device_1",
            "timestamp": "2020-05-06T18:06:55.137000",
            "status": "device-onboarding",
            "trans-id": "7bb849ca-d4f2-424e-b0f8-c7a1bdb91842",
            "completion-status": "in-progress"
          }
        }
      },
      "OnboardDeviceCleanup-UndeployInterfaceRequest": {
        "title": "OnboardDeviceCleanup-UndeployInterfaceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input115"
          }
        },
        "example": {
          "input": {
            "interface-context": {
              "interface-name": "{{onboard-interface-name}}-1"
            }
          }
        }
      },
      "OnboardDeviceCleanup-DeleteInterfaceRequest": {
        "title": "OnboardDeviceCleanup-DeleteInterfaceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input115"
          }
        },
        "example": {
          "input": {
            "interface-context": {
              "interface-name": "{{onboard-interface-name}}-1"
            }
          }
        }
      },
      "OnboardDeviceCleanup-UndeployBundleRequest": {
        "title": "OnboardDeviceCleanup-UndeployBundleRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input65"
          }
        },
        "example": {
          "input": {
            "bundle-context": {
              "bundle-name": "{{onboard-bundle-name}}-1"
            }
          }
        }
      },
      "OnboardDeviceCleanup-DeleteBundleRequest": {
        "title": "OnboardDeviceCleanup-DeleteBundleRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input65"
          }
        },
        "example": {
          "input": {
            "bundle-context": {
              "bundle-name": "{{onboard-bundle-name}}-1"
            }
          }
        }
      },
      "OnboardDeviceCleanup-UndeployDeviceRequest": {
        "title": "OnboardDeviceCleanup-UndeployDeviceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input98"
          }
        },
        "example": {
          "input": {
            "device-context": {
              "device-name": "{{onboard-device-name}}"
            }
          }
        }
      },
      "OnboardDeviceCleanup-DeleteDeviceRequest": {
        "title": "OnboardDeviceCleanup-DeleteDeviceRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input98"
          }
        },
        "example": {
          "input": {
            "device-context": {
              "device-name": "{{onboard-device-name}}"
            }
          }
        }
      },
      "CheckTransitions-Success": {
        "title": "CheckTransitions-Success",
        "required": [
          "device-name",
          "timestamp",
          "status",
          "trans-id",
          "completion-status"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "timestamp": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "trans-id": {
            "type": "string"
          },
          "completion-status": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "device_1",
          "timestamp": "2020-05-05T11:15:43.860000",
          "status": "configuring",
          "trans-id": "4040da10-9c3c-492a-9bbe-8cfa4d4d81f4",
          "completion-status": "completed-ok"
        }
      },
      "CheckTransitions-IncorrectTransitionId1": {
        "title": "CheckTransitions-IncorrectTransitionId1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "transaction",
            "error-tag": "Transaction Not Found",
            "error-message": "Result for transaction-id=4040da10-9c3c-492a-9bbe-cfa4d4d81f41 missing"
          }
        }
      },
      "CheckTransitions-InProgress1": {
        "title": "CheckTransitions-InProgress1",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output131"
          }
        },
        "example": {
          "output": {
            "device-name": "device_1",
            "timestamp": "2020-05-05T11:18:00.490000",
            "status": "deleting",
            "trans-id": "2705d3aa-857d-4757-b994-905924d47ee4",
            "completion-status": "in-progress"
          }
        }
      },
      "CreateProfileRequest": {
        "title": "CreateProfileRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input202"
          }
        },
        "example": {
          "input": {
            "profile-context": {
              "name": "TPID 88A8 STAG 8100 CTAG Profile",
              "type": "tpid-profile-type"
            }
          }
        }
      },
      "Input202": {
        "title": "Input202",
        "required": [
          "profile-context"
        ],
        "type": "object",
        "properties": {
          "profile-context": {
            "$ref": "#/components/schemas/ProfileContext"
          }
        },
        "example": {
          "profile-context": {
            "name": "TPID 88A8 STAG 8100 CTAG Profile",
            "type": "tpid-profile-type"
          }
        }
      },
      "ProfileContext": {
        "title": "ProfileContext",
        "required": [
          "name",
          "type"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          }
        },
        "example": {
          "name": "TPID 88A8 STAG 8100 CTAG Profile",
          "type": "tpid-profile-type"
        }
      },
      "CreateProfile-ModeledProfile": {
        "title": "CreateProfile-ModeledProfile",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output225"
          }
        },
        "example": {
          "output": {
            "name": "TPID 88A8 STAG 8100 CTAG Profile",
            "timestamp": "2020-05-13T07:31:16.898000",
            "status": "configuring",
            "trans-id": "076839d0-2211-4a7f-bdea-1cb467f46552",
            "completion-status": "in-progress",
            "type": "tpid-profile-type"
          }
        }
      },
      "Output225": {
        "title": "Output225",
        "required": [
          "name",
          "timestamp",
          "status",
          "trans-id",
          "completion-status",
          "type"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "timestamp": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "trans-id": {
            "type": "string"
          },
          "completion-status": {
            "type": "string"
          },
          "type": {
            "type": "string"
          }
        },
        "example": {
          "name": "TPID 88A8 STAG 8100 CTAG Profile",
          "timestamp": "2020-05-13T07:31:16.898000",
          "status": "configuring",
          "trans-id": "076839d0-2211-4a7f-bdea-1cb467f46552",
          "completion-status": "in-progress",
          "type": "tpid-profile-type"
        }
      },
      "CreateProfile-ProfileAlreadyExist1": {
        "title": "CreateProfile-ProfileAlreadyExist1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Profile profile-1 already exists"
          }
        }
      },
      "CreateProfile-GenericProfile": {
        "title": "CreateProfile-GenericProfile",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output225"
          }
        },
        "example": {
          "output": {
            "name": "profile-1",
            "timestamp": "2020-05-06T09:12:06.293000",
            "status": "configuring",
            "trans-id": "8f217042-878e-4b16-bd79-5ebd1d648ff0",
            "completion-status": "in-progress",
            "type": "generic-profile"
          }
        }
      },
      "ConfigureProfileRequest": {
        "title": "ConfigureProfileRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input202"
          }
        },
        "example": {
          "input": {
            "profile-context": {
              "name": "TPID 88A8 STAG 8100 CTAG Profile",
              "type": "tpid-profile-type"
            }
          }
        }
      },
      "ConfigureProfile-ModeledProfile": {
        "title": "ConfigureProfile-ModeledProfile",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output225"
          }
        },
        "example": {
          "output": {
            "name": "TPID 88A8 STAG 8100 CTAG Profile",
            "timestamp": "2020-05-13T07:33:28.245000",
            "status": "configuring",
            "trans-id": "9aa5eff4-8c9f-4df9-aff4-6d2db784328a",
            "completion-status": "in-progress",
            "type": "tpid-profile-type"
          }
        }
      },
      "ConfigureProfile-IncorrectProfileName1": {
        "title": "ConfigureProfile-IncorrectProfileName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Profile Incorrect profile name of type generic-profile does not exist"
          }
        }
      },
      "ConfigureProfile-GenericProfile": {
        "title": "ConfigureProfile-GenericProfile",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output225"
          }
        },
        "example": {
          "output": {
            "name": "profile-1",
            "timestamp": "2020-05-09T11:27:41.403000",
            "status": "configuring",
            "trans-id": "fffcdbbe-2b50-4eb5-af64-c0af776e8b55",
            "completion-status": "in-progress",
            "type": "generic-profile"
          }
        }
      },
      "DeployProfileRequest": {
        "title": "DeployProfileRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input204"
          }
        },
        "example": {
          "input": {
            "profile-context": {
              "name": "TPID 88A8 STAG 8100 CTAG Profile",
              "type": "tpid-profile-type",
              "tpid-profile": {
                "stag-tpid": 33024,
                "ctag-tpid": 33024
              }
            }
          }
        }
      },
      "Input204": {
        "title": "Input204",
        "required": [
          "profile-context"
        ],
        "type": "object",
        "properties": {
          "profile-context": {
            "$ref": "#/components/schemas/ProfileContext2"
          }
        },
        "example": {
          "profile-context": {
            "name": "TPID 88A8 STAG 8100 CTAG Profile",
            "type": "tpid-profile-type",
            "tpid-profile": {
              "stag-tpid": 33024,
              "ctag-tpid": 33024
            }
          }
        }
      },
      "ProfileContext2": {
        "title": "ProfileContext2",
        "required": [
          "name",
          "type",
          "tpid-profile"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "tpid-profile": {
            "$ref": "#/components/schemas/TpidProfile"
          }
        },
        "example": {
          "name": "TPID 88A8 STAG 8100 CTAG Profile",
          "type": "tpid-profile-type",
          "tpid-profile": {
            "stag-tpid": 33024,
            "ctag-tpid": 33024
          }
        }
      },
      "DeployProfile-GenericProfile": {
        "title": "DeployProfile-GenericProfile",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output225"
          }
        },
        "example": {
          "output": {
            "name": "profile-1",
            "timestamp": "2020-05-06T09:41:15.853000",
            "status": "deploying",
            "trans-id": "99319456-4c59-453e-9a04-f8c13ce9f20b",
            "completion-status": "in-progress",
            "type": "generic-profile"
          }
        }
      },
      "DeployProfile-AlreadyDeployed1": {
        "title": "DeployProfile-AlreadyDeployed1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'deploy' not allowed for profile-1 with state 'deployed'"
          }
        }
      },
      "DeployProfile-ModeledProfile": {
        "title": "DeployProfile-ModeledProfile",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output225"
          }
        },
        "example": {
          "output": {
            "name": "TPID 88A8 STAG 8100 CTAG Profile",
            "timestamp": "2020-05-13T07:40:21.094000",
            "status": "deploying",
            "trans-id": "59fd9eba-02d9-4d5b-855d-8852975afe6e",
            "completion-status": "in-progress",
            "type": "tpid-profile-type"
          }
        }
      },
      "DeployProfile-IncorrectProfileName1": {
        "title": "DeployProfile-IncorrectProfileName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Profile Incorrect Profile Name of type generic-profile does not exist."
          }
        }
      },
      "ActivateProfileRequest": {
        "title": "ActivateProfileRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input202"
          }
        },
        "example": {
          "input": {
            "profile-context": {
              "name": "TPID 88A8 STAG 8100 CTAG Profile",
              "type": "tpid-profile-type"
            }
          }
        }
      },
      "ActivateProfile-IncorrectProfileName1": {
        "title": "ActivateProfile-IncorrectProfileName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Profile Incorrect Profile Name of type generic-profile does not exist"
          }
        }
      },
      "ActivateProfile-Success": {
        "title": "ActivateProfile-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output225"
          }
        },
        "example": {
          "output": {
            "name": "profile-1",
            "timestamp": "2020-05-06T10:06:00.808000",
            "status": "activating",
            "trans-id": "ea4154b7-7942-4213-b1f4-b5a294a5bcd8",
            "completion-status": "in-progress",
            "type": "generic-profile"
          }
        }
      },
      "ActivateProfile-Alreadyactivated1": {
        "title": "ActivateProfile-Alreadyactivated1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'activate' not allowed for profile-1 with state 'activated'"
          }
        }
      },
      "ActivateProfile-ModeledProfile": {
        "title": "ActivateProfile-ModeledProfile",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output225"
          }
        },
        "example": {
          "output": {
            "name": "TPID 88A8 STAG 8100 CTAG Profile",
            "timestamp": "2020-05-13T07:42:02.578000",
            "status": "activating",
            "trans-id": "b6c2f3a1-069c-4697-9057-7faa8d939038",
            "completion-status": "in-progress",
            "type": "tpid-profile-type"
          }
        }
      },
      "DeactivateProfileRequest": {
        "title": "DeactivateProfileRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input202"
          }
        },
        "example": {
          "input": {
            "profile-context": {
              "name": "TPID 88A8 STAG 8100 CTAG Profile",
              "type": "tpid-profile-type"
            }
          }
        }
      },
      "DeactivateProfile-Alreadydeactivated1": {
        "title": "DeactivateProfile-Alreadydeactivated1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'deactivate' not allowed for profile-1 with state 'deployed'"
          }
        }
      },
      "DeactivateProfile-Success": {
        "title": "DeactivateProfile-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output225"
          }
        },
        "example": {
          "output": {
            "name": "profile-1",
            "timestamp": "2020-05-06T10:11:50.798000",
            "status": "deactivating",
            "trans-id": "e166b633-c4f0-4af1-882f-2918de47dcdb",
            "completion-status": "in-progress",
            "type": "generic-profile"
          }
        }
      },
      "DeactivateProfile-IncorrectProfileName1": {
        "title": "DeactivateProfile-IncorrectProfileName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Profile Incorrect Profile Name of type generic-profile does not exist"
          }
        }
      },
      "UndeployProfileRequest": {
        "title": "UndeployProfileRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input202"
          }
        },
        "example": {
          "input": {
            "profile-context": {
              "name": "TPID 88A8 STAG 8100 CTAG Profile",
              "type": "tpid-profile-type"
            }
          }
        }
      },
      "UndeployProfile-IncorrectProfileName1": {
        "title": "UndeployProfile-IncorrectProfileName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Profile Incorrect Profile Name of type generic-profile does not exist"
          }
        }
      },
      "UndeployProfile-Success": {
        "title": "UndeployProfile-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output225"
          }
        },
        "example": {
          "output": {
            "name": "profile-1",
            "timestamp": "2020-05-06T10:17:19.296000",
            "status": "undeploying",
            "trans-id": "3d9f91ae-efe4-41f2-9d0c-9b02f7cb9a20",
            "completion-status": "in-progress",
            "type": "generic-profile"
          }
        }
      },
      "UndeployProfile-Alreadyundeployed1": {
        "title": "UndeployProfile-Alreadyundeployed1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'undeploy' not allowed for profile-1 with state 'configured'"
          }
        }
      },
      "DeleteProfileRequest": {
        "title": "DeleteProfileRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input202"
          }
        },
        "example": {
          "input": {
            "profile-context": {
              "name": "TPID 88A8 STAG 8100 CTAG Profile",
              "type": "tpid-profile-type"
            }
          }
        }
      },
      "DeleteProfile-Success": {
        "title": "DeleteProfile-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output225"
          }
        },
        "example": {
          "output": {
            "name": "profile-1",
            "timestamp": "2020-05-06T10:25:58.746000",
            "status": "deleting",
            "trans-id": "f2245c4a-7128-4b73-ab39-b505acdd58ea",
            "completion-status": "in-progress",
            "type": "generic-profile"
          }
        }
      },
      "DeleteProfile-IncorrectProfileName1": {
        "title": "DeleteProfile-IncorrectProfileName1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Profile Incorrect Profile Name of type generic-profile does not exist"
          }
        }
      },
      "CreateProfileVectorRequest": {
        "title": "CreateProfileVectorRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input209"
          }
        },
        "example": {
          "input": {
            "profile-vector-context": {
              "profile-vector-name": "profile-vector-1",
              "type": "interface"
            }
          }
        }
      },
      "Input209": {
        "title": "Input209",
        "required": [
          "profile-vector-context"
        ],
        "type": "object",
        "properties": {
          "profile-vector-context": {
            "$ref": "#/components/schemas/ProfileVectorContext"
          }
        },
        "example": {
          "profile-vector-context": {
            "profile-vector-name": "profile-vector-1",
            "type": "interface"
          }
        }
      },
      "ProfileVectorContext": {
        "title": "ProfileVectorContext",
        "required": [
          "profile-vector-name",
          "type"
        ],
        "type": "object",
        "properties": {
          "profile-vector-name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          }
        },
        "example": {
          "profile-vector-name": "profile-vector-1",
          "type": "interface"
        }
      },
      "CreateProfileVector-AlreadyExist1": {
        "title": "CreateProfileVector-AlreadyExist1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Profile vector with name profile-vector-1 already exists'"
          }
        }
      },
      "CreateProfileVector-Success": {
        "title": "CreateProfileVector-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output236"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-09T11:33:26.478000",
            "status": "configuring",
            "trans-id": "ec0d297e-645b-4f9e-b10a-a9360876c3ec",
            "completion-status": "in-progress",
            "profile-vector-name": "profile-vector-1"
          }
        }
      },
      "Output236": {
        "title": "Output236",
        "required": [
          "timestamp",
          "status",
          "trans-id",
          "completion-status",
          "profile-vector-name"
        ],
        "type": "object",
        "properties": {
          "timestamp": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "trans-id": {
            "type": "string"
          },
          "completion-status": {
            "type": "string"
          },
          "profile-vector-name": {
            "type": "string"
          }
        },
        "example": {
          "timestamp": "2020-05-09T11:33:26.478000",
          "status": "configuring",
          "trans-id": "ec0d297e-645b-4f9e-b10a-a9360876c3ec",
          "completion-status": "in-progress",
          "profile-vector-name": "profile-vector-1"
        }
      },
      "ConfigureProfileVectorRequest": {
        "title": "ConfigureProfileVectorRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input209"
          }
        },
        "example": {
          "input": {
            "profile-vector-context": {
              "profile-vector-name": "profile-vector-1",
              "type": "interface"
            }
          }
        }
      },
      "ConfigureProfileVector-IncorrectProfilevector1": {
        "title": "ConfigureProfileVector-IncorrectProfilevector1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Profile vector with name Incorrect Profile Vector not available'"
          }
        }
      },
      "ConfigureProfileVector-Success": {
        "title": "ConfigureProfileVector-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output236"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-09T11:35:32.885000",
            "status": "configuring",
            "trans-id": "623bdf1a-ec89-40e8-bb55-89065f9a4490",
            "completion-status": "in-progress",
            "profile-vector-name": "profile-vector-1"
          }
        }
      },
      "DeployProfileVectorRequest": {
        "title": "DeployProfileVectorRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input211"
          }
        },
        "example": {
          "input": {
            "profile-vector-context": {
              "profile-vector-name": "profile-vector-1",
              "profile": [
                {
                  "name": "file-transfer-1",
                  "type": "file-transfer-server-profile"
                },
                {
                  "name": "tpid-1",
                  "type": "tpid-profile-type"
                }
              ]
            }
          }
        }
      },
      "Input211": {
        "title": "Input211",
        "required": [
          "profile-vector-context"
        ],
        "type": "object",
        "properties": {
          "profile-vector-context": {
            "$ref": "#/components/schemas/ProfileVectorContext2"
          }
        },
        "example": {
          "profile-vector-context": {
            "profile-vector-name": "profile-vector-1",
            "profile": [
              {
                "name": "file-transfer-1",
                "type": "file-transfer-server-profile"
              },
              {
                "name": "tpid-1",
                "type": "tpid-profile-type"
              }
            ]
          }
        }
      },
      "ProfileVectorContext2": {
        "title": "ProfileVectorContext2",
        "required": [
          "profile-vector-name",
          "profile"
        ],
        "type": "object",
        "properties": {
          "profile-vector-name": {
            "type": "string"
          },
          "profile": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Profile"
            },
            "description": ""
          }
        },
        "example": {
          "profile-vector-name": "profile-vector-1",
          "profile": [
            {
              "name": "file-transfer-1",
              "type": "file-transfer-server-profile"
            },
            {
              "name": "tpid-1",
              "type": "tpid-profile-type"
            }
          ]
        }
      },
      "DeployProfileVector-ProfilesnotAvailable1": {
        "title": "DeployProfileVector-ProfilesnotAvailable1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Expected profile not available generic-profile silver-profile"
          }
        }
      },
      "DeployProfileVector-IncorrectProfilevectorname1": {
        "title": "DeployProfileVector-IncorrectProfilevectorname1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "profile vector with name Incorrect Profile vector not available'"
          }
        }
      },
      "DeployProfileVector-AlreadyDeployed1": {
        "title": "DeployProfileVector-AlreadyDeployed1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'deploy' not allowed for profile-vector-1 with state 'deployed'"
          }
        }
      },
      "DeployProfileVector-UsingModeledProfiles": {
        "title": "DeployProfileVector-UsingModeledProfiles",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output236"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-13T04:10:00.100000",
            "status": "deploying",
            "trans-id": "645cd2e9-c9a7-4c9c-80f4-cce27c6652f0",
            "completion-status": "in-progress",
            "profile-vector-name": "profile-vector-1"
          }
        }
      },
      "DeployProfileVector-UsingGenericProfiles": {
        "title": "DeployProfileVector-UsingGenericProfiles",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output236"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-07T04:10:00.100000",
            "status": "deploying",
            "trans-id": "645cd2e9-c9a7-4c9c-80f4-cce27c6652f0",
            "completion-status": "in-progress",
            "profile-vector-name": "profile-vector-1"
          }
        }
      },
      "ActivateProfileVectorRequest": {
        "title": "ActivateProfileVectorRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input212"
          }
        },
        "example": {
          "input": {
            "profile-vector-context": {
              "profile-vector-name": "profile-vector-1"
            }
          }
        }
      },
      "Input212": {
        "title": "Input212",
        "required": [
          "profile-vector-context"
        ],
        "type": "object",
        "properties": {
          "profile-vector-context": {
            "$ref": "#/components/schemas/ProfileVectorContext3"
          }
        },
        "example": {
          "profile-vector-context": {
            "profile-vector-name": "profile-vector-1"
          }
        }
      },
      "ProfileVectorContext3": {
        "title": "ProfileVectorContext3",
        "required": [
          "profile-vector-name"
        ],
        "type": "object",
        "properties": {
          "profile-vector-name": {
            "type": "string"
          }
        },
        "example": {
          "profile-vector-name": "profile-vector-1"
        }
      },
      "ActivateProfileVector-Success": {
        "title": "ActivateProfileVector-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output236"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-07T04:12:36.268000",
            "status": "activating",
            "trans-id": "ce25ed2d-d53e-44ed-ab2f-3a0072431f00",
            "completion-status": "in-progress",
            "profile-vector-name": "profile-vector-1"
          }
        }
      },
      "ActivateProfileVector-IncorrectProfilevector1": {
        "title": "ActivateProfileVector-IncorrectProfilevector1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Validation failed"
          }
        }
      },
      "ActivateProfileVector-AlreadyActivated1": {
        "title": "ActivateProfileVector-AlreadyActivated1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'activate' not allowed for profile-vector-1 with state 'activated'"
          }
        }
      },
      "DeactivateProfileVectorRequest": {
        "title": "DeactivateProfileVectorRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input212"
          }
        },
        "example": {
          "input": {
            "profile-vector-context": {
              "profile-vector-name": "profile-vector-1"
            }
          }
        }
      },
      "DeactivateProfileVector-IncorrectProfilevector1": {
        "title": "DeactivateProfileVector-IncorrectProfilevector1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Validation failed"
          }
        }
      },
      "DeactivateProfileVector-Alreadydeactivated1": {
        "title": "DeactivateProfileVector-Alreadydeactivated1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'deactivate' not allowed for profile-vector-1 with state 'deployed'"
          }
        }
      },
      "DeactivateProfileVector-Success": {
        "title": "DeactivateProfileVector-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output236"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-07T04:37:16.380000",
            "status": "deactivating",
            "trans-id": "4806ce81-c3c7-4c05-8e8d-f91149c4d315",
            "completion-status": "in-progress",
            "profile-vector-name": "profile-vector-1"
          }
        }
      },
      "UndeployProfileVectorRequest": {
        "title": "UndeployProfileVectorRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input212"
          }
        },
        "example": {
          "input": {
            "profile-vector-context": {
              "profile-vector-name": "profile-vector-1"
            }
          }
        }
      },
      "UndeployProfileVector-Alreadyundeployed1": {
        "title": "UndeployProfileVector-Alreadyundeployed1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Action 'undeploy' not allowed for profile-vector-1 with state 'configured'"
          }
        }
      },
      "UndeployProfileVector-Success": {
        "title": "UndeployProfileVector-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output236"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-07T04:43:35.020000",
            "status": "undeploying",
            "trans-id": "72959f54-a22a-4a34-9f81-22127fbac405",
            "completion-status": "in-progress",
            "profile-vector-name": "profile-vector-1"
          }
        }
      },
      "UndeployProfileVector-IncorrectProfilevector1": {
        "title": "UndeployProfileVector-IncorrectProfilevector1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors"
          }
        },
        "example": {
          "errors": {
            "error-type": "rpc",
            "error-tag": "Validation of precondition failed",
            "error-message": "Profile vector with name Incorrect Profile Vector not available'"
          }
        }
      },
      "DeleteProfileVectorRequest": {
        "title": "DeleteProfileVectorRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input212"
          }
        },
        "example": {
          "input": {
            "profile-vector-context": {
              "profile-vector-name": "profile-vector-1"
            }
          }
        }
      },
      "DeleteProfileVector-Success": {
        "title": "DeleteProfileVector-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output236"
          }
        },
        "example": {
          "output": {
            "timestamp": "2020-05-07T04:46:50.141000",
            "status": "deleting",
            "trans-id": "d44baddf-ec4c-4aca-b7c9-e84ae52076bc",
            "completion-status": "in-progress",
            "profile-vector-name": "profile-vector-1"
          }
        }
      },
      "GetProfileVector-Success": {
        "title": "GetProfileVector-Success",
        "required": [
          "vector"
        ],
        "type": "object",
        "properties": {
          "vector": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Vector1"
            },
            "description": ""
          }
        },
        "example": {
          "vector": [
            {
              "profile-vector-name": "profile-vector-1",
              "type": "interface",
              "profile": [
                {
                  "name": "gold-profile",
                  "type": "generic-profile"
                },
                {
                  "name": "profile-1",
                  "type": "generic-profile"
                }
              ],
              "state": "activated"
            }
          ]
        }
      },
      "Vector1": {
        "title": "Vector1",
        "required": [
          "profile-vector-name",
          "type",
          "profile",
          "state"
        ],
        "type": "object",
        "properties": {
          "profile-vector-name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "profile": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Profile"
            },
            "description": ""
          },
          "state": {
            "type": "string"
          }
        },
        "example": {
          "profile-vector-name": "profile-vector-1",
          "type": "interface",
          "profile": [
            {
              "name": "gold-profile",
              "type": "generic-profile"
            },
            {
              "name": "profile-1",
              "type": "generic-profile"
            }
          ],
          "state": "activated"
        }
      },
      "GetProfileVector-IncorrectProfilevector1": {
        "title": "GetProfileVector-IncorrectProfilevector1",
        "required": [
          "errors"
        ],
        "type": "object",
        "properties": {
          "errors": {
            "$ref": "#/components/schemas/Errors24"
          }
        },
        "example": {
          "errors": {
            "error-type": "application",
            "error-message": "'Incorrect profile vector' not found"
          }
        }
      },
      "GetAllProfileVectors-Specifictype": {
        "title": "GetAllProfileVectors-Specifictype",
        "required": [
          "vector"
        ],
        "type": "object",
        "properties": {
          "vector": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Vector1"
            },
            "description": ""
          }
        },
        "example": {
          "vector": [
            {
              "profile-vector-name": "ONU Eth UNI Profile Vector",
              "type": "interface",
              "profile": [
                {
                  "name": "ONU Ethernet UNI Profile",
                  "type": "ethernet-interface-type"
                }
              ],
              "state": "activated"
            },
            {
              "profile-vector-name": "XPON Profile Vector",
              "type": "interface",
              "profile": [
                {
                  "name": "PON Port with FEC",
                  "type": "pon-port-profile-type"
                }
              ],
              "state": "activated"
            },
            {
              "profile-vector-name": "profile-vector-1",
              "type": "interface",
              "profile": [
                {
                  "name": "gold-profile",
                  "type": "generic-profile"
                },
                {
                  "name": "profile-1",
                  "type": "generic-profile"
                }
              ],
              "state": "activated"
            }
          ]
        }
      },
      "GetAllProfileVectors-Success": {
        "title": "GetAllProfileVectors-Success",
        "required": [
          "vector"
        ],
        "type": "object",
        "properties": {
          "vector": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Vector3"
            },
            "description": ""
          }
        },
        "example": {
          "vector": [
            {
              "profile-vector-name": "LCI Service Profile Vector",
              "type": "service",
              "profile": [
                {
                  "name": "LCI Group",
                  "type": "grouping-profile-type"
                }
              ],
              "state": "activated"
            },
            {
              "profile-vector-name": "OLT Config Vector",
              "type": "device",
              "profile": [
                {
                  "name": "ANCP DSL Topology",
                  "type": "ancp-profile-type"
                },
                {
                  "name": "File Server Profile",
                  "type": "file-transfer-server-profile"
                },
                {
                  "name": "OLT Upgrade Profile Group",
                  "type": "grouping-profile-type"
                },
                {
                  "name": "Offline Provision Profile",
                  "type": "offline-provision-profile-type"
                }
              ],
              "state": "activated"
            },
            {
              "profile-vector-name": "OLT Config Vector TPID 88a8",
              "type": "device",
              "profile": [
                {
                  "name": "File Server Profile",
                  "type": "file-transfer-server-profile"
                },
                {
                  "name": "OLT Upgrade Profile Group",
                  "type": "grouping-profile-type"
                },
                {
                  "name": "Offline Provision Profile",
                  "type": "offline-provision-profile-type"
                },
                {
                  "name": "88A8 STAG 8100 CTAG TPID",
                  "type": "tpid-profile-type"
                }
              ],
              "state": "activated"
            },
            {
              "profile-vector-name": "ONU Config Vector",
              "type": "device",
              "profile": [
                {
                  "name": "File Server Profile",
                  "type": "file-transfer-server-profile"
                },
                {
                  "name": "ONU Upgrade Group",
                  "type": "grouping-profile-type"
                }
              ],
              "state": "activated"
            },
            {
              "profile-vector-name": "ONU Eth UNI Profile Vector",
              "type": "interface",
              "profile": [
                {
                  "name": "ONU Ethernet UNI Profile",
                  "type": "ethernet-interface-type"
                }
              ],
              "state": "activated"
            },
            {
              "profile-vector-name": "Residential Data Service",
              "type": "service",
              "profile": [
                {
                  "name": "Residential Data Service Group",
                  "type": "grouping-profile-type"
                }
              ],
              "state": "activated"
            },
            {
              "profile-vector-name": "Residential Video Service",
              "type": "service",
              "profile": [
                {
                  "name": "Residential Video Service Group",
                  "type": "grouping-profile-type"
                }
              ],
              "state": "activated"
            },
            {
              "profile-vector-name": "SDX Service1 100M",
              "type": "service",
              "profile": [
                {
                  "name": "SDX Service1 Group",
                  "type": "grouping-profile-type"
                }
              ],
              "state": "activated"
            },
            {
              "profile-vector-name": "SDX Service1 100M DHCP",
              "type": "service",
              "profile": [
                {
                  "name": "SDX Service1 Group DHCP",
                  "type": "grouping-profile-type"
                }
              ],
              "state": "activated"
            },
            {
              "profile-vector-name": "SDX Service1 100M PPPoE",
              "type": "service",
              "profile": [
                {
                  "name": "SDX Service1 Group PPPoE",
                  "type": "grouping-profile-type"
                }
              ],
              "state": "activated"
            },
            {
              "profile-vector-name": "SDX Service2 100M",
              "type": "service",
              "profile": [
                {
                  "name": "SDX Service2 Group",
                  "type": "grouping-profile-type"
                }
              ],
              "state": "activated"
            },
            {
              "profile-vector-name": "SDX Service2 100M ANCP",
              "type": "service",
              "profile": [
                {
                  "name": "SDX Service2 Group ANCP",
                  "type": "grouping-profile-type"
                }
              ],
              "state": "activated"
            },
            {
              "profile-vector-name": "SDX Service2 100M DHCP",
              "type": "service",
              "profile": [
                {
                  "name": "SDX Service2 Group DHCP",
                  "type": "grouping-profile-type"
                }
              ],
              "state": "activated"
            },
            {
              "profile-vector-name": "SDX Service2 100M DHCP and ANCP",
              "type": "service",
              "profile": [
                {
                  "name": "SDX Service2 Group DHCP and ANCP",
                  "type": "grouping-profile-type"
                }
              ],
              "state": "activated"
            },
            {
              "profile-vector-name": "SDX Service2 100M PPPoE",
              "type": "service",
              "profile": [
                {
                  "name": "SDX Service2 Group PPPoE",
                  "type": "grouping-profile-type"
                }
              ],
              "state": "activated"
            },
            {
              "profile-vector-name": "SDX Service2 100M PPPoE and ANCP",
              "type": "service",
              "profile": [
                {
                  "name": "SDX Service2 Group PPPoE and ANCP",
                  "type": "grouping-profile-type"
                }
              ],
              "state": "activated"
            },
            {
              "profile-vector-name": "SDX Service2 Scheduler",
              "type": "service",
              "profile": [
                {
                  "name": "SDX Service2 Group Scheduler",
                  "type": "grouping-profile-type"
                }
              ],
              "state": "activated"
            },
            {
              "profile-vector-name": "SDX Service3 500M",
              "type": "service",
              "profile": [
                {
                  "name": "SDX Service3 Group",
                  "type": "grouping-profile-type"
                }
              ],
              "state": "activated"
            },
            {
              "profile-vector-name": "SDX Service3 500M DHCP",
              "type": "service",
              "profile": [
                {
                  "name": "SDX Service3 Group DHCP",
                  "type": "grouping-profile-type"
                }
              ],
              "state": "activated"
            },
            {
              "profile-vector-name": "SDX Service3 500M PPPoE",
              "type": "service",
              "profile": [
                {
                  "name": "SDX Service3 Group PPPoE",
                  "type": "grouping-profile-type"
                }
              ],
              "state": "activated"
            },
            {
              "profile-vector-name": "SDX Service3 Scheduler",
              "type": "service",
              "profile": [
                {
                  "name": "SDX Service3 Group Scheduler",
                  "type": "grouping-profile-type"
                }
              ],
              "state": "activated"
            },
            {
              "profile-vector-name": "SDX Service4 1G",
              "type": "service",
              "profile": [
                {
                  "name": "SDX Service4 Group",
                  "type": "grouping-profile-type"
                }
              ],
              "state": "activated"
            },
            {
              "profile-vector-name": "SDX Service4 1G DHCP",
              "type": "service",
              "profile": [
                {
                  "name": "SDX Service4 Group DHCP",
                  "type": "grouping-profile-type"
                }
              ],
              "state": "activated"
            },
            {
              "profile-vector-name": "SDX Service4 1G PPPoE",
              "type": "service",
              "profile": [
                {
                  "name": "SDX Service4 Group PPPoE",
                  "type": "grouping-profile-type"
                }
              ],
              "state": "activated"
            },
            {
              "profile-vector-name": "ToR Config Vector",
              "type": "device",
              "profile": [],
              "state": "activated"
            },
            {
              "profile-vector-name": "XPON Profile Vector",
              "type": "interface",
              "profile": [
                {
                  "name": "PON Port with FEC",
                  "type": "pon-port-profile-type"
                }
              ],
              "state": "activated"
            },
            {
              "profile-vector-name": "profile-vector-1",
              "type": "interface",
              "profile": [
                {
                  "name": "gold-profile",
                  "type": "generic-profile"
                },
                {
                  "name": "profile-1",
                  "type": "generic-profile"
                }
              ],
              "state": "activated"
            }
          ]
        }
      },
      "Vector3": {
        "title": "Vector3",
        "required": [
          "profile-vector-name",
          "type",
          "profile",
          "state"
        ],
        "type": "object",
        "properties": {
          "profile-vector-name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "profile": {
            "type": "array",
            "items": {
              "oneOf": [
                {
                  "$ref": "#/components/schemas/Profile11"
                },
                {
                  "type": "string"
                }
              ]
            },
            "description": "",
            "example": [
              {
                "name": "LCI Group",
                "type": "grouping-profile-type"
              }
            ]
          },
          "state": {
            "type": "string"
          }
        },
        "example": {
          "profile-vector-name": "LCI Service Profile Vector",
          "type": "service",
          "profile": [
            {
              "name": "LCI Group",
              "type": "grouping-profile-type"
            }
          ],
          "state": "activated"
        }
      },
      "GetAllProfileVectors-Incorrecttype": {
        "title": "GetAllProfileVectors-Incorrecttype",
        "required": [
          "vector"
        ],
        "type": "object",
        "properties": {
          "vector": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "vector": []
        }
      },
      "GetInventoryTreeRequest": {
        "title": "GetInventoryTreeRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input216"
          }
        },
        "example": {
          "input": {
            "cursor": 0,
            "result-size": 25,
            "order-by": "desc"
          }
        }
      },
      "Input216": {
        "title": "Input216",
        "required": [
          "cursor",
          "result-size",
          "order-by"
        ],
        "type": "object",
        "properties": {
          "cursor": {
            "type": "integer",
            "format": "int32"
          },
          "result-size": {
            "type": "integer",
            "format": "int32"
          },
          "order-by": {
            "type": "string"
          }
        },
        "example": {
          "cursor": 0,
          "result-size": 25,
          "order-by": "desc"
        }
      },
      "GetInventoryTree-ForRootedDevice": {
        "title": "GetInventoryTree-ForRootedDevice",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output244"
          }
        },
        "example": {
          "output": {
            "object-list": [
              {
                "name": "OLT-1",
                "type": "device",
                "is-expandable": false,
                "slot-number": ""
              },
              {
                "name": "TestDevice",
                "type": "device",
                "is-expandable": false,
                "slot-number": ""
              },
              {
                "name": "TestDevice-2",
                "type": "device",
                "is-expandable": false,
                "slot-number": ""
              },
              {
                "name": "TestDevice-3",
                "type": "device",
                "is-expandable": false,
                "slot-number": ""
              }
            ],
            "total-count": 4
          }
        }
      },
      "Output244": {
        "title": "Output244",
        "required": [
          "object-list",
          "total-count"
        ],
        "type": "object",
        "properties": {
          "object-list": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ObjectList"
            },
            "description": ""
          },
          "total-count": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "object-list": [
            {
              "name": "OLT-1",
              "type": "device",
              "is-expandable": false,
              "slot-number": ""
            },
            {
              "name": "TestDevice",
              "type": "device",
              "is-expandable": false,
              "slot-number": ""
            },
            {
              "name": "TestDevice-2",
              "type": "device",
              "is-expandable": false,
              "slot-number": ""
            },
            {
              "name": "TestDevice-3",
              "type": "device",
              "is-expandable": false,
              "slot-number": ""
            }
          ],
          "total-count": 4
        }
      },
      "ObjectList": {
        "title": "ObjectList",
        "required": [
          "name",
          "type",
          "is-expandable",
          "slot-number"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "is-expandable": {
            "type": "boolean"
          },
          "slot-number": {
            "type": "string"
          }
        },
        "example": {
          "name": "OLT-1",
          "type": "device",
          "is-expandable": false,
          "slot-number": ""
        }
      },
      "GetInventoryTree-WithoutCursorandResult-Size": {
        "title": "GetInventoryTree-WithoutCursorandResult-Size",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output244"
          }
        },
        "example": {
          "output": {
            "object-list": [
              {
                "name": "OLT-1",
                "type": "device",
                "is-expandable": false,
                "slot-number": ""
              },
              {
                "name": "TestDevice",
                "type": "device",
                "is-expandable": false,
                "slot-number": ""
              },
              {
                "name": "TestDevice-2",
                "type": "device",
                "is-expandable": false,
                "slot-number": ""
              },
              {
                "name": "TestDevice-3",
                "type": "device",
                "is-expandable": false,
                "slot-number": ""
              }
            ],
            "total-count": 4
          }
        }
      },
      "GetInventoryTree-WithoutOrderby": {
        "title": "GetInventoryTree-WithoutOrderby",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output244"
          }
        },
        "example": {
          "output": {
            "object-list": [
              {
                "name": "OLT-1",
                "type": "device",
                "is-expandable": false,
                "slot-number": ""
              },
              {
                "name": "TestDevice",
                "type": "device",
                "is-expandable": false,
                "slot-number": ""
              },
              {
                "name": "TestDevice-2",
                "type": "device",
                "is-expandable": false,
                "slot-number": ""
              },
              {
                "name": "TestDevice-3",
                "type": "device",
                "is-expandable": false,
                "slot-number": ""
              }
            ],
            "total-count": 4
          }
        }
      },
      "GetInventoryTree-WithResult-SizeandMissingCursor1": {
        "title": "GetInventoryTree-WithResult-SizeandMissingCursor1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Missing cursor parameter, both cursor and result-size parameter are required"
        }
      },
      "GetInventoryTree-WithCursorandMissingResult-Size1": {
        "title": "GetInventoryTree-WithCursorandMissingResult-Size1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Missing result-size parameter, both cursor and result-size parameter are required"
        }
      },
      "GetInventoryTree-InvalidCursor1": {
        "title": "GetInventoryTree-InvalidCursor1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Invalid cursor value provided, integer value is expected"
        }
      },
      "GetInventoryTree-SignedCursorValue1": {
        "title": "GetInventoryTree-SignedCursorValue1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Invalid cursor value provided, only unsigned integer value is expected"
        }
      },
      "GetInventoryTree-InvalidResult-Size1": {
        "title": "GetInventoryTree-InvalidResult-Size1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Invalid result-size value provided, integer value is expected"
        }
      },
      "GetInventoryTree-Result-SizeValueoutofRange1": {
        "title": "GetInventoryTree-Result-SizeValueoutofRange1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Invalid result-size value provided, expected value range is (0,1000)"
        }
      },
      "GetInventoryTree-InvalidOrderby1": {
        "title": "GetInventoryTree-InvalidOrderby1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Invalid order-by value provided, either 'asc' or 'desc' is expected"
        }
      },
      "GetInventoryTreeforagivenInventoryObjectRequest": {
        "title": "GetInventoryTreeforagivenInventoryObjectRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input217"
          }
        },
        "example": {
          "input": {
            "inventory-object": {
              "name": "sb-sim-dev",
              "type": "device"
            },
            "cursor": 0,
            "result-size": 25,
            "order-by": "desc"
          }
        }
      },
      "Input217": {
        "title": "Input217",
        "required": [
          "inventory-object",
          "cursor",
          "result-size",
          "order-by"
        ],
        "type": "object",
        "properties": {
          "inventory-object": {
            "$ref": "#/components/schemas/InventoryObject"
          },
          "cursor": {
            "type": "integer",
            "format": "int32"
          },
          "result-size": {
            "type": "integer",
            "format": "int32"
          },
          "order-by": {
            "type": "string"
          }
        },
        "example": {
          "inventory-object": {
            "name": "sb-sim-dev",
            "type": "device"
          },
          "cursor": 0,
          "result-size": 25,
          "order-by": "desc"
        }
      },
      "InventoryObject": {
        "title": "InventoryObject",
        "required": [
          "name",
          "type"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          }
        },
        "example": {
          "name": "sb-sim-dev",
          "type": "device"
        }
      },
      "GetInventoryTree-ForGivenInventoryDevice": {
        "title": "GetInventoryTree-ForGivenInventoryDevice",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output244"
          }
        },
        "example": {
          "output": {
            "object-list": [
              {
                "name": "OLT-1-to-Provider",
                "type": "interface",
                "is-expandable": false,
                "slot-number": ""
              },
              {
                "name": "OLT-1-channel-termination-1",
                "type": "interface",
                "is-expandable": true,
                "slot-number": ""
              },
              {
                "name": "Interface-99",
                "type": "interface",
                "is-expandable": false,
                "slot-number": ""
              },
              {
                "name": "Interface-2",
                "type": "interface",
                "is-expandable": false,
                "slot-number": ""
              },
              {
                "name": "Interface-103",
                "type": "interface",
                "is-expandable": false,
                "slot-number": ""
              },
              {
                "name": "Interface-102",
                "type": "interface",
                "is-expandable": false,
                "slot-number": ""
              },
              {
                "name": "Interface-1",
                "type": "interface",
                "is-expandable": false,
                "slot-number": ""
              }
            ],
            "total-count": 7
          }
        }
      },
      "GetInventoryTree-ForGivenInventoryInterface": {
        "title": "GetInventoryTree-ForGivenInventoryInterface",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output244"
          }
        },
        "example": {
          "output": {
            "object-list": [
              {
                "name": "ONU-1",
                "type": "device",
                "is-expandable": false,
                "slot-number": ""
              }
            ],
            "total-count": 1
          }
        }
      },
      "GetInventoryTree-MissingInventoryObjectName1": {
        "title": "GetInventoryTree-MissingInventoryObjectName1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Invalid inventory-object, object 'name' is missing"
        }
      },
      "GetInventoryTree-MissingInventoryObjectType1": {
        "title": "GetInventoryTree-MissingInventoryObjectType1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Invalid inventory-object, object 'type' is missing, either 'device' or 'interface' is expected"
        }
      },
      "GetInventoryTree-InvalidInventoryObject1": {
        "title": "GetInventoryTree-InvalidInventoryObject1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Invalid inventory-object, expected parameters are 'name' and 'type' only"
        }
      },
      "GetInventoryTree-InventoryObjectNotPresent1": {
        "title": "GetInventoryTree-InventoryObjectNotPresent1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Object doesn't exist. Valid inventory object is expected"
        }
      },
      "GetInventoryTreeforagivensearch-stringRequest": {
        "title": "GetInventoryTreeforagivensearch-stringRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input218"
          }
        },
        "example": {
          "input": {
            "search-string": "sb-sim-dev",
            "order-by": "desc"
          }
        }
      },
      "Input218": {
        "title": "Input218",
        "required": [
          "search-string",
          "order-by"
        ],
        "type": "object",
        "properties": {
          "search-string": {
            "type": "string"
          },
          "order-by": {
            "type": "string"
          }
        },
        "example": {
          "search-string": "sb-sim-dev",
          "order-by": "desc"
        }
      },
      "GetInventoryTree-ForGivenSearchString": {
        "title": "GetInventoryTree-ForGivenSearchString",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output251"
          }
        },
        "example": {
          "output": {
            "object-list": [
              {
                "name": "Root-to_8-OLT-1",
                "type": "interface",
                "slot-number": ""
              },
              {
                "name": "ONU-1-to-Subscriber",
                "type": "interface",
                "slot-number": ""
              },
              {
                "name": "OLT-1-to-Provider",
                "type": "interface",
                "slot-number": ""
              },
              {
                "name": "OLT-1-channel-termination-1",
                "type": "interface",
                "slot-number": ""
              },
              {
                "name": "OLT-1",
                "type": "device",
                "slot-number": ""
              },
              {
                "name": "Interface-99",
                "type": "interface",
                "slot-number": ""
              },
              {
                "name": "Interface-2",
                "type": "interface",
                "slot-number": ""
              },
              {
                "name": "Interface-103",
                "type": "interface",
                "slot-number": ""
              },
              {
                "name": "Interface-102",
                "type": "interface",
                "slot-number": ""
              },
              {
                "name": "Interface-1",
                "type": "interface",
                "slot-number": ""
              }
            ]
          }
        }
      },
      "Output251": {
        "title": "Output251",
        "required": [
          "object-list"
        ],
        "type": "object",
        "properties": {
          "object-list": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ObjectList7"
            },
            "description": ""
          }
        },
        "example": {
          "object-list": [
            {
              "name": "Root-to_8-OLT-1",
              "type": "interface",
              "slot-number": ""
            },
            {
              "name": "ONU-1-to-Subscriber",
              "type": "interface",
              "slot-number": ""
            },
            {
              "name": "OLT-1-to-Provider",
              "type": "interface",
              "slot-number": ""
            },
            {
              "name": "OLT-1-channel-termination-1",
              "type": "interface",
              "slot-number": ""
            },
            {
              "name": "OLT-1",
              "type": "device",
              "slot-number": ""
            },
            {
              "name": "Interface-99",
              "type": "interface",
              "slot-number": ""
            },
            {
              "name": "Interface-2",
              "type": "interface",
              "slot-number": ""
            },
            {
              "name": "Interface-103",
              "type": "interface",
              "slot-number": ""
            },
            {
              "name": "Interface-102",
              "type": "interface",
              "slot-number": ""
            },
            {
              "name": "Interface-1",
              "type": "interface",
              "slot-number": ""
            }
          ]
        }
      },
      "ObjectList7": {
        "title": "ObjectList7",
        "required": [
          "name",
          "type",
          "slot-number"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "slot-number": {
            "type": "string"
          }
        },
        "example": {
          "name": "Root-to_8-OLT-1",
          "type": "interface",
          "slot-number": ""
        }
      },
      "GetInventoryTree-WithoutOrderby2": {
        "title": "GetInventoryTree-WithoutOrderby2",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output251"
          }
        },
        "example": {
          "output": {
            "object-list": [
              {
                "name": "Interface-1",
                "type": "interface",
                "slot-number": ""
              },
              {
                "name": "Interface-102",
                "type": "interface",
                "slot-number": ""
              },
              {
                "name": "Interface-103",
                "type": "interface",
                "slot-number": ""
              },
              {
                "name": "Interface-2",
                "type": "interface",
                "slot-number": ""
              },
              {
                "name": "Interface-99",
                "type": "interface",
                "slot-number": ""
              },
              {
                "name": "OLT-1",
                "type": "device",
                "slot-number": ""
              },
              {
                "name": "OLT-1-channel-termination-1",
                "type": "interface",
                "slot-number": ""
              },
              {
                "name": "OLT-1-to-Provider",
                "type": "interface",
                "slot-number": ""
              },
              {
                "name": "ONU-1-to-Subscriber",
                "type": "interface",
                "slot-number": ""
              },
              {
                "name": "Root-to_8-OLT-1",
                "type": "interface",
                "slot-number": ""
              }
            ]
          }
        }
      },
      "GetInventoryTree-InvalidSearchString1": {
        "title": "GetInventoryTree-InvalidSearchString1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Invalid search-string value provided, string value expected"
        }
      },
      "GetInventoryStatusRequest": {
        "title": "GetInventoryStatusRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input219"
          }
        },
        "example": {
          "input": {
            "object-list": [
              {
                "name": "OLT-1",
                "type": "device"
              },
              {
                "name": "OLT-2",
                "type": "device"
              }
            ]
          }
        }
      },
      "Input219": {
        "title": "Input219",
        "required": [
          "object-list"
        ],
        "type": "object",
        "properties": {
          "object-list": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ObjectList9"
            },
            "description": ""
          }
        },
        "example": {
          "object-list": [
            {
              "name": "OLT-1",
              "type": "device"
            },
            {
              "name": "OLT-2",
              "type": "device"
            }
          ]
        }
      },
      "ObjectList9": {
        "title": "ObjectList9",
        "required": [
          "name",
          "type"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          }
        },
        "example": {
          "name": "OLT-1",
          "type": "device"
        }
      },
      "GetInventoryStatus-Success": {
        "title": "GetInventoryStatus-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output253"
          }
        },
        "example": {
          "output": {
            "transaction-id": "fcda19db-6224-4612-9e59-65442e638b49",
            "timestamp": "2021-12-03T13:43:19.120024",
            "completion-status": "in-progress"
          }
        }
      },
      "Output253": {
        "title": "Output253",
        "required": [
          "transaction-id",
          "timestamp",
          "completion-status"
        ],
        "type": "object",
        "properties": {
          "transaction-id": {
            "type": "string"
          },
          "timestamp": {
            "type": "string"
          },
          "completion-status": {
            "type": "string"
          }
        },
        "example": {
          "transaction-id": "fcda19db-6224-4612-9e59-65442e638b49",
          "timestamp": "2021-12-03T13:43:19.120024",
          "completion-status": "in-progress"
        }
      },
      "GetInventoryStatus-MissingObjectList1": {
        "title": "GetInventoryStatus-MissingObjectList1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "MCP objects list is missing"
        }
      },
      "GetInventoryStatus-InvalidObjectListParameter1": {
        "title": "GetInventoryStatus-InvalidObjectListParameter1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Invalid object-list parameter, list of MCP object is expected"
        }
      },
      "GetInventoryStatus-InvalidObjectListValue1": {
        "title": "GetInventoryStatus-InvalidObjectListValue1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Invalid list of MCP objects, expected parameters are 'name' and 'type' only"
        }
      },
      "GetInventoryStatus-MissingObjectNameParameter1": {
        "title": "GetInventoryStatus-MissingObjectNameParameter1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Invalid list of MCP objects, object 'name' is missing"
        }
      },
      "GetInventoryStatus-MissingObjectTypeParameter1": {
        "title": "GetInventoryStatus-MissingObjectTypeParameter1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Invalid list of MCP objects, object 'type' is missing, either 'device' or 'interface' is expected"
        }
      },
      "GetInventoryStatus-InvalidObjectTypeParameter1": {
        "title": "GetInventoryStatus-InvalidObjectTypeParameter1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Invalid object type, either 'device' or 'interface' is expected"
        }
      },
      "GetInventoryStatus-InvalidObjectListParameters1": {
        "title": "GetInventoryStatus-InvalidObjectListParameters1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Invalid list of MCP objects, expected parameters are 'name' and 'type' only"
        }
      },
      "GetInventoryStatusResultRequest": {
        "title": "GetInventoryStatusResultRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input220"
          }
        },
        "example": {
          "input": {
            "transaction-id": "{{trans-id}}"
          }
        }
      },
      "Input220": {
        "title": "Input220",
        "required": [
          "transaction-id"
        ],
        "type": "object",
        "properties": {
          "transaction-id": {
            "type": "string"
          }
        },
        "example": {
          "transaction-id": "{{trans-id}}"
        }
      },
      "GetInventoryStatusResult-Success": {
        "title": "GetInventoryStatusResult-Success",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output254"
          }
        },
        "example": {
          "output": {
            "transaction-id": "fcda19db-6224-4612-9e59-65442e638b49",
            "timestamp": "2021-12-03T13:43:19.120024",
            "completion-status": "completed-ok",
            "object-list": [
              {
                "object-state": "unknown",
                "name": "OLT-1",
                "type": "device",
                "slot-number": ""
              },
              {
                "name": "OLT-2",
                "admin-status": "up",
                "type": "device",
                "slot-number": ""
              }
            ]
          }
        }
      },
      "Output254": {
        "title": "Output254",
        "required": [
          "transaction-id",
          "timestamp",
          "completion-status",
          "object-list"
        ],
        "type": "object",
        "properties": {
          "transaction-id": {
            "type": "string"
          },
          "timestamp": {
            "type": "string"
          },
          "completion-status": {
            "type": "string"
          },
          "object-list": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ObjectList10"
            },
            "description": ""
          }
        },
        "example": {
          "transaction-id": "fcda19db-6224-4612-9e59-65442e638b49",
          "timestamp": "2021-12-03T13:43:19.120024",
          "completion-status": "completed-ok",
          "object-list": [
            {
              "object-state": "unknown",
              "name": "OLT-1",
              "type": "device",
              "slot-number": ""
            },
            {
              "name": "OLT-2",
              "admin-status": "up",
              "type": "device",
              "slot-number": ""
            }
          ]
        }
      },
      "ObjectList10": {
        "title": "ObjectList10",
        "required": [
          "name",
          "type",
          "slot-number"
        ],
        "type": "object",
        "properties": {
          "object-state": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "slot-number": {
            "type": "string"
          },
          "admin-status": {
            "type": "string"
          }
        },
        "example": {
          "object-state": "unknown",
          "name": "OLT-1",
          "type": "device",
          "slot-number": ""
        }
      },
      "GetInventoryStatusResult-MissingTransaction-id1": {
        "title": "GetInventoryStatusResult-MissingTransaction-id1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "'transaction-id' is missing"
        }
      },
      "GetInventoryStatusResult-InvalidTransaction-id1": {
        "title": "GetInventoryStatusResult-InvalidTransaction-id1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Invalid 'transaction-id' value is provided, string value expected"
        }
      },
      "GetReverseInventoryTreeRequest": {
        "title": "GetReverseInventoryTreeRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input221"
          }
        },
        "example": {
          "input": {
            "inventory-object": {
              "name": "sb-sim-dev",
              "type": "device"
            },
            "search-on": true
          }
        }
      },
      "Input221": {
        "title": "Input221",
        "required": [
          "inventory-object",
          "search-on"
        ],
        "type": "object",
        "properties": {
          "inventory-object": {
            "$ref": "#/components/schemas/InventoryObject"
          },
          "search-on": {
            "type": "boolean"
          }
        },
        "example": {
          "inventory-object": {
            "name": "sb-sim-dev",
            "type": "device"
          },
          "search-on": true
        }
      },
      "GetReverseInventoryTree-ObjectpresentinMCP": {
        "title": "GetReverseInventoryTree-ObjectpresentinMCP",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output255"
          }
        },
        "example": {
          "output": {
            "item": {
              "name": "sb-sim-dev",
              "type": "device",
              "is-expandable": true,
              "is-expanded": false
            },
            "level": 0,
            "children": []
          }
        }
      },
      "Output255": {
        "title": "Output255",
        "required": [
          "item",
          "level",
          "children"
        ],
        "type": "object",
        "properties": {
          "item": {
            "$ref": "#/components/schemas/Item"
          },
          "level": {
            "type": "integer",
            "format": "int32"
          },
          "children": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "item": {
            "name": "sb-sim-dev",
            "type": "device",
            "is-expandable": true,
            "is-expanded": false
          },
          "level": 0,
          "children": []
        }
      },
      "Item": {
        "title": "Item",
        "required": [
          "name",
          "type",
          "is-expandable",
          "is-expanded"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "is-expandable": {
            "type": "boolean"
          },
          "is-expanded": {
            "type": "boolean"
          }
        },
        "example": {
          "name": "sb-sim-dev",
          "type": "device",
          "is-expandable": true,
          "is-expanded": false
        }
      },
      "GetReverseInventoryTree-InvalidInventoryObjectParameters1": {
        "title": "GetReverseInventoryTree-InvalidInventoryObjectParameters1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Invalid inventory-object, expected parameters are 'name' and 'type' only"
        }
      },
      "GetReverseInventoryTree-InvalidInventoryObject1": {
        "title": "GetReverseInventoryTree-InvalidInventoryObject1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Invalid inventory-object, expected parameters are 'name' and 'type' only"
        }
      },
      "GetReverseInventoryTree-MissingObjectType1": {
        "title": "GetReverseInventoryTree-MissingObjectType1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Invalid inventory-object, object 'type' is missing, either 'device' or 'interface' is expected"
        }
      },
      "GetReverseInventoryTree-MissingObjectName1": {
        "title": "GetReverseInventoryTree-MissingObjectName1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Invalid inventory-object, object 'name' is missing"
        }
      },
      "GetReverseInventoryTree-EmptyInventoryObjectParameter1": {
        "title": "GetReverseInventoryTree-EmptyInventoryObjectParameter1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Invalid inventory-object, expected parameters are 'name' and 'type' only"
        }
      },
      "GetReverseInventoryTree-MissingInventoryObjectParameter1": {
        "title": "GetReverseInventoryTree-MissingInventoryObjectParameter1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Missing inventory-object parameter"
        }
      },
      "GetReverseInventoryTree-InventoryObjectNotPresent1": {
        "title": "GetReverseInventoryTree-InventoryObjectNotPresent1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Object doesn't exist. Valid inventory object is expected"
        }
      },
      "GetReverseInventoryTree-SuccessForInterface": {
        "title": "GetReverseInventoryTree-SuccessForInterface",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output256"
          }
        },
        "example": {
          "output": {
            "name": "Root-to_8-OLT-1",
            "type": "interface",
            "child": {
              "name": "OLT-1",
              "type": "device",
              "child": {
                "name": "OLT-1-channel-termination-1",
                "type": "interface"
              }
            }
          }
        }
      },
      "Output256": {
        "title": "Output256",
        "required": [
          "name",
          "type",
          "child"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "child": {
            "$ref": "#/components/schemas/Child"
          }
        },
        "example": {
          "name": "Root-to_8-OLT-1",
          "type": "interface",
          "child": {
            "name": "OLT-1",
            "type": "device",
            "child": {
              "name": "OLT-1-channel-termination-1",
              "type": "interface"
            }
          }
        }
      },
      "Child": {
        "title": "Child",
        "required": [
          "name",
          "type",
          "child"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "child": {
            "$ref": "#/components/schemas/Child1"
          }
        },
        "example": {
          "name": "OLT-1",
          "type": "device",
          "child": {
            "name": "OLT-1-channel-termination-1",
            "type": "interface"
          }
        }
      },
      "Child1": {
        "title": "Child1",
        "required": [
          "name",
          "type"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          }
        },
        "example": {
          "name": "OLT-1-channel-termination-1",
          "type": "interface"
        }
      },
      "CreateProfileForOnboardingRequest": {
        "title": "CreateProfileForOnboardingRequest",
        "required": [
          "name",
          "state",
          "type",
          "aes-encryption-profile"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "aes-encryption-profile": {
            "type": "object"
          }
        },
        "example": {
          "name": "P1",
          "state": "activated",
          "type": "aes-encryption-profile-type",
          "aes-encryption-profile": {}
        }
      },
      "CreateProfileForOverrideForOnboardingRequest": {
        "title": "CreateProfileForOverrideForOnboardingRequest",
        "required": [
          "name",
          "state",
          "type",
          "aes-encryption-profile"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "aes-encryption-profile": {
            "type": "object"
          }
        },
        "example": {
          "name": "AES Override Profile",
          "state": "activated",
          "type": "aes-encryption-profile-type",
          "aes-encryption-profile": {}
        }
      },
      "CreateDeviceProfileVectorForOnboardingRequest": {
        "title": "CreateDeviceProfileVectorForOnboardingRequest",
        "required": [
          "name",
          "profile",
          "state",
          "type"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "profile": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "state": {
            "type": "string"
          },
          "type": {
            "type": "string"
          }
        },
        "example": {
          "name": "Device Profile Vector GPON OLT",
          "profile": [],
          "state": "activated",
          "type": "device"
        }
      },
      "CreateInterfaceProfileVectorForOnboardingRequest": {
        "title": "CreateInterfaceProfileVectorForOnboardingRequest",
        "required": [
          "name",
          "profile",
          "state",
          "type"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "profile": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Profile"
            },
            "description": ""
          },
          "state": {
            "type": "string"
          },
          "type": {
            "type": "string"
          }
        },
        "example": {
          "name": "Gigabit Interface Profile Vector",
          "profile": [
            {
              "name": "P1",
              "type": "aes-encryption-profile-type"
            }
          ],
          "state": "activated",
          "type": "interface"
        }
      },
      "CreateBundleProfileVectorForOnboardingRequest": {
        "title": "CreateBundleProfileVectorForOnboardingRequest",
        "required": [
          "name",
          "profile",
          "state",
          "type"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "profile": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "state": {
            "type": "string"
          },
          "type": {
            "type": "string"
          }
        },
        "example": {
          "name": "Bundle Profile Vector",
          "profile": [],
          "state": "activated",
          "type": "bundle"
        }
      },
      "ComponentAPIRequest": {
        "title": "ComponentAPIRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input222"
          }
        },
        "example": {
          "input": {
            "device-name": "OLT",
            "model-name": "Generic Device"
          }
        }
      },
      "Input222": {
        "title": "Input222",
        "required": [
          "device-name",
          "model-name"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "model-name": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "OLT",
          "model-name": "Generic Device"
        }
      },
      "ComponentAPI-BothDevicenameandmodelnamepresent": {
        "title": "ComponentAPI-BothDevicenameandmodelnamepresent",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output257"
          }
        },
        "example": {
          "output": {
            "device-template": {
              "device-model-name": "Generic Device",
              "device-profile-vector": "Device Profile Vector GPON OLT",
              "default-credential-name": "OLT",
              "interface-to-connect-to": {
                "interface-name": "rooted-interface",
                "device-name": "rooted-device",
                "interface-type": "generic"
              }
            },
            "onboarding-template-interfaces": [
              {
                "profile-overrides": [
                  {
                    "profile-type": "aes-encryption-profile-type",
                    "profile-name": "AES Override Profile"
                  }
                ],
                "optional-parameters": {
                  "access-node-id": 101,
                  "ancp-own-ip": 90
                },
                "interface-type": "gpon",
                "interface-name": "OLT/0/1",
                "bundle-name": "OLT-gpon-0",
                "interface-id": "gigabit-ethernet 0/1",
                "profile-vector-name": "Gigabit Interface Profile Vector"
              },
              {
                "profile-overrides": [
                  {
                    "profile-type": "aes-encryption-profile-type",
                    "profile-name": "AES Override Profile"
                  }
                ],
                "optional-parameters": {
                  "access-node-id": 101,
                  "ancp-own-ip": 90
                },
                "interface-type": "gpon",
                "interface-name": "OLT/0/2",
                "bundle-name": "OLT-gpon-1",
                "interface-id": "gigabit-ethernet 0/2",
                "profile-vector-name": "Gigabit Interface Profile Vector"
              }
            ]
          }
        }
      },
      "Output257": {
        "title": "Output257",
        "required": [
          "device-template",
          "onboarding-template-interfaces"
        ],
        "type": "object",
        "properties": {
          "device-template": {
            "$ref": "#/components/schemas/DeviceTemplate"
          },
          "onboarding-template-interfaces": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OnboardingTemplateInterface"
            },
            "description": ""
          }
        },
        "example": {
          "device-template": {
            "device-model-name": "Generic Device",
            "device-profile-vector": "Device Profile Vector GPON OLT",
            "default-credential-name": "OLT",
            "interface-to-connect-to": {
              "interface-name": "rooted-interface",
              "device-name": "rooted-device",
              "interface-type": "generic"
            }
          },
          "onboarding-template-interfaces": [
            {
              "profile-overrides": [
                {
                  "profile-type": "aes-encryption-profile-type",
                  "profile-name": "AES Override Profile"
                }
              ],
              "optional-parameters": {
                "access-node-id": 101,
                "ancp-own-ip": 90
              },
              "interface-type": "gpon",
              "interface-name": "OLT/0/1",
              "bundle-name": "OLT-gpon-0",
              "interface-id": "gigabit-ethernet 0/1",
              "profile-vector-name": "Gigabit Interface Profile Vector"
            },
            {
              "profile-overrides": [
                {
                  "profile-type": "aes-encryption-profile-type",
                  "profile-name": "AES Override Profile"
                }
              ],
              "optional-parameters": {
                "access-node-id": 101,
                "ancp-own-ip": 90
              },
              "interface-type": "gpon",
              "interface-name": "OLT/0/2",
              "bundle-name": "OLT-gpon-1",
              "interface-id": "gigabit-ethernet 0/2",
              "profile-vector-name": "Gigabit Interface Profile Vector"
            }
          ]
        }
      },
      "DeviceTemplate": {
        "title": "DeviceTemplate",
        "required": [
          "device-model-name",
          "device-profile-vector",
          "default-credential-name",
          "interface-to-connect-to"
        ],
        "type": "object",
        "properties": {
          "device-model-name": {
            "type": "string"
          },
          "device-profile-vector": {
            "type": "string"
          },
          "default-credential-name": {
            "type": "string"
          },
          "interface-to-connect-to": {
            "$ref": "#/components/schemas/InterfaceToConnectTo"
          }
        },
        "example": {
          "device-model-name": "Generic Device",
          "device-profile-vector": "Device Profile Vector GPON OLT",
          "default-credential-name": "OLT",
          "interface-to-connect-to": {
            "interface-name": "rooted-interface",
            "device-name": "rooted-device",
            "interface-type": "generic"
          }
        }
      },
      "InterfaceToConnectTo": {
        "title": "InterfaceToConnectTo",
        "required": [
          "interface-name",
          "device-name",
          "interface-type"
        ],
        "type": "object",
        "properties": {
          "interface-name": {
            "type": "string"
          },
          "device-name": {
            "type": "string"
          },
          "interface-type": {
            "type": "string"
          }
        },
        "example": {
          "interface-name": "rooted-interface",
          "device-name": "rooted-device",
          "interface-type": "generic"
        }
      },
      "OnboardingTemplateInterface": {
        "title": "OnboardingTemplateInterface",
        "required": [
          "profile-overrides",
          "optional-parameters",
          "interface-type",
          "interface-name",
          "bundle-name",
          "interface-id",
          "profile-vector-name"
        ],
        "type": "object",
        "properties": {
          "profile-overrides": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProfileOverride"
            },
            "description": ""
          },
          "optional-parameters": {
            "$ref": "#/components/schemas/OptionalParameters"
          },
          "interface-type": {
            "type": "string"
          },
          "interface-name": {
            "type": "string"
          },
          "bundle-name": {
            "type": "string"
          },
          "interface-id": {
            "type": "string"
          },
          "profile-vector-name": {
            "type": "string"
          }
        },
        "example": {
          "profile-overrides": [
            {
              "profile-type": "aes-encryption-profile-type",
              "profile-name": "AES Override Profile"
            }
          ],
          "optional-parameters": {
            "access-node-id": 101,
            "ancp-own-ip": 90
          },
          "interface-type": "gpon",
          "interface-name": "OLT/0/1",
          "bundle-name": "OLT-gpon-0",
          "interface-id": "gigabit-ethernet 0/1",
          "profile-vector-name": "Gigabit Interface Profile Vector"
        }
      },
      "ProfileOverride": {
        "title": "ProfileOverride",
        "required": [
          "profile-type",
          "profile-name"
        ],
        "type": "object",
        "properties": {
          "profile-type": {
            "type": "string"
          },
          "profile-name": {
            "type": "string"
          }
        },
        "example": {
          "profile-type": "aes-encryption-profile-type",
          "profile-name": "AES Override Profile"
        }
      },
      "OptionalParameters": {
        "title": "OptionalParameters",
        "required": [
          "access-node-id",
          "ancp-own-ip"
        ],
        "type": "object",
        "properties": {
          "access-node-id": {
            "type": "integer",
            "format": "int32"
          },
          "ancp-own-ip": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "access-node-id": 101,
          "ancp-own-ip": 90
        }
      },
      "ComponentAPI-Devicenotpresent1": {
        "title": "ComponentAPI-Devicenotpresent1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Invalid Payload: Device Name is required"
        }
      },
      "ComponentAPI-modelnamenotpresent1": {
        "title": "ComponentAPI-modelnamenotpresent1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Invalid Payload: Device Model is required"
        }
      },
      "ComponentAPI-Bothdeviceandmodelnamearenotprovided1": {
        "title": "ComponentAPI-Bothdeviceandmodelnamearenotprovided1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Invalid Payload: Device Name and Model are required"
        }
      },
      "ComponentAPI-Anyofdevicenameormodelnamearekeptempty1": {
        "title": "ComponentAPI-Anyofdevicenameormodelnamearekeptempty1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Invalid Payload: Device Name or Model Name cannot be empty"
        }
      },
      "OnboardingAPIRequest": {
        "title": "OnboardingAPIRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input223"
          }
        },
        "example": {
          "input": {
            "model-name": "Generic Device",
            "device-name": "Test-Device-1",
            "ip-address": "10.20.30.40",
            "credential-name": "Device Credential",
            "mask": "255.0.0.0",
            "gateway": "10.20.30.40"
          }
        }
      },
      "Input223": {
        "title": "Input223",
        "required": [
          "model-name",
          "device-name",
          "ip-address",
          "credential-name",
          "mask",
          "gateway"
        ],
        "type": "object",
        "properties": {
          "model-name": {
            "type": "string"
          },
          "device-name": {
            "type": "string"
          },
          "ip-address": {
            "type": "string"
          },
          "credential-name": {
            "type": "string"
          },
          "mask": {
            "type": "string"
          },
          "gateway": {
            "type": "string"
          }
        },
        "example": {
          "model-name": "Generic Device",
          "device-name": "Test-Device-1",
          "ip-address": "10.20.30.40",
          "credential-name": "Device Credential",
          "mask": "255.0.0.0",
          "gateway": "10.20.30.40"
        }
      },
      "OnboardingAPI-Oneormoremandatoryparametersarekeptempty1": {
        "title": "OnboardingAPI-Oneormoremandatoryparametersarekeptempty1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Invalid Payload: Device Name, Model Name or IP cannot be empty"
        }
      },
      "OnboardingAPI-Oneormoremandatoryparametersaremissing1": {
        "title": "OnboardingAPI-Oneormoremandatoryparametersaremissing1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Invalid Payload: Device Name, Model Name and IP Address are mandatory"
        }
      },
      "OnboardingAPI-withdefaultinterfaceanddefaultcredentials": {
        "title": "OnboardingAPI-withdefaultinterfaceanddefaultcredentials",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output258"
          }
        },
        "example": {
          "output": {
            "state": "creating",
            "completion-status": "in-progress",
            "transaction-id": "5c6ddea1-ba53-4095-ad2b-99602c92a6ac",
            "error-description": "",
            "object-onboarding-detail": [
              {
                "object-name": "Test-Device-1",
                "state": "creating",
                "completion-status": "completed-ok",
                "error-description": "",
                "object-type": "device"
              },
              {
                "object-name": "Test-Device-1/0/1",
                "state": "creating",
                "completion-status": "in-progress",
                "error-description": "",
                "object-type": "interface"
              },
              {
                "object-name": "Test-Device-1/0/2",
                "state": "creating",
                "completion-status": "in-progress",
                "error-description": "",
                "object-type": "interface"
              },
              {
                "object-name": "Test-Device-1-gpon-0",
                "state": "creating",
                "completion-status": "completed-ok",
                "error-description": "",
                "object-type": "bundle"
              },
              {
                "object-name": "Test-Device-1-gpon-1",
                "state": "creating",
                "completion-status": "completed-ok",
                "error-description": "",
                "object-type": "bundle"
              }
            ]
          }
        }
      },
      "Output258": {
        "title": "Output258",
        "required": [
          "state",
          "completion-status",
          "transaction-id",
          "error-description",
          "object-onboarding-detail"
        ],
        "type": "object",
        "properties": {
          "state": {
            "type": "string"
          },
          "completion-status": {
            "type": "string"
          },
          "transaction-id": {
            "type": "string"
          },
          "error-description": {
            "type": "string"
          },
          "object-onboarding-detail": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ObjectOnboardingDetail"
            },
            "description": ""
          }
        },
        "example": {
          "state": "creating",
          "completion-status": "in-progress",
          "transaction-id": "5c6ddea1-ba53-4095-ad2b-99602c92a6ac",
          "error-description": "",
          "object-onboarding-detail": [
            {
              "object-name": "Test-Device-1",
              "state": "creating",
              "completion-status": "completed-ok",
              "error-description": "",
              "object-type": "device"
            },
            {
              "object-name": "Test-Device-1/0/1",
              "state": "creating",
              "completion-status": "in-progress",
              "error-description": "",
              "object-type": "interface"
            },
            {
              "object-name": "Test-Device-1/0/2",
              "state": "creating",
              "completion-status": "in-progress",
              "error-description": "",
              "object-type": "interface"
            },
            {
              "object-name": "Test-Device-1-gpon-0",
              "state": "creating",
              "completion-status": "completed-ok",
              "error-description": "",
              "object-type": "bundle"
            },
            {
              "object-name": "Test-Device-1-gpon-1",
              "state": "creating",
              "completion-status": "completed-ok",
              "error-description": "",
              "object-type": "bundle"
            }
          ]
        }
      },
      "ObjectOnboardingDetail": {
        "title": "ObjectOnboardingDetail",
        "required": [
          "object-name",
          "state",
          "completion-status",
          "error-description",
          "object-type"
        ],
        "type": "object",
        "properties": {
          "object-name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "completion-status": {
            "type": "string"
          },
          "error-description": {
            "type": "string"
          },
          "object-type": {
            "type": "string"
          }
        },
        "example": {
          "object-name": "Test-Device-1",
          "state": "creating",
          "completion-status": "completed-ok",
          "error-description": "",
          "object-type": "device"
        }
      },
      "OnboardingAPI-withallparamters": {
        "title": "OnboardingAPI-withallparamters",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output258"
          }
        },
        "example": {
          "output": {
            "state": "creating",
            "completion-status": "in-progress",
            "transaction-id": "5c6ddea1-ba53-4095-ad2b-99602c92a6ac",
            "error-description": "",
            "object-onboarding-detail": [
              {
                "object-name": "Test-Device-1",
                "state": "creating",
                "completion-status": "completed-ok",
                "error-description": "",
                "object-type": "device"
              },
              {
                "object-name": "Test-Device-1/0/1",
                "state": "creating",
                "completion-status": "in-progress",
                "error-description": "",
                "object-type": "interface"
              },
              {
                "object-name": "Test-Device-1/0/2",
                "state": "creating",
                "completion-status": "in-progress",
                "error-description": "",
                "object-type": "interface"
              },
              {
                "object-name": "Test-Device-1-gpon-0",
                "state": "creating",
                "completion-status": "completed-ok",
                "error-description": "",
                "object-type": "bundle"
              },
              {
                "object-name": "Test-Device-1-gpon-1",
                "state": "creating",
                "completion-status": "completed-ok",
                "error-description": "",
                "object-type": "bundle"
              }
            ]
          }
        }
      },
      "OnboardingAPI-forrollback": {
        "title": "OnboardingAPI-forrollback",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output258"
          }
        },
        "example": {
          "output": {
            "state": "creating",
            "completion-status": "completed-ok",
            "transaction-id": "5c6ddea1-ba53-4095-ad2b-99602c92a6ac",
            "error-description": "",
            "object-onboarding-detail": [
              {
                "object-name": "Test-Device-1",
                "state": "creating",
                "completion-status": "completed-ok",
                "error-description": "Device Already Onboarded",
                "object-type": "device"
              },
              {
                "object-name": "Test-Device-1/0/1",
                "state": "creating",
                "completion-status": "completed-ok",
                "error-description": "Interface Already Onboarded",
                "object-type": "interface"
              },
              {
                "object-name": "Test-Device-1/0/2",
                "state": "creating",
                "completion-status": "completed-ok",
                "error-description": "Interface Already Onboarded",
                "object-type": "interface"
              },
              {
                "object-name": "Test-Device-1-gpon-0",
                "state": "creating",
                "completion-status": "completed-ok",
                "error-description": "Bundle Already Onboarded",
                "object-type": "bundle"
              },
              {
                "object-name": "Test-Device-1-gpon-1",
                "state": "creating",
                "completion-status": "completed-ok",
                "error-description": "Bundle Already Onboarded",
                "object-type": "bundle"
              }
            ]
          }
        }
      },
      "OnboardingAPI-uplinkinterfacenotpresent1": {
        "title": "OnboardingAPI-uplinkinterfacenotpresent1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Interface-2 does not exist"
        }
      },
      "OnboardingAPI-credentialnamenotpresent1": {
        "title": "OnboardingAPI-credentialnamenotpresent1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Invalid request or Template: Credential 'OLT1' does not exist"
        }
      },
      "StatusAPIRequest": {
        "title": "StatusAPIRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input220"
          }
        },
        "example": {
          "input": {
            "transaction-id": "{{trans-id}}"
          }
        }
      },
      "StatusAPI-OveralltransactionIDnotfound1": {
        "title": "StatusAPI-OveralltransactionIDnotfound1",
        "required": [
          "message"
        ],
        "type": "object",
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "example": {
          "message": "Result for overall trans-id 5c6ddea1-ba53-4095-ad2b-99602c92a6ad not found "
        }
      },
      "StatusAPI-ObjectscorrespondingtotheoverallIDarepresent": {
        "title": "StatusAPI-ObjectscorrespondingtotheoverallIDarepresent",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output258"
          }
        },
        "example": {
          "output": {
            "state": "creating",
            "completion-status": "completed-ok",
            "transaction-id": "5c6ddea1-ba53-4095-ad2b-99602c92a6ac",
            "error-description": "",
            "object-onboarding-detail": [
              {
                "object-name": "Test-Device-1",
                "state": "creating",
                "completion-status": "completed-ok",
                "error-description": "",
                "object-type": "device"
              },
              {
                "object-name": "Test-Device-1/0/1",
                "state": "creating",
                "completion-status": "completed-ok",
                "error-description": "",
                "object-type": "interface"
              },
              {
                "object-name": "Test-Device-1/0/2",
                "state": "creating",
                "completion-status": "completed-ok",
                "error-description": "",
                "object-type": "interface"
              },
              {
                "object-name": "Test-Device-1-gpon-0",
                "state": "creating",
                "completion-status": "completed-ok",
                "error-description": "",
                "object-type": "bundle"
              },
              {
                "object-name": "Test-Device-1-gpon-1",
                "state": "creating",
                "completion-status": "completed-ok",
                "error-description": "",
                "object-type": "bundle"
              }
            ]
          }
        }
      },
      "FetchNETCONFBackupInstanceNamesRequest": {
        "title": "FetchNETCONFBackupInstanceNamesRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input225"
          }
        },
        "example": {
          "input": {
            "type": "fetch-netconf-backup-instance-names",
            "device-name": "device-1"
          }
        }
      },
      "Input225": {
        "title": "Input225",
        "required": [
          "type",
          "device-name"
        ],
        "type": "object",
        "properties": {
          "type": {
            "type": "string"
          },
          "device-name": {
            "type": "string"
          }
        },
        "example": {
          "type": "fetch-netconf-backup-instance-names",
          "device-name": "device-1"
        }
      },
      "FetchNETCONFBackupInstanceNames-Example": {
        "title": "FetchNETCONFBackupInstanceNames-Example",
        "required": [
          "backup-list"
        ],
        "type": "object",
        "properties": {
          "backup-list": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "backup-list": [
            "2020-06-19T21:01:55Z_11971320F1-RL-20.3-9",
            "2020-06-17T19:19:31Z_11971320F1-RL-20.3-9",
            "2020-06-17T19:18:05Z_11971320F1-RL-20.3-9",
            "2020-06-17T18:38:25Z_11971320F1-RL-20.3-9",
            "2020-06-17T18:35:46Z_11971320F1-RL-20.3-9"
          ]
        }
      },
      "GlobalSearchTermsRequest": {
        "title": "GlobalSearchTermsRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input226"
          }
        },
        "example": {
          "input": {
            "type": "search-global",
            "global-search-terms": {
              "cursor": 0,
              "result-size": 25,
              "search-term": "device_test1"
            }
          }
        }
      },
      "Input226": {
        "title": "Input226",
        "required": [
          "type",
          "global-search-terms"
        ],
        "type": "object",
        "properties": {
          "type": {
            "type": "string"
          },
          "global-search-terms": {
            "$ref": "#/components/schemas/GlobalSearchTerms"
          }
        },
        "example": {
          "type": "search-global",
          "global-search-terms": {
            "cursor": 0,
            "result-size": 25,
            "search-term": "device_test1"
          }
        }
      },
      "GlobalSearchTerms": {
        "title": "GlobalSearchTerms",
        "required": [
          "cursor",
          "result-size",
          "search-term"
        ],
        "type": "object",
        "properties": {
          "cursor": {
            "type": "integer",
            "format": "int32"
          },
          "result-size": {
            "type": "integer",
            "format": "int32"
          },
          "search-term": {
            "type": "string"
          }
        },
        "example": {
          "cursor": 0,
          "result-size": 25,
          "search-term": "device_test1"
        }
      },
      "GlobalSearchTerms-IncorrectDeviceName": {
        "title": "GlobalSearchTerms-IncorrectDeviceName",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output262"
          }
        },
        "example": {
          "output": {
            "global-search-result": {
              "count": 0,
              "cursor": 0,
              "matching-object": []
            },
            "type": "search-global"
          }
        }
      },
      "Output262": {
        "title": "Output262",
        "required": [
          "global-search-result",
          "type"
        ],
        "type": "object",
        "properties": {
          "global-search-result": {
            "$ref": "#/components/schemas/GlobalSearchResult"
          },
          "type": {
            "type": "string"
          }
        },
        "example": {
          "global-search-result": {
            "count": 0,
            "cursor": 0,
            "matching-object": []
          },
          "type": "search-global"
        }
      },
      "GlobalSearchResult": {
        "title": "GlobalSearchResult",
        "required": [
          "count",
          "cursor",
          "matching-object"
        ],
        "type": "object",
        "properties": {
          "count": {
            "type": "integer",
            "format": "int32"
          },
          "cursor": {
            "type": "integer",
            "format": "int32"
          },
          "matching-object": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "count": 0,
          "cursor": 0,
          "matching-object": []
        }
      },
      "GlobalSearchTerms-SearchByDeviceName": {
        "title": "GlobalSearchTerms-SearchByDeviceName",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output263"
          }
        },
        "example": {
          "output": {
            "global-search-result": {
              "count": 2,
              "cursor": 2,
              "matching-object": [
                {
                  "device": {
                    "device-name": "device_test1",
                    "state": "configured",
                    "management-domain": "static-ipv4-device_test1",
                    "base-configuration": "",
                    "part-number": "11971320F1",
                    "profile-vector-name": "OLT Config Vector",
                    "model-name": "SDX 6310 16-port 10G OLT"
                  },
                  "object-type": "device",
                  "name": "device_test1"
                },
                {
                  "object-type": "management-domain",
                  "management-domain": {
                    "static": {
                      "mask": "255.255.255.0",
                      "gateway": "255.255.244.255",
                      "ip-address": "10.11.45.1"
                    },
                    "management-domain-type": "management-domain-static-ipv4",
                    "state": "activated",
                    "management-vlan-outer-tag": "untagged",
                    "management-domain-name": "static-ipv4-device_test1",
                    "management-vlan-inner-tag": "none",
                    "persistency-server": []
                  },
                  "name": "static-ipv4-device_test1"
                }
              ]
            },
            "type": "search-global"
          }
        }
      },
      "Output263": {
        "title": "Output263",
        "required": [
          "global-search-result",
          "type"
        ],
        "type": "object",
        "properties": {
          "global-search-result": {
            "$ref": "#/components/schemas/GlobalSearchResult1"
          },
          "type": {
            "type": "string"
          }
        },
        "example": {
          "global-search-result": {
            "count": 2,
            "cursor": 2,
            "matching-object": [
              {
                "device": {
                  "device-name": "device_test1",
                  "state": "configured",
                  "management-domain": "static-ipv4-device_test1",
                  "base-configuration": "",
                  "part-number": "11971320F1",
                  "profile-vector-name": "OLT Config Vector",
                  "model-name": "SDX 6310 16-port 10G OLT"
                },
                "object-type": "device",
                "name": "device_test1"
              },
              {
                "object-type": "management-domain",
                "management-domain": {
                  "static": {
                    "mask": "255.255.255.0",
                    "gateway": "255.255.244.255",
                    "ip-address": "10.11.45.1"
                  },
                  "management-domain-type": "management-domain-static-ipv4",
                  "state": "activated",
                  "management-vlan-outer-tag": "untagged",
                  "management-domain-name": "static-ipv4-device_test1",
                  "management-vlan-inner-tag": "none",
                  "persistency-server": []
                },
                "name": "static-ipv4-device_test1"
              }
            ]
          },
          "type": "search-global"
        }
      },
      "GlobalSearchResult1": {
        "title": "GlobalSearchResult1",
        "required": [
          "count",
          "cursor",
          "matching-object"
        ],
        "type": "object",
        "properties": {
          "count": {
            "type": "integer",
            "format": "int32"
          },
          "cursor": {
            "type": "integer",
            "format": "int32"
          },
          "matching-object": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/MatchingObject2"
            },
            "description": ""
          }
        },
        "example": {
          "count": 2,
          "cursor": 2,
          "matching-object": [
            {
              "device": {
                "device-name": "device_test1",
                "state": "configured",
                "management-domain": "static-ipv4-device_test1",
                "base-configuration": "",
                "part-number": "11971320F1",
                "profile-vector-name": "OLT Config Vector",
                "model-name": "SDX 6310 16-port 10G OLT"
              },
              "object-type": "device",
              "name": "device_test1"
            },
            {
              "object-type": "management-domain",
              "management-domain": {
                "static": {
                  "mask": "255.255.255.0",
                  "gateway": "255.255.244.255",
                  "ip-address": "10.11.45.1"
                },
                "management-domain-type": "management-domain-static-ipv4",
                "state": "activated",
                "management-vlan-outer-tag": "untagged",
                "management-domain-name": "static-ipv4-device_test1",
                "management-vlan-inner-tag": "none",
                "persistency-server": []
              },
              "name": "static-ipv4-device_test1"
            }
          ]
        }
      },
      "MatchingObject2": {
        "title": "MatchingObject2",
        "required": [
          "object-type",
          "name"
        ],
        "type": "object",
        "properties": {
          "device": {
            "$ref": "#/components/schemas/Device"
          },
          "object-type": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "management-domain": {
            "$ref": "#/components/schemas/ManagementDomain"
          }
        },
        "example": {
          "device": {
            "device-name": "device_test1",
            "state": "configured",
            "management-domain": "static-ipv4-device_test1",
            "base-configuration": "",
            "part-number": "11971320F1",
            "profile-vector-name": "OLT Config Vector",
            "model-name": "SDX 6310 16-port 10G OLT"
          },
          "object-type": "device",
          "name": "device_test1"
        }
      },
      "Device": {
        "title": "Device",
        "required": [
          "device-name",
          "state",
          "management-domain",
          "base-configuration",
          "part-number",
          "profile-vector-name",
          "model-name"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "management-domain": {
            "type": "string"
          },
          "base-configuration": {
            "type": "string"
          },
          "part-number": {
            "type": "string"
          },
          "profile-vector-name": {
            "type": "string"
          },
          "model-name": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "device_test1",
          "state": "configured",
          "management-domain": "static-ipv4-device_test1",
          "base-configuration": "",
          "part-number": "11971320F1",
          "profile-vector-name": "OLT Config Vector",
          "model-name": "SDX 6310 16-port 10G OLT"
        }
      },
      "ManagementDomain": {
        "title": "ManagementDomain",
        "required": [
          "static",
          "management-domain-type",
          "state",
          "management-vlan-outer-tag",
          "management-domain-name",
          "management-vlan-inner-tag",
          "persistency-server"
        ],
        "type": "object",
        "properties": {
          "static": {
            "$ref": "#/components/schemas/Static"
          },
          "management-domain-type": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "management-vlan-outer-tag": {
            "type": "string"
          },
          "management-domain-name": {
            "type": "string"
          },
          "management-vlan-inner-tag": {
            "type": "string"
          },
          "persistency-server": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "static": {
            "mask": "255.255.255.0",
            "gateway": "255.255.244.255",
            "ip-address": "10.11.45.1"
          },
          "management-domain-type": "management-domain-static-ipv4",
          "state": "activated",
          "management-vlan-outer-tag": "untagged",
          "management-domain-name": "static-ipv4-device_test1",
          "management-vlan-inner-tag": "none",
          "persistency-server": []
        }
      },
      "Static": {
        "title": "Static",
        "required": [
          "mask",
          "gateway",
          "ip-address"
        ],
        "type": "object",
        "properties": {
          "mask": {
            "type": "string"
          },
          "gateway": {
            "type": "string"
          },
          "ip-address": {
            "type": "string"
          }
        },
        "example": {
          "mask": "255.255.255.0",
          "gateway": "255.255.244.255",
          "ip-address": "10.11.45.1"
        }
      },
      "GlobalSearchTerms-SearchByInterfaceName": {
        "title": "GlobalSearchTerms-SearchByInterfaceName",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output264"
          }
        },
        "example": {
          "output": {
            "global-search-result": {
              "count": 1,
              "cursor": 1,
              "matching-object": [
                {
                  "interface": {
                    "device-name": "rooted-device",
                    "interface-type": "hundred-gigabit-ethernet",
                    "state": "deployed",
                    "interface-name": "interface_1",
                    "bundle-name": "ChannelPartition",
                    "interface-id": "123",
                    "subtended-device-name": "",
                    "lower-layer-interfaces": [
                      "hundred-gigabit-ethernet 0/1"
                    ],
                    "profile-vector-name": "ONU Eth UNI Profile Vector",
                    "number-of-lower-layer-interfaces": 0
                  },
                  "object-type": "interface",
                  "name": "interface_1"
                }
              ]
            },
            "type": "search-global"
          }
        }
      },
      "Output264": {
        "title": "Output264",
        "required": [
          "global-search-result",
          "type"
        ],
        "type": "object",
        "properties": {
          "global-search-result": {
            "$ref": "#/components/schemas/GlobalSearchResult2"
          },
          "type": {
            "type": "string"
          }
        },
        "example": {
          "global-search-result": {
            "count": 1,
            "cursor": 1,
            "matching-object": [
              {
                "interface": {
                  "device-name": "rooted-device",
                  "interface-type": "hundred-gigabit-ethernet",
                  "state": "deployed",
                  "interface-name": "interface_1",
                  "bundle-name": "ChannelPartition",
                  "interface-id": "123",
                  "subtended-device-name": "",
                  "lower-layer-interfaces": [
                    "hundred-gigabit-ethernet 0/1"
                  ],
                  "profile-vector-name": "ONU Eth UNI Profile Vector",
                  "number-of-lower-layer-interfaces": 0
                },
                "object-type": "interface",
                "name": "interface_1"
              }
            ]
          },
          "type": "search-global"
        }
      },
      "GlobalSearchResult2": {
        "title": "GlobalSearchResult2",
        "required": [
          "count",
          "cursor",
          "matching-object"
        ],
        "type": "object",
        "properties": {
          "count": {
            "type": "integer",
            "format": "int32"
          },
          "cursor": {
            "type": "integer",
            "format": "int32"
          },
          "matching-object": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/MatchingObject3"
            },
            "description": ""
          }
        },
        "example": {
          "count": 1,
          "cursor": 1,
          "matching-object": [
            {
              "interface": {
                "device-name": "rooted-device",
                "interface-type": "hundred-gigabit-ethernet",
                "state": "deployed",
                "interface-name": "interface_1",
                "bundle-name": "ChannelPartition",
                "interface-id": "123",
                "subtended-device-name": "",
                "lower-layer-interfaces": [
                  "hundred-gigabit-ethernet 0/1"
                ],
                "profile-vector-name": "ONU Eth UNI Profile Vector",
                "number-of-lower-layer-interfaces": 0
              },
              "object-type": "interface",
              "name": "interface_1"
            }
          ]
        }
      },
      "MatchingObject3": {
        "title": "MatchingObject3",
        "required": [
          "interface",
          "object-type",
          "name"
        ],
        "type": "object",
        "properties": {
          "interface": {
            "$ref": "#/components/schemas/Interface"
          },
          "object-type": {
            "type": "string"
          },
          "name": {
            "type": "string"
          }
        },
        "example": {
          "interface": {
            "device-name": "rooted-device",
            "interface-type": "hundred-gigabit-ethernet",
            "state": "deployed",
            "interface-name": "interface_1",
            "bundle-name": "ChannelPartition",
            "interface-id": "123",
            "subtended-device-name": "",
            "lower-layer-interfaces": [
              "hundred-gigabit-ethernet 0/1"
            ],
            "profile-vector-name": "ONU Eth UNI Profile Vector",
            "number-of-lower-layer-interfaces": 0
          },
          "object-type": "interface",
          "name": "interface_1"
        }
      },
      "Interface": {
        "title": "Interface",
        "required": [
          "device-name",
          "interface-type",
          "state",
          "interface-name",
          "bundle-name",
          "interface-id",
          "subtended-device-name",
          "lower-layer-interfaces",
          "profile-vector-name",
          "number-of-lower-layer-interfaces"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "interface-type": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "interface-name": {
            "type": "string"
          },
          "bundle-name": {
            "type": "string"
          },
          "interface-id": {
            "type": "string"
          },
          "subtended-device-name": {
            "type": "string"
          },
          "lower-layer-interfaces": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "profile-vector-name": {
            "type": "string"
          },
          "number-of-lower-layer-interfaces": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "device-name": "rooted-device",
          "interface-type": "hundred-gigabit-ethernet",
          "state": "deployed",
          "interface-name": "interface_1",
          "bundle-name": "ChannelPartition",
          "interface-id": "123",
          "subtended-device-name": "",
          "lower-layer-interfaces": [
            "hundred-gigabit-ethernet 0/1"
          ],
          "profile-vector-name": "ONU Eth UNI Profile Vector",
          "number-of-lower-layer-interfaces": 0
        }
      },
      "GlobalSearchTerms-SearchByBundleName": {
        "title": "GlobalSearchTerms-SearchByBundleName",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output265"
          }
        },
        "example": {
          "output": {
            "global-search-result": {
              "count": 2,
              "cursor": 2,
              "matching-object": [
                {
                  "object-type": "bundle",
                  "name": "ChannelPartition",
                  "bundle": {
                    "state": "activated",
                    "bundle-name": "ChannelPartition",
                    "bundle-id": "4391/1",
                    "profile-vector-name": "",
                    "bundle-type": "channel-partition"
                  }
                },
                {
                  "interface": {
                    "device-name": "rooted-device",
                    "interface-type": "hundred-gigabit-ethernet",
                    "state": "deployed",
                    "interface-name": "interface_1",
                    "bundle-name": "ChannelPartition",
                    "interface-id": "123",
                    "subtended-device-name": "",
                    "lower-layer-interfaces": [
                      "hundred-gigabit-ethernet 0/1"
                    ],
                    "profile-vector-name": "ONU Eth UNI Profile Vector",
                    "number-of-lower-layer-interfaces": 0
                  },
                  "object-type": "interface",
                  "name": "interface_1"
                }
              ]
            },
            "type": "search-global"
          }
        }
      },
      "Output265": {
        "title": "Output265",
        "required": [
          "global-search-result",
          "type"
        ],
        "type": "object",
        "properties": {
          "global-search-result": {
            "$ref": "#/components/schemas/GlobalSearchResult3"
          },
          "type": {
            "type": "string"
          }
        },
        "example": {
          "global-search-result": {
            "count": 2,
            "cursor": 2,
            "matching-object": [
              {
                "object-type": "bundle",
                "name": "ChannelPartition",
                "bundle": {
                  "state": "activated",
                  "bundle-name": "ChannelPartition",
                  "bundle-id": "4391/1",
                  "profile-vector-name": "",
                  "bundle-type": "channel-partition"
                }
              },
              {
                "interface": {
                  "device-name": "rooted-device",
                  "interface-type": "hundred-gigabit-ethernet",
                  "state": "deployed",
                  "interface-name": "interface_1",
                  "bundle-name": "ChannelPartition",
                  "interface-id": "123",
                  "subtended-device-name": "",
                  "lower-layer-interfaces": [
                    "hundred-gigabit-ethernet 0/1"
                  ],
                  "profile-vector-name": "ONU Eth UNI Profile Vector",
                  "number-of-lower-layer-interfaces": 0
                },
                "object-type": "interface",
                "name": "interface_1"
              }
            ]
          },
          "type": "search-global"
        }
      },
      "GlobalSearchResult3": {
        "title": "GlobalSearchResult3",
        "required": [
          "count",
          "cursor",
          "matching-object"
        ],
        "type": "object",
        "properties": {
          "count": {
            "type": "integer",
            "format": "int32"
          },
          "cursor": {
            "type": "integer",
            "format": "int32"
          },
          "matching-object": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/MatchingObject4"
            },
            "description": ""
          }
        },
        "example": {
          "count": 2,
          "cursor": 2,
          "matching-object": [
            {
              "object-type": "bundle",
              "name": "ChannelPartition",
              "bundle": {
                "state": "activated",
                "bundle-name": "ChannelPartition",
                "bundle-id": "4391/1",
                "profile-vector-name": "",
                "bundle-type": "channel-partition"
              }
            },
            {
              "interface": {
                "device-name": "rooted-device",
                "interface-type": "hundred-gigabit-ethernet",
                "state": "deployed",
                "interface-name": "interface_1",
                "bundle-name": "ChannelPartition",
                "interface-id": "123",
                "subtended-device-name": "",
                "lower-layer-interfaces": [
                  "hundred-gigabit-ethernet 0/1"
                ],
                "profile-vector-name": "ONU Eth UNI Profile Vector",
                "number-of-lower-layer-interfaces": 0
              },
              "object-type": "interface",
              "name": "interface_1"
            }
          ]
        }
      },
      "MatchingObject4": {
        "title": "MatchingObject4",
        "required": [
          "object-type",
          "name"
        ],
        "type": "object",
        "properties": {
          "object-type": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "bundle": {
            "$ref": "#/components/schemas/Bundle"
          },
          "interface": {
            "$ref": "#/components/schemas/Interface"
          }
        },
        "example": {
          "object-type": "bundle",
          "name": "ChannelPartition",
          "bundle": {
            "state": "activated",
            "bundle-name": "ChannelPartition",
            "bundle-id": "4391/1",
            "profile-vector-name": "",
            "bundle-type": "channel-partition"
          }
        }
      },
      "Bundle": {
        "title": "Bundle",
        "required": [
          "state",
          "bundle-name",
          "bundle-id",
          "profile-vector-name",
          "bundle-type"
        ],
        "type": "object",
        "properties": {
          "state": {
            "type": "string"
          },
          "bundle-name": {
            "type": "string"
          },
          "bundle-id": {
            "type": "string"
          },
          "profile-vector-name": {
            "type": "string"
          },
          "bundle-type": {
            "type": "string"
          }
        },
        "example": {
          "state": "activated",
          "bundle-name": "ChannelPartition",
          "bundle-id": "4391/1",
          "profile-vector-name": "",
          "bundle-type": "channel-partition"
        }
      },
      "RelatedObjectsTermRequest": {
        "title": "RelatedObjectsTermRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input227"
          }
        },
        "example": {
          "input": {
            "type": "search-global",
            "related-objects-term": {
              "cursor": 0,
              "result-size": 25,
              "search-term": "",
              "object-type": "device",
              "search-field": "",
              "extra-search-fields": [
                {
                  "field": "device-name",
                  "value": "device_test1"
                }
              ]
            }
          }
        }
      },
      "Input227": {
        "title": "Input227",
        "required": [
          "type",
          "related-objects-term"
        ],
        "type": "object",
        "properties": {
          "type": {
            "type": "string"
          },
          "related-objects-term": {
            "$ref": "#/components/schemas/RelatedObjectsTerm1"
          }
        },
        "example": {
          "type": "search-global",
          "related-objects-term": {
            "cursor": 0,
            "result-size": 25,
            "search-term": "",
            "object-type": "device",
            "search-field": "",
            "extra-search-fields": [
              {
                "field": "device-name",
                "value": "device_test1"
              }
            ]
          }
        }
      },
      "RelatedObjectsTerm1": {
        "title": "RelatedObjectsTerm1",
        "required": [
          "cursor",
          "result-size",
          "search-term",
          "object-type",
          "search-field",
          "extra-search-fields"
        ],
        "type": "object",
        "properties": {
          "cursor": {
            "type": "integer",
            "format": "int32"
          },
          "result-size": {
            "type": "integer",
            "format": "int32"
          },
          "search-term": {
            "type": "string"
          },
          "object-type": {
            "type": "string"
          },
          "search-field": {
            "type": "string"
          },
          "extra-search-fields": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ExtraSearchField"
            },
            "description": ""
          }
        },
        "example": {
          "cursor": 0,
          "result-size": 25,
          "search-term": "",
          "object-type": "device",
          "search-field": "",
          "extra-search-fields": [
            {
              "field": "device-name",
              "value": "device_test1"
            }
          ]
        }
      },
      "ExtraSearchField": {
        "title": "ExtraSearchField",
        "required": [
          "field",
          "value"
        ],
        "type": "object",
        "properties": {
          "field": {
            "type": "string"
          },
          "value": {
            "type": "string"
          }
        },
        "example": {
          "field": "device-name",
          "value": "device_test1"
        }
      },
      "RelatedObjectsTerm-SearchbyInterfaceType": {
        "title": "RelatedObjectsTerm-SearchbyInterfaceType",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output266"
          }
        },
        "example": {
          "output": {
            "related-object-results": {
              "count": 1,
              "cursor": 1,
              "matching-object": [
                {
                  "interface": {
                    "device-name": "rooted-device",
                    "interface-type": "hundred-gigabit-ethernet",
                    "state": "deployed",
                    "interface-name": "interface_1",
                    "bundle-name": "ChannelPartition",
                    "interface-id": "123",
                    "subtended-device-name": "",
                    "lower-layer-interfaces": [
                      "hundred-gigabit-ethernet 0/1"
                    ],
                    "profile-vector-name": "ONU Eth UNI Profile Vector",
                    "number-of-lower-layer-interfaces": 0
                  },
                  "name": "interface_1"
                }
              ]
            },
            "type": "search-global"
          }
        }
      },
      "Output266": {
        "title": "Output266",
        "required": [
          "related-object-results",
          "type"
        ],
        "type": "object",
        "properties": {
          "related-object-results": {
            "$ref": "#/components/schemas/RelatedObjectResults3"
          },
          "type": {
            "type": "string"
          }
        },
        "example": {
          "related-object-results": {
            "count": 1,
            "cursor": 1,
            "matching-object": [
              {
                "interface": {
                  "device-name": "rooted-device",
                  "interface-type": "hundred-gigabit-ethernet",
                  "state": "deployed",
                  "interface-name": "interface_1",
                  "bundle-name": "ChannelPartition",
                  "interface-id": "123",
                  "subtended-device-name": "",
                  "lower-layer-interfaces": [
                    "hundred-gigabit-ethernet 0/1"
                  ],
                  "profile-vector-name": "ONU Eth UNI Profile Vector",
                  "number-of-lower-layer-interfaces": 0
                },
                "name": "interface_1"
              }
            ]
          },
          "type": "search-global"
        }
      },
      "RelatedObjectResults3": {
        "title": "RelatedObjectResults3",
        "required": [
          "count",
          "cursor",
          "matching-object"
        ],
        "type": "object",
        "properties": {
          "count": {
            "type": "integer",
            "format": "int32"
          },
          "cursor": {
            "type": "integer",
            "format": "int32"
          },
          "matching-object": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/MatchingObject5"
            },
            "description": ""
          }
        },
        "example": {
          "count": 1,
          "cursor": 1,
          "matching-object": [
            {
              "interface": {
                "device-name": "rooted-device",
                "interface-type": "hundred-gigabit-ethernet",
                "state": "deployed",
                "interface-name": "interface_1",
                "bundle-name": "ChannelPartition",
                "interface-id": "123",
                "subtended-device-name": "",
                "lower-layer-interfaces": [
                  "hundred-gigabit-ethernet 0/1"
                ],
                "profile-vector-name": "ONU Eth UNI Profile Vector",
                "number-of-lower-layer-interfaces": 0
              },
              "name": "interface_1"
            }
          ]
        }
      },
      "MatchingObject5": {
        "title": "MatchingObject5",
        "required": [
          "interface",
          "name"
        ],
        "type": "object",
        "properties": {
          "interface": {
            "$ref": "#/components/schemas/Interface"
          },
          "name": {
            "type": "string"
          }
        },
        "example": {
          "interface": {
            "device-name": "rooted-device",
            "interface-type": "hundred-gigabit-ethernet",
            "state": "deployed",
            "interface-name": "interface_1",
            "bundle-name": "ChannelPartition",
            "interface-id": "123",
            "subtended-device-name": "",
            "lower-layer-interfaces": [
              "hundred-gigabit-ethernet 0/1"
            ],
            "profile-vector-name": "ONU Eth UNI Profile Vector",
            "number-of-lower-layer-interfaces": 0
          },
          "name": "interface_1"
        }
      },
      "RelatedObjectsTerm-IncorrectInterfaceType": {
        "title": "RelatedObjectsTerm-IncorrectInterfaceType",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output214"
          }
        },
        "example": {
          "output": {
            "related-object-results": {
              "count": 0,
              "cursor": 0,
              "matching-object": []
            },
            "type": "search-global"
          }
        }
      },
      "RelatedObjectsTerm-IncorrectDeviceName": {
        "title": "RelatedObjectsTerm-IncorrectDeviceName",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output214"
          }
        },
        "example": {
          "output": {
            "related-object-results": {
              "count": 0,
              "cursor": 0,
              "matching-object": []
            },
            "type": "search-global"
          }
        }
      },
      "RelatedObjectsTerm-SearchByDeviceName": {
        "title": "RelatedObjectsTerm-SearchByDeviceName",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output269"
          }
        },
        "example": {
          "output": {
            "related-object-results": {
              "count": 1,
              "cursor": 1,
              "matching-object": [
                {
                  "device": {
                    "device-name": "device_test1",
                    "state": "configured",
                    "management-domain": "static-ipv4-device_test1",
                    "base-configuration": "",
                    "part-number": "11971320F1",
                    "profile-vector-name": "OLT Config Vector",
                    "model-name": "SDX 6310 16-port 10G OLT"
                  },
                  "name": "device_test1"
                }
              ]
            },
            "type": "search-global"
          }
        }
      },
      "Output269": {
        "title": "Output269",
        "required": [
          "related-object-results",
          "type"
        ],
        "type": "object",
        "properties": {
          "related-object-results": {
            "$ref": "#/components/schemas/RelatedObjectResults6"
          },
          "type": {
            "type": "string"
          }
        },
        "example": {
          "related-object-results": {
            "count": 1,
            "cursor": 1,
            "matching-object": [
              {
                "device": {
                  "device-name": "device_test1",
                  "state": "configured",
                  "management-domain": "static-ipv4-device_test1",
                  "base-configuration": "",
                  "part-number": "11971320F1",
                  "profile-vector-name": "OLT Config Vector",
                  "model-name": "SDX 6310 16-port 10G OLT"
                },
                "name": "device_test1"
              }
            ]
          },
          "type": "search-global"
        }
      },
      "RelatedObjectResults6": {
        "title": "RelatedObjectResults6",
        "required": [
          "count",
          "cursor",
          "matching-object"
        ],
        "type": "object",
        "properties": {
          "count": {
            "type": "integer",
            "format": "int32"
          },
          "cursor": {
            "type": "integer",
            "format": "int32"
          },
          "matching-object": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/MatchingObject6"
            },
            "description": ""
          }
        },
        "example": {
          "count": 1,
          "cursor": 1,
          "matching-object": [
            {
              "device": {
                "device-name": "device_test1",
                "state": "configured",
                "management-domain": "static-ipv4-device_test1",
                "base-configuration": "",
                "part-number": "11971320F1",
                "profile-vector-name": "OLT Config Vector",
                "model-name": "SDX 6310 16-port 10G OLT"
              },
              "name": "device_test1"
            }
          ]
        }
      },
      "MatchingObject6": {
        "title": "MatchingObject6",
        "required": [
          "device",
          "name"
        ],
        "type": "object",
        "properties": {
          "device": {
            "$ref": "#/components/schemas/Device"
          },
          "name": {
            "type": "string"
          }
        },
        "example": {
          "device": {
            "device-name": "device_test1",
            "state": "configured",
            "management-domain": "static-ipv4-device_test1",
            "base-configuration": "",
            "part-number": "11971320F1",
            "profile-vector-name": "OLT Config Vector",
            "model-name": "SDX 6310 16-port 10G OLT"
          },
          "name": "device_test1"
        }
      },
      "RelatedMetaTermRequest": {
        "title": "RelatedMetaTermRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input228"
          }
        },
        "example": {
          "input": {
            "type": "search-global",
            "related-meta-term": {
              "search-term": "test"
            }
          }
        }
      },
      "Input228": {
        "title": "Input228",
        "required": [
          "type",
          "related-meta-term"
        ],
        "type": "object",
        "properties": {
          "type": {
            "type": "string"
          },
          "related-meta-term": {
            "$ref": "#/components/schemas/RelatedMetaTerm"
          }
        },
        "example": {
          "type": "search-global",
          "related-meta-term": {
            "search-term": "test"
          }
        }
      },
      "RelatedMetaTerm": {
        "title": "RelatedMetaTerm",
        "required": [
          "search-term"
        ],
        "type": "object",
        "properties": {
          "search-term": {
            "type": "string"
          }
        },
        "example": {
          "search-term": "test"
        }
      },
      "RelatedMetaTerm-SearchByDevice": {
        "title": "RelatedMetaTerm-SearchByDevice",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output270"
          }
        },
        "example": {
          "output": {
            "related-meta-results": {
              "matching-type": [
                {
                  "object-type": "bundle",
                  "object-count": 0
                },
                {
                  "object-type": "content-provider",
                  "object-count": 0
                },
                {
                  "object-type": "data-center",
                  "object-count": 0
                },
                {
                  "object-type": "device",
                  "object-count": 2
                },
                {
                  "object-type": "interface",
                  "object-count": 1
                },
                {
                  "object-type": "inventory",
                  "object-count": 0
                },
                {
                  "object-type": "job",
                  "object-count": 0
                },
                {
                  "object-type": "management-domain",
                  "object-count": 1
                },
                {
                  "object-type": "profile",
                  "object-count": 27
                },
                {
                  "object-type": "profile-vector",
                  "object-count": 4
                },
                {
                  "object-type": "server",
                  "object-count": 0
                },
                {
                  "object-type": "service",
                  "object-count": 0
                }
              ]
            },
            "type": "search-global"
          }
        }
      },
      "Output270": {
        "title": "Output270",
        "required": [
          "related-meta-results",
          "type"
        ],
        "type": "object",
        "properties": {
          "related-meta-results": {
            "$ref": "#/components/schemas/RelatedMetaResults"
          },
          "type": {
            "type": "string"
          }
        },
        "example": {
          "related-meta-results": {
            "matching-type": [
              {
                "object-type": "bundle",
                "object-count": 0
              },
              {
                "object-type": "content-provider",
                "object-count": 0
              },
              {
                "object-type": "data-center",
                "object-count": 0
              },
              {
                "object-type": "device",
                "object-count": 2
              },
              {
                "object-type": "interface",
                "object-count": 1
              },
              {
                "object-type": "inventory",
                "object-count": 0
              },
              {
                "object-type": "job",
                "object-count": 0
              },
              {
                "object-type": "management-domain",
                "object-count": 1
              },
              {
                "object-type": "profile",
                "object-count": 27
              },
              {
                "object-type": "profile-vector",
                "object-count": 4
              },
              {
                "object-type": "server",
                "object-count": 0
              },
              {
                "object-type": "service",
                "object-count": 0
              }
            ]
          },
          "type": "search-global"
        }
      },
      "RelatedMetaResults": {
        "title": "RelatedMetaResults",
        "required": [
          "matching-type"
        ],
        "type": "object",
        "properties": {
          "matching-type": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/MatchingType"
            },
            "description": ""
          }
        },
        "example": {
          "matching-type": [
            {
              "object-type": "bundle",
              "object-count": 0
            },
            {
              "object-type": "content-provider",
              "object-count": 0
            },
            {
              "object-type": "data-center",
              "object-count": 0
            },
            {
              "object-type": "device",
              "object-count": 2
            },
            {
              "object-type": "interface",
              "object-count": 1
            },
            {
              "object-type": "inventory",
              "object-count": 0
            },
            {
              "object-type": "job",
              "object-count": 0
            },
            {
              "object-type": "management-domain",
              "object-count": 1
            },
            {
              "object-type": "profile",
              "object-count": 27
            },
            {
              "object-type": "profile-vector",
              "object-count": 4
            },
            {
              "object-type": "server",
              "object-count": 0
            },
            {
              "object-type": "service",
              "object-count": 0
            }
          ]
        }
      },
      "MatchingType": {
        "title": "MatchingType",
        "required": [
          "object-type",
          "object-count"
        ],
        "type": "object",
        "properties": {
          "object-type": {
            "type": "string"
          },
          "object-count": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "object-type": "bundle",
          "object-count": 0
        }
      },
      "RelatedMetaTerm-SearchByDeviceName": {
        "title": "RelatedMetaTerm-SearchByDeviceName",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output270"
          }
        },
        "example": {
          "output": {
            "related-meta-results": {
              "matching-type": [
                {
                  "object-type": "bundle",
                  "object-count": 0
                },
                {
                  "object-type": "content-provider",
                  "object-count": 0
                },
                {
                  "object-type": "data-center",
                  "object-count": 0
                },
                {
                  "object-type": "device",
                  "object-count": 1
                },
                {
                  "object-type": "interface",
                  "object-count": 0
                },
                {
                  "object-type": "inventory",
                  "object-count": 0
                },
                {
                  "object-type": "job",
                  "object-count": 0
                },
                {
                  "object-type": "management-domain",
                  "object-count": 1
                },
                {
                  "object-type": "profile",
                  "object-count": 0
                },
                {
                  "object-type": "profile-vector",
                  "object-count": 0
                },
                {
                  "object-type": "server",
                  "object-count": 0
                },
                {
                  "object-type": "service",
                  "object-count": 0
                }
              ]
            },
            "type": "search-global"
          }
        }
      },
      "RelatedMetaTerm-SearchAllObjectType": {
        "title": "RelatedMetaTerm-SearchAllObjectType",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output270"
          }
        },
        "example": {
          "output": {
            "related-meta-results": {
              "matching-type": [
                {
                  "object-type": "bundle",
                  "object-count": 1
                },
                {
                  "object-type": "content-provider",
                  "object-count": 0
                },
                {
                  "object-type": "data-center",
                  "object-count": 0
                },
                {
                  "object-type": "device",
                  "object-count": 2
                },
                {
                  "object-type": "interface",
                  "object-count": 1
                },
                {
                  "object-type": "inventory",
                  "object-count": 0
                },
                {
                  "object-type": "job",
                  "object-count": 1
                },
                {
                  "object-type": "management-domain",
                  "object-count": 1
                },
                {
                  "object-type": "profile",
                  "object-count": 195
                },
                {
                  "object-type": "profile-vector",
                  "object-count": 26
                },
                {
                  "object-type": "server",
                  "object-count": 0
                },
                {
                  "object-type": "service",
                  "object-count": 0
                }
              ]
            },
            "type": "search-global"
          }
        }
      },
      "RelatedMetaTerm-IncorrectDeviceName": {
        "title": "RelatedMetaTerm-IncorrectDeviceName",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output270"
          }
        },
        "example": {
          "output": {
            "related-meta-results": {
              "matching-type": [
                {
                  "object-type": "bundle",
                  "object-count": 0
                },
                {
                  "object-type": "content-provider",
                  "object-count": 0
                },
                {
                  "object-type": "data-center",
                  "object-count": 0
                },
                {
                  "object-type": "device",
                  "object-count": 0
                },
                {
                  "object-type": "interface",
                  "object-count": 0
                },
                {
                  "object-type": "inventory",
                  "object-count": 0
                },
                {
                  "object-type": "job",
                  "object-count": 0
                },
                {
                  "object-type": "management-domain",
                  "object-count": 0
                },
                {
                  "object-type": "profile",
                  "object-count": 0
                },
                {
                  "object-type": "profile-vector",
                  "object-count": 0
                },
                {
                  "object-type": "server",
                  "object-count": 0
                },
                {
                  "object-type": "service",
                  "object-count": 0
                }
              ]
            },
            "type": "search-global"
          }
        }
      },
      "AdvancedSearchTermsRequest": {
        "title": "AdvancedSearchTermsRequest",
        "required": [
          "input"
        ],
        "type": "object",
        "properties": {
          "input": {
            "$ref": "#/components/schemas/Input229"
          }
        },
        "example": {
          "input": {
            "type": "search-advance",
            "advanced-search-terms": {
              "cursor": 0,
              "result-size": 25,
              "advanced-search-condition": [
                {
                  "field": "label",
                  "value": [
                    "HSV-DEV"
                  ],
                  "condition": "any"
                }
              ],
              "object-type": [
                "device",
                "interface",
                "bundle"
              ],
              "search-term": "gen"
            }
          }
        }
      },
      "Input229": {
        "title": "Input229",
        "required": [
          "type",
          "advanced-search-terms"
        ],
        "type": "object",
        "properties": {
          "type": {
            "type": "string"
          },
          "advanced-search-terms": {
            "$ref": "#/components/schemas/AdvancedSearchTerms"
          }
        },
        "example": {
          "type": "search-advance",
          "advanced-search-terms": {
            "cursor": 0,
            "result-size": 25,
            "advanced-search-condition": [
              {
                "field": "label",
                "value": [
                  "HSV-DEV"
                ],
                "condition": "any"
              }
            ],
            "object-type": [
              "device",
              "interface",
              "bundle"
            ],
            "search-term": "gen"
          }
        }
      },
      "AdvancedSearchTerms": {
        "title": "AdvancedSearchTerms",
        "required": [
          "cursor",
          "result-size",
          "advanced-search-condition",
          "object-type",
          "search-term"
        ],
        "type": "object",
        "properties": {
          "cursor": {
            "type": "integer",
            "format": "int32"
          },
          "result-size": {
            "type": "integer",
            "format": "int32"
          },
          "advanced-search-condition": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/AdvancedSearchCondition"
            },
            "description": ""
          },
          "object-type": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "search-term": {
            "type": "string"
          }
        },
        "example": {
          "cursor": 0,
          "result-size": 25,
          "advanced-search-condition": [
            {
              "field": "label",
              "value": [
                "HSV-DEV"
              ],
              "condition": "any"
            }
          ],
          "object-type": [
            "device",
            "interface",
            "bundle"
          ],
          "search-term": "gen"
        }
      },
      "AdvancedSearchCondition": {
        "title": "AdvancedSearchCondition",
        "required": [
          "field",
          "value",
          "condition"
        ],
        "type": "object",
        "properties": {
          "field": {
            "type": "string"
          },
          "value": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "condition": {
            "type": "string"
          }
        },
        "example": {
          "field": "label",
          "value": [
            "HSV-DEV"
          ],
          "condition": "any"
        }
      },
      "AdvancedSearchTerms-MultipleObjectsWithoutLabelandSearchTerm": {
        "title": "AdvancedSearchTerms-MultipleObjectsWithoutLabelandSearchTerm",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output274"
          }
        },
        "example": {
          "output": {
            "advanced-search-result": {
              "count": 4,
              "cursor": 25,
              "matching-object": [
                {
                  "bundle": {
                    "bundle-id": "4391/1",
                    "state": "activated",
                    "bundle-name": "ChannelPartition",
                    "bundle-type": "channel-partition",
                    "profile-vector-name": ""
                  },
                  "object-type": "bundle",
                  "name": "ChannelPartition",
                  "label": []
                },
                {
                  "device": {
                    "device-name": "device_test1",
                    "state": "configured",
                    "management-domain": "static-ipv4-device_test1",
                    "part-number": "11971320F1",
                    "base-configuration": "",
                    "model-name": "SDX 6310 16-port 10G OLT",
                    "profile-vector-name": "OLT Config Vector"
                  },
                  "object-type": "device",
                  "name": "device_test1",
                  "label": [
                    "label_1"
                  ]
                },
                {
                  "interface": {
                    "device-name": "rooted-device",
                    "interface-type": "hundred-gigabit-ethernet",
                    "number-of-lower-layer-interfaces": 0,
                    "interface-name": "interface_1",
                    "state": "deployed",
                    "bundle-name": "ChannelPartition",
                    "subtended-device-name": "",
                    "profile-vector-name": "ONU Eth UNI Profile Vector",
                    "lower-layer-interfaces": [
                      "hundred-gigabit-ethernet 0/1"
                    ],
                    "interface-id": "123"
                  },
                  "object-type": "interface",
                  "name": "interface_1",
                  "label": []
                },
                {
                  "device": {
                    "device-name": "rooted-device",
                    "state": "activated",
                    "management-domain": "",
                    "part-number": "GENERIC",
                    "base-configuration": "",
                    "model-name": "Generic Device"
                  },
                  "object-type": "device",
                  "name": "rooted-device",
                  "label": [
                    "label_2"
                  ]
                }
              ]
            },
            "type": "search-advance"
          }
        }
      },
      "Output274": {
        "title": "Output274",
        "required": [
          "advanced-search-result",
          "type"
        ],
        "type": "object",
        "properties": {
          "advanced-search-result": {
            "$ref": "#/components/schemas/AdvancedSearchResult"
          },
          "type": {
            "type": "string"
          }
        },
        "example": {
          "advanced-search-result": {
            "count": 4,
            "cursor": 25,
            "matching-object": [
              {
                "bundle": {
                  "bundle-id": "4391/1",
                  "state": "activated",
                  "bundle-name": "ChannelPartition",
                  "bundle-type": "channel-partition",
                  "profile-vector-name": ""
                },
                "object-type": "bundle",
                "name": "ChannelPartition",
                "label": []
              },
              {
                "device": {
                  "device-name": "device_test1",
                  "state": "configured",
                  "management-domain": "static-ipv4-device_test1",
                  "part-number": "11971320F1",
                  "base-configuration": "",
                  "model-name": "SDX 6310 16-port 10G OLT",
                  "profile-vector-name": "OLT Config Vector"
                },
                "object-type": "device",
                "name": "device_test1",
                "label": [
                  "label_1"
                ]
              },
              {
                "interface": {
                  "device-name": "rooted-device",
                  "interface-type": "hundred-gigabit-ethernet",
                  "number-of-lower-layer-interfaces": 0,
                  "interface-name": "interface_1",
                  "state": "deployed",
                  "bundle-name": "ChannelPartition",
                  "subtended-device-name": "",
                  "profile-vector-name": "ONU Eth UNI Profile Vector",
                  "lower-layer-interfaces": [
                    "hundred-gigabit-ethernet 0/1"
                  ],
                  "interface-id": "123"
                },
                "object-type": "interface",
                "name": "interface_1",
                "label": []
              },
              {
                "device": {
                  "device-name": "rooted-device",
                  "state": "activated",
                  "management-domain": "",
                  "part-number": "GENERIC",
                  "base-configuration": "",
                  "model-name": "Generic Device"
                },
                "object-type": "device",
                "name": "rooted-device",
                "label": [
                  "label_2"
                ]
              }
            ]
          },
          "type": "search-advance"
        }
      },
      "AdvancedSearchResult": {
        "title": "AdvancedSearchResult",
        "required": [
          "count",
          "cursor",
          "matching-object"
        ],
        "type": "object",
        "properties": {
          "count": {
            "type": "integer",
            "format": "int32"
          },
          "cursor": {
            "type": "integer",
            "format": "int32"
          },
          "matching-object": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/MatchingObject7"
            },
            "description": ""
          }
        },
        "example": {
          "count": 4,
          "cursor": 25,
          "matching-object": [
            {
              "bundle": {
                "bundle-id": "4391/1",
                "state": "activated",
                "bundle-name": "ChannelPartition",
                "bundle-type": "channel-partition",
                "profile-vector-name": ""
              },
              "object-type": "bundle",
              "name": "ChannelPartition",
              "label": []
            },
            {
              "device": {
                "device-name": "device_test1",
                "state": "configured",
                "management-domain": "static-ipv4-device_test1",
                "part-number": "11971320F1",
                "base-configuration": "",
                "model-name": "SDX 6310 16-port 10G OLT",
                "profile-vector-name": "OLT Config Vector"
              },
              "object-type": "device",
              "name": "device_test1",
              "label": [
                "label_1"
              ]
            },
            {
              "interface": {
                "device-name": "rooted-device",
                "interface-type": "hundred-gigabit-ethernet",
                "number-of-lower-layer-interfaces": 0,
                "interface-name": "interface_1",
                "state": "deployed",
                "bundle-name": "ChannelPartition",
                "subtended-device-name": "",
                "profile-vector-name": "ONU Eth UNI Profile Vector",
                "lower-layer-interfaces": [
                  "hundred-gigabit-ethernet 0/1"
                ],
                "interface-id": "123"
              },
              "object-type": "interface",
              "name": "interface_1",
              "label": []
            },
            {
              "device": {
                "device-name": "rooted-device",
                "state": "activated",
                "management-domain": "",
                "part-number": "GENERIC",
                "base-configuration": "",
                "model-name": "Generic Device"
              },
              "object-type": "device",
              "name": "rooted-device",
              "label": [
                "label_2"
              ]
            }
          ]
        }
      },
      "MatchingObject7": {
        "title": "MatchingObject7",
        "required": [
          "object-type",
          "name",
          "label"
        ],
        "type": "object",
        "properties": {
          "bundle": {
            "$ref": "#/components/schemas/Bundle"
          },
          "object-type": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "label": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "device": {
            "$ref": "#/components/schemas/Device2"
          },
          "interface": {
            "$ref": "#/components/schemas/Interface"
          }
        },
        "example": {
          "bundle": {
            "bundle-id": "4391/1",
            "state": "activated",
            "bundle-name": "ChannelPartition",
            "bundle-type": "channel-partition",
            "profile-vector-name": ""
          },
          "object-type": "bundle",
          "name": "ChannelPartition",
          "label": []
        }
      },
      "Device2": {
        "title": "Device2",
        "required": [
          "device-name",
          "state",
          "management-domain",
          "part-number",
          "base-configuration",
          "model-name"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "management-domain": {
            "type": "string"
          },
          "part-number": {
            "type": "string"
          },
          "base-configuration": {
            "type": "string"
          },
          "model-name": {
            "type": "string"
          },
          "profile-vector-name": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "device_test1",
          "state": "configured",
          "management-domain": "static-ipv4-device_test1",
          "part-number": "11971320F1",
          "base-configuration": "",
          "model-name": "SDX 6310 16-port 10G OLT",
          "profile-vector-name": "OLT Config Vector"
        }
      },
      "AdvancedSearchTerms-SearchDeviceFromFilterBy": {
        "title": "AdvancedSearchTerms-SearchDeviceFromFilterBy",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output275"
          }
        },
        "example": {
          "output": {
            "advanced-search-result": {
              "count": 1,
              "cursor": 25,
              "matching-object": [
                {
                  "device": {
                    "device-name": "device_test1",
                    "state": "configured",
                    "management-domain": "static-ipv4-device_test1",
                    "part-number": "11971320F1",
                    "base-configuration": "",
                    "model-name": "SDX 6310 16-port 10G OLT",
                    "profile-vector-name": "OLT Config Vector"
                  },
                  "object-type": "device",
                  "name": "device_test1",
                  "label": [
                    "label_1"
                  ]
                }
              ]
            },
            "type": "search-advance"
          }
        }
      },
      "Output275": {
        "title": "Output275",
        "required": [
          "advanced-search-result",
          "type"
        ],
        "type": "object",
        "properties": {
          "advanced-search-result": {
            "$ref": "#/components/schemas/AdvancedSearchResult1"
          },
          "type": {
            "type": "string"
          }
        },
        "example": {
          "advanced-search-result": {
            "count": 1,
            "cursor": 25,
            "matching-object": [
              {
                "device": {
                  "device-name": "device_test1",
                  "state": "configured",
                  "management-domain": "static-ipv4-device_test1",
                  "part-number": "11971320F1",
                  "base-configuration": "",
                  "model-name": "SDX 6310 16-port 10G OLT",
                  "profile-vector-name": "OLT Config Vector"
                },
                "object-type": "device",
                "name": "device_test1",
                "label": [
                  "label_1"
                ]
              }
            ]
          },
          "type": "search-advance"
        }
      },
      "AdvancedSearchResult1": {
        "title": "AdvancedSearchResult1",
        "required": [
          "count",
          "cursor",
          "matching-object"
        ],
        "type": "object",
        "properties": {
          "count": {
            "type": "integer",
            "format": "int32"
          },
          "cursor": {
            "type": "integer",
            "format": "int32"
          },
          "matching-object": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/MatchingObject8"
            },
            "description": ""
          }
        },
        "example": {
          "count": 1,
          "cursor": 25,
          "matching-object": [
            {
              "device": {
                "device-name": "device_test1",
                "state": "configured",
                "management-domain": "static-ipv4-device_test1",
                "part-number": "11971320F1",
                "base-configuration": "",
                "model-name": "SDX 6310 16-port 10G OLT",
                "profile-vector-name": "OLT Config Vector"
              },
              "object-type": "device",
              "name": "device_test1",
              "label": [
                "label_1"
              ]
            }
          ]
        }
      },
      "MatchingObject8": {
        "title": "MatchingObject8",
        "required": [
          "device",
          "object-type",
          "name",
          "label"
        ],
        "type": "object",
        "properties": {
          "device": {
            "$ref": "#/components/schemas/Device"
          },
          "object-type": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "label": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "device": {
            "device-name": "device_test1",
            "state": "configured",
            "management-domain": "static-ipv4-device_test1",
            "part-number": "11971320F1",
            "base-configuration": "",
            "model-name": "SDX 6310 16-port 10G OLT",
            "profile-vector-name": "OLT Config Vector"
          },
          "object-type": "device",
          "name": "device_test1",
          "label": [
            "label_1"
          ]
        }
      },
      "AdvancedSearchTerms-LabelConditionMatchAny": {
        "title": "AdvancedSearchTerms-LabelConditionMatchAny",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output275"
          }
        },
        "example": {
          "output": {
            "advanced-search-result": {
              "count": 1,
              "cursor": 25,
              "matching-object": [
                {
                  "device": {
                    "device-name": "device_test1",
                    "state": "configured",
                    "management-domain": "static-ipv4-device_test1",
                    "part-number": "11971320F1",
                    "base-configuration": "",
                    "model-name": "SDX 6310 16-port 10G OLT",
                    "profile-vector-name": "OLT Config Vector"
                  },
                  "object-type": "device",
                  "name": "device_test1",
                  "label": [
                    "label_1"
                  ]
                }
              ]
            },
            "type": "search-advance"
          }
        }
      },
      "AdvancedSearchTerms-LabelConditionMatchAll": {
        "title": "AdvancedSearchTerms-LabelConditionMatchAll",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output277"
          }
        },
        "example": {
          "output": {
            "advanced-search-result": {
              "count": 0,
              "cursor": 25,
              "matching-object": []
            },
            "type": "search-advance"
          }
        }
      },
      "Output277": {
        "title": "Output277",
        "required": [
          "advanced-search-result",
          "type"
        ],
        "type": "object",
        "properties": {
          "advanced-search-result": {
            "$ref": "#/components/schemas/AdvancedSearchResult3"
          },
          "type": {
            "type": "string"
          }
        },
        "example": {
          "advanced-search-result": {
            "count": 0,
            "cursor": 25,
            "matching-object": []
          },
          "type": "search-advance"
        }
      },
      "AdvancedSearchResult3": {
        "title": "AdvancedSearchResult3",
        "required": [
          "count",
          "cursor",
          "matching-object"
        ],
        "type": "object",
        "properties": {
          "count": {
            "type": "integer",
            "format": "int32"
          },
          "cursor": {
            "type": "integer",
            "format": "int32"
          },
          "matching-object": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "count": 0,
          "cursor": 25,
          "matching-object": []
        }
      },
      "AdvancedSearchTerms-MultipleObjectsFromFilterBy": {
        "title": "AdvancedSearchTerms-MultipleObjectsFromFilterBy",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output275"
          }
        },
        "example": {
          "output": {
            "advanced-search-result": {
              "count": 1,
              "cursor": 25,
              "matching-object": [
                {
                  "device": {
                    "device-name": "device_test1",
                    "state": "configured",
                    "management-domain": "static-ipv4-device_test1",
                    "part-number": "11971320F1",
                    "base-configuration": "",
                    "model-name": "SDX 6310 16-port 10G OLT",
                    "profile-vector-name": "OLT Config Vector"
                  },
                  "object-type": "device",
                  "name": "device_test1",
                  "label": [
                    "label_1"
                  ]
                }
              ]
            },
            "type": "search-advance"
          }
        }
      },
      "AdvancedSearchTerms-IncorrectDeviceName": {
        "title": "AdvancedSearchTerms-IncorrectDeviceName",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output277"
          }
        },
        "example": {
          "output": {
            "advanced-search-result": {
              "count": 0,
              "cursor": 25,
              "matching-object": []
            },
            "type": "search-advance"
          }
        }
      },
      "AdvancedSearchTerms-IncorrectObjectFromFilterBy": {
        "title": "AdvancedSearchTerms-IncorrectObjectFromFilterBy",
        "required": [
          "output"
        ],
        "type": "object",
        "properties": {
          "output": {
            "$ref": "#/components/schemas/Output277"
          }
        },
        "example": {
          "output": {
            "advanced-search-result": {
              "count": 0,
              "cursor": 25,
              "matching-object": []
            },
            "type": "search-advance"
          }
        }
      },
      "DataFilterByPayload-BundleRequest": {
        "title": "DataFilterByPayload-BundleRequest",
        "required": [
          "bundle-name",
          "bundle-type"
        ],
        "type": "object",
        "properties": {
          "bundle-name": {
            "type": "string"
          },
          "bundle-type": {
            "type": "string"
          }
        },
        "example": {
          "bundle-name": "{{interfaces-bundle-name}}",
          "bundle-type": "Generic Bundle"
        }
      },
      "DataFilterByPayload-Bundle-GetFilteredData": {
        "title": "DataFilterByPayload-Bundle-GetFilteredData",
        "required": [
          "bundle"
        ],
        "type": "object",
        "properties": {
          "bundle": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Bundle"
            },
            "description": ""
          }
        },
        "example": {
          "bundle": [
            {
              "state": "deployed",
              "bundle-name": "ChannelPartition",
              "bundle-id": "4391/1",
              "profile-vector-name": "",
              "bundle-type": "channel-partition"
            }
          ]
        }
      },
      "DataFilterByPayload-Bundle-IncorrectBundleType": {
        "title": "DataFilterByPayload-Bundle-IncorrectBundleType",
        "required": [
          "bundle"
        ],
        "type": "object",
        "properties": {
          "bundle": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "bundle": []
        }
      },
      "DataFilterByPayload-Bundle-IncorrectPayload": {
        "title": "DataFilterByPayload-Bundle-IncorrectPayload",
        "required": [
          "bundle"
        ],
        "type": "object",
        "properties": {
          "bundle": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "bundle": []
        }
      },
      "DataFilterByPayload-InterfaceRequest": {
        "title": "DataFilterByPayload-InterfaceRequest",
        "required": [
          "interface-name",
          "state"
        ],
        "type": "object",
        "properties": {
          "interface-name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          }
        },
        "example": {
          "interface-name": "{{devices-int-name}}",
          "state": "activated"
        }
      },
      "DataFilterByPayload-Interface-GetFilteredDatum": {
        "title": "DataFilterByPayload-Interface-GetFilteredDatum",
        "required": [
          "device-name",
          "interface-type",
          "state",
          "interface-name",
          "bundle-name",
          "interface-id",
          "subtended-device-name",
          "lower-layer-interfaces",
          "profile-vector-name",
          "number-of-lower-layer-interfaces"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "interface-type": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "interface-name": {
            "type": "string"
          },
          "bundle-name": {
            "type": "string"
          },
          "interface-id": {
            "type": "string"
          },
          "subtended-device-name": {
            "type": "string"
          },
          "lower-layer-interfaces": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "profile-vector-name": {
            "type": "string"
          },
          "number-of-lower-layer-interfaces": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "device-name": "rooted-device",
          "interface-type": "hundred-gigabit-ethernet",
          "state": "activated",
          "interface-name": "interface_1",
          "bundle-name": "ChannelPartition",
          "interface-id": "123",
          "subtended-device-name": "",
          "lower-layer-interfaces": [
            "hundred-gigabit-ethernet 0/1"
          ],
          "profile-vector-name": "ONU Eth UNI Profile Vector",
          "number-of-lower-layer-interfaces": 0
        }
      },
      "DataFilterByPayload-DeviceRequest": {
        "title": "DataFilterByPayload-DeviceRequest",
        "required": [
          "device-name",
          "state",
          "model-name"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "model-name": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "device_test1",
          "state": "configured",
          "model-name": "Generic Device"
        }
      },
      "DataFilterByPayload-Device-GetFilteredDatum": {
        "title": "DataFilterByPayload-Device-GetFilteredDatum",
        "required": [
          "device-name",
          "state",
          "management-domain",
          "base-configuration",
          "part-number",
          "profile-vector-name",
          "model-name",
          "credentials-name"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "management-domain": {
            "type": "string"
          },
          "base-configuration": {
            "type": "string"
          },
          "part-number": {
            "type": "string"
          },
          "profile-vector-name": {
            "type": "string"
          },
          "model-name": {
            "type": "string"
          },
          "credentials-name": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "device_test1",
          "state": "configured",
          "management-domain": "static-ipv4-device_test1",
          "base-configuration": "",
          "part-number": "11971320F1",
          "profile-vector-name": "OLT Config Vector",
          "model-name": "SDX 6310 16-port 10G OLT",
          "credentials-name": "pmaa-default"
        }
      },
      "DataFilter-equaloperatorRequest": {
        "title": "DataFilter-equaloperatorRequest",
        "required": [
          "device-name#equals"
        ],
        "type": "object",
        "properties": {
          "device-name#equals": {
            "type": "string"
          }
        },
        "example": {
          "device-name#equals": "device_test1"
        }
      },
      "DataFilter-equaloperator": {
        "title": "DataFilter-equaloperator",
        "required": [
          "device-name",
          "state",
          "management-domain",
          "base-configuration",
          "part-number",
          "metadata",
          "profile-vector-name",
          "model-name",
          "credentials-name"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "management-domain": {
            "type": "string"
          },
          "base-configuration": {
            "type": "string"
          },
          "part-number": {
            "type": "string"
          },
          "metadata": {
            "$ref": "#/components/schemas/Metadata5"
          },
          "profile-vector-name": {
            "type": "string"
          },
          "model-name": {
            "type": "string"
          },
          "credentials-name": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "OLT-1",
          "state": "activated",
          "management-domain": "static-ipv4-OLT-1",
          "base-configuration": "",
          "part-number": "11971305Fx",
          "metadata": {
            "event-config": {
              "event": []
            },
            "inventory": {}
          },
          "profile-vector-name": "OLT Config Vector",
          "model-name": "SDX 6010 16-port GPON OLT",
          "credentials-name": "OLT Credentials"
        }
      },
      "Metadata5": {
        "title": "Metadata5",
        "required": [
          "event-config",
          "inventory"
        ],
        "type": "object",
        "properties": {
          "event-config": {
            "$ref": "#/components/schemas/EventConfig"
          },
          "inventory": {
            "type": "object"
          }
        },
        "example": {
          "event-config": {
            "event": []
          },
          "inventory": {}
        }
      },
      "DataFilter-substringoperatorRequest": {
        "title": "DataFilter-substringoperatorRequest",
        "required": [
          "device-name#substring"
        ],
        "type": "object",
        "properties": {
          "device-name#substring": {
            "type": "string"
          }
        },
        "example": {
          "device-name#substring": "device"
        }
      },
      "DataFilter-substringoperatorondevicemanagement-domain": {
        "title": "DataFilter-substringoperatorondevicemanagement-domain",
        "required": [
          "device-name",
          "state",
          "management-domain",
          "base-configuration",
          "part-number",
          "metadata",
          "profile-vector-name",
          "model-name",
          "credentials-name"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "management-domain": {
            "type": "string"
          },
          "base-configuration": {
            "type": "string"
          },
          "part-number": {
            "type": "string"
          },
          "metadata": {
            "$ref": "#/components/schemas/Metadata5"
          },
          "profile-vector-name": {
            "type": "string"
          },
          "model-name": {
            "type": "string"
          },
          "credentials-name": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "OLT-1",
          "state": "activated",
          "management-domain": "static-ipv4-OLT-1",
          "base-configuration": "",
          "part-number": "11971305Fx",
          "metadata": {
            "event-config": {
              "event": []
            },
            "inventory": {}
          },
          "profile-vector-name": "OLT Config Vector",
          "model-name": "SDX 6010 16-port GPON OLT",
          "credentials-name": "OLT Credentials"
        }
      },
      "DataFilter-substringoperatorondevicename": {
        "title": "DataFilter-substringoperatorondevicename",
        "required": [
          "device-name",
          "state",
          "management-domain",
          "base-configuration",
          "part-number",
          "model-name"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "management-domain": {
            "type": "string"
          },
          "base-configuration": {
            "type": "string"
          },
          "part-number": {
            "type": "string"
          },
          "profile-vector-name": {
            "type": "string"
          },
          "model-name": {
            "type": "string"
          },
          "credentials-name": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "device-1",
          "state": "configured",
          "management-domain": "",
          "base-configuration": "",
          "part-number": "GENERIC",
          "profile-vector-name": "OLT Config Vector",
          "model-name": "Generic Device",
          "credentials-name": "Device Credential"
        }
      },
      "DataFilter-containsoperatorRequest": {
        "title": "DataFilter-containsoperatorRequest",
        "required": [
          "metadata"
        ],
        "type": "object",
        "properties": {
          "metadata": {
            "$ref": "#/components/schemas/Metadata7"
          }
        },
        "example": {
          "metadata": {
            "device-scoped-interface-name#contains": "channel-termination 0/2"
          }
        }
      },
      "Metadata7": {
        "title": "Metadata7",
        "required": [
          "device-scoped-interface-name#contains"
        ],
        "type": "object",
        "properties": {
          "device-scoped-interface-name#contains": {
            "type": "string"
          }
        },
        "example": {
          "device-scoped-interface-name#contains": "channel-termination 0/2"
        }
      },
      "DataFilter-containsoperator": {
        "title": "DataFilter-containsoperator",
        "required": [
          "subtended-device-names",
          "device-name",
          "interface-type",
          "state",
          "interface-name",
          "bundle-name",
          "interface-id",
          "lower-layer-interfaces",
          "metadata",
          "profile-vector-name",
          "number-of-lower-layer-interfaces"
        ],
        "type": "object",
        "properties": {
          "subtended-device-names": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "device-name": {
            "type": "string"
          },
          "interface-type": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "interface-name": {
            "type": "string"
          },
          "bundle-name": {
            "type": "string"
          },
          "interface-id": {
            "type": "string"
          },
          "lower-layer-interfaces": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "metadata": {
            "$ref": "#/components/schemas/Metadata8"
          },
          "profile-vector-name": {
            "type": "string"
          },
          "number-of-lower-layer-interfaces": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "subtended-device-names": [
            "ONU-0"
          ],
          "device-name": "OLT-1",
          "interface-type": "gpon",
          "state": "activated",
          "interface-name": "XPON2-OLT-1",
          "bundle-name": "CP-4391-1",
          "interface-id": "gpon 0/2",
          "lower-layer-interfaces": [
            "channel 15"
          ],
          "metadata": {
            "device-scoped-interface-name": [
              "channel-pair 4391.1.15",
              "channel-termination 0/2"
            ]
          },
          "profile-vector-name": "XPON Profile Vector",
          "number-of-lower-layer-interfaces": 1
        }
      },
      "Metadata8": {
        "title": "Metadata8",
        "required": [
          "device-scoped-interface-name"
        ],
        "type": "object",
        "properties": {
          "device-scoped-interface-name": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "device-scoped-interface-name": [
            "channel-pair 4391.1.15",
            "channel-termination 0/2"
          ]
        }
      },
      "DataFilter-inoperatorRequest": {
        "title": "DataFilter-inoperatorRequest",
        "required": [
          "device-name#in"
        ],
        "type": "object",
        "properties": {
          "device-name#in": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          }
        },
        "example": {
          "device-name#in": [
            "device_test1",
            "rooted-device"
          ]
        }
      },
      "DataFilter-inoperator": {
        "title": "DataFilter-inoperator",
        "required": [
          "subtended-device-names",
          "device-name",
          "interface-type",
          "state",
          "interface-name",
          "bundle-name",
          "interface-id",
          "lower-layer-interfaces",
          "metadata",
          "profile-vector-name",
          "number-of-lower-layer-interfaces"
        ],
        "type": "object",
        "properties": {
          "subtended-device-names": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "device-name": {
            "type": "string"
          },
          "interface-type": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "interface-name": {
            "type": "string"
          },
          "bundle-name": {
            "type": "string"
          },
          "interface-id": {
            "type": "string"
          },
          "lower-layer-interfaces": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "metadata": {
            "$ref": "#/components/schemas/Metadata8"
          },
          "profile-vector-name": {
            "type": "string"
          },
          "number-of-lower-layer-interfaces": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "subtended-device-names": [
            "ONU-0"
          ],
          "device-name": "OLT-1",
          "interface-type": "gpon",
          "state": "activated",
          "interface-name": "XPON2-OLT-1",
          "bundle-name": "CP-4391-1",
          "interface-id": "gpon 0/2",
          "lower-layer-interfaces": [
            "channel 15"
          ],
          "metadata": {
            "device-scoped-interface-name": [
              "channel-pair 4391.1.15",
              "channel-termination 0/2"
            ]
          },
          "profile-vector-name": "XPON Profile Vector",
          "number-of-lower-layer-interfaces": 1
        }
      },
      "DataFilter-likeoperatorRequest": {
        "title": "DataFilter-likeoperatorRequest",
        "required": [
          "vector#like"
        ],
        "type": "object",
        "properties": {
          "vector#like": {
            "$ref": "#/components/schemas/VectorLike"
          }
        },
        "example": {
          "vector#like": {
            "keyword": "bundle",
            "threshold": 0.1,
            "target": "score",
            "field": "name"
          }
        }
      },
      "VectorLike": {
        "title": "VectorLike",
        "required": [
          "keyword",
          "threshold",
          "target",
          "field"
        ],
        "type": "object",
        "properties": {
          "keyword": {
            "type": "string"
          },
          "threshold": {
            "type": "number"
          },
          "target": {
            "type": "string"
          },
          "field": {
            "type": "string"
          }
        },
        "example": {
          "keyword": "bundle",
          "threshold": 0.1,
          "target": "score",
          "field": "name"
        }
      },
      "DataFilter-likeoperator": {
        "title": "DataFilter-likeoperator",
        "required": [
          "vectors"
        ],
        "type": "object",
        "properties": {
          "vectors": {
            "$ref": "#/components/schemas/Vectors1"
          }
        },
        "example": {
          "vectors": {
            "vector": [
              {
                "name": "SDX Service1 100M PPPoE",
                "state": "activated",
                "score": 0.30124223602484473,
                "profile": [
                  {
                    "name": "SDX Service1 Group PPPoE",
                    "type": "grouping-profile-type"
                  }
                ],
                "type": "service"
              },
              {
                "name": "SDX Service2 100M PPPoE",
                "state": "activated",
                "score": 0.30124223602484473,
                "profile": [
                  {
                    "name": "SDX Service2 Group PPPoE",
                    "type": "grouping-profile-type"
                  }
                ],
                "type": "service"
              },
              {
                "name": "SDX Service2 100M PPPoE and ANCP",
                "state": "activated",
                "score": 0.9598214285714286,
                "profile": [
                  {
                    "name": "SDX Service2 Group PPPoE and ANCP",
                    "type": "grouping-profile-type"
                  }
                ],
                "type": "service"
              },
              {
                "name": "SDX Service3 500M PPPoE",
                "state": "activated",
                "score": 0.30124223602484473,
                "profile": [
                  {
                    "name": "SDX Service3 Group PPPoE",
                    "type": "grouping-profile-type"
                  }
                ],
                "type": "service"
              },
              {
                "name": "SDX Service4 1G PPPoE",
                "state": "activated",
                "score": 0.30272108843537415,
                "profile": [
                  {
                    "name": "SDX Service4 Group PPPoE",
                    "type": "grouping-profile-type"
                  }
                ],
                "type": "service"
              }
            ]
          }
        }
      },
      "Vectors1": {
        "title": "Vectors1",
        "required": [
          "vector"
        ],
        "type": "object",
        "properties": {
          "vector": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Vector4"
            },
            "description": ""
          }
        },
        "example": {
          "vector": [
            {
              "name": "SDX Service1 100M PPPoE",
              "state": "activated",
              "score": 0.30124223602484473,
              "profile": [
                {
                  "name": "SDX Service1 Group PPPoE",
                  "type": "grouping-profile-type"
                }
              ],
              "type": "service"
            },
            {
              "name": "SDX Service2 100M PPPoE",
              "state": "activated",
              "score": 0.30124223602484473,
              "profile": [
                {
                  "name": "SDX Service2 Group PPPoE",
                  "type": "grouping-profile-type"
                }
              ],
              "type": "service"
            },
            {
              "name": "SDX Service2 100M PPPoE and ANCP",
              "state": "activated",
              "score": 0.9598214285714286,
              "profile": [
                {
                  "name": "SDX Service2 Group PPPoE and ANCP",
                  "type": "grouping-profile-type"
                }
              ],
              "type": "service"
            },
            {
              "name": "SDX Service3 500M PPPoE",
              "state": "activated",
              "score": 0.30124223602484473,
              "profile": [
                {
                  "name": "SDX Service3 Group PPPoE",
                  "type": "grouping-profile-type"
                }
              ],
              "type": "service"
            },
            {
              "name": "SDX Service4 1G PPPoE",
              "state": "activated",
              "score": 0.30272108843537415,
              "profile": [
                {
                  "name": "SDX Service4 Group PPPoE",
                  "type": "grouping-profile-type"
                }
              ],
              "type": "service"
            }
          ]
        }
      },
      "Vector4": {
        "title": "Vector4",
        "required": [
          "name",
          "state",
          "score",
          "profile",
          "type"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "score": {
            "type": "number"
          },
          "profile": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Profile"
            },
            "description": ""
          },
          "type": {
            "type": "string"
          }
        },
        "example": {
          "name": "SDX Service1 100M PPPoE",
          "state": "activated",
          "score": 0.30124223602484473,
          "profile": [
            {
              "name": "SDX Service1 Group PPPoE",
              "type": "grouping-profile-type"
            }
          ],
          "type": "service"
        }
      },
      "DataFilter-joinoperatorRequest": {
        "title": "DataFilter-joinoperatorRequest",
        "required": [
          "interface"
        ],
        "type": "object",
        "properties": {
          "interface": {
            "$ref": "#/components/schemas/Interface4"
          }
        },
        "example": {
          "interface": {
            "device#join": {
              "path": "adtran-cloud-platform-devices:devices/device",
              "keys": "device-name"
            },
            "interface-name": "gen-interface-gen-device-00000-uplink"
          }
        }
      },
      "Interface4": {
        "title": "Interface4",
        "required": [
          "device#join",
          "interface-name"
        ],
        "type": "object",
        "properties": {
          "device#join": {
            "$ref": "#/components/schemas/DeviceJoin"
          },
          "interface-name": {
            "type": "string"
          }
        },
        "example": {
          "device#join": {
            "path": "adtran-cloud-platform-devices:devices/device",
            "keys": "device-name"
          },
          "interface-name": "gen-interface-gen-device-00000-uplink"
        }
      },
      "DeviceJoin": {
        "title": "DeviceJoin",
        "required": [
          "path",
          "keys"
        ],
        "type": "object",
        "properties": {
          "path": {
            "type": "string"
          },
          "keys": {
            "type": "string"
          }
        },
        "example": {
          "path": "adtran-cloud-platform-devices:devices/device",
          "keys": "device-name"
        }
      },
      "Getallinterfaceswithparentdevicedata": {
        "title": "Getallinterfaceswithparentdevicedata",
        "required": [
          "interface"
        ],
        "type": "object",
        "properties": {
          "interface": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Interface5"
            },
            "description": ""
          }
        },
        "example": {
          "interface": [
            {
              "device-name": "ONU-0",
              "interface-type": "virtual-ethernet",
              "state": "activated",
              "interface-name": "ONU-0-to-Subscriber",
              "interface-id": "virtual-ethernet 0/1",
              "subtended-device-name": "",
              "lower-layer-interfaces": [],
              "metadata": {
                "device-scoped-interface-name": [
                  "onu-subscr-if-4391.1.0.0.eth.1.phy"
                ]
              },
              "profile-vector-name": "",
              "number-of-lower-layer-interfaces": 1,
              "device": {
                "device-name": "ONU-0",
                "state": "activated",
                "management-domain": "",
                "base-configuration": "",
                "object-parameters": {
                  "serial-number": "ADTN18070FB9",
                  "onu-id": "0"
                },
                "part-number": "1287833F1",
                "metadata": {
                  "event-config": {
                    "event": []
                  },
                  "inventory": {}
                },
                "profile-vector-name": "",
                "model-name": "SDX 611 GPON ONU"
              }
            },
            {
              "device-name": "rooted-device",
              "interface-type": "generic",
              "state": "activated",
              "interface-name": "Root-to-OLT-1",
              "interface-id": "Lag-1",
              "subtended-device-name": "OLT-1",
              "lower-layer-interfaces": [],
              "profile-vector-name": "",
              "number-of-lower-layer-interfaces": 0,
              "device": {
                "device-name": "rooted-device",
                "state": "activated",
                "management-domain": "",
                "base-configuration": "",
                "part-number": "GENERIC",
                "model-name": "Generic Device"
              }
            },
            {
              "device-name": "rooted-device",
              "interface-type": "generic",
              "state": "activated",
              "interface-name": "Root-to-OLT-11",
              "interface-id": "Lag-11",
              "subtended-device-name": "OLT-11",
              "lower-layer-interfaces": [],
              "profile-vector-name": "",
              "number-of-lower-layer-interfaces": 0,
              "device": {
                "device-name": "rooted-device",
                "state": "activated",
                "management-domain": "",
                "base-configuration": "",
                "part-number": "GENERIC",
                "model-name": "Generic Device"
              }
            },
            {
              "subtended-device-names": [
                "ONU-0"
              ],
              "device-name": "OLT-1",
              "interface-type": "gpon",
              "state": "activated",
              "interface-name": "XPON2-OLT-1",
              "bundle-name": "CP-4391-1",
              "interface-id": "gpon 0/2",
              "lower-layer-interfaces": [
                "channel 15"
              ],
              "metadata": {
                "device-scoped-interface-name": [
                  "channel-pair 4391.1.15",
                  "channel-termination 0/2"
                ]
              },
              "profile-vector-name": "XPON Profile Vector",
              "number-of-lower-layer-interfaces": 1,
              "device": {
                "device-name": "OLT-1",
                "state": "activated",
                "management-domain": "static-ipv4-OLT-1",
                "base-configuration": "",
                "part-number": "11971305Fx",
                "metadata": {
                  "event-config": {
                    "event": []
                  },
                  "inventory": {}
                },
                "profile-vector-name": "OLT Config Vector",
                "model-name": "SDX 6010 16-port GPON OLT",
                "credentials-name": "OLT Credentials"
              }
            },
            {
              "subtended-device-names": [
                "ONU-0"
              ],
              "device-name": "OLT-11",
              "interface-type": "gpon",
              "state": "activated",
              "interface-name": "XPON2-OLT-11",
              "bundle-name": "CP-4391-2",
              "interface-id": "gpon 0/2",
              "lower-layer-interfaces": [
                "channel 15"
              ],
              "metadata": {
                "device-scoped-interface-name": [
                  "channel-pair 4391.2.15",
                  "channel-termination 0/2"
                ]
              },
              "profile-vector-name": "XPON Profile Vector",
              "number-of-lower-layer-interfaces": 1,
              "device": {
                "device-name": "OLT-11",
                "state": "activated",
                "management-domain": "static-ipv4-OLT-11",
                "base-configuration": "",
                "part-number": "11971305Fx",
                "metadata": {
                  "event-config": {
                    "event": []
                  },
                  "inventory": {}
                },
                "profile-vector-name": "OLT Config Vector",
                "model-name": "SDX 6010 16-port GPON OLT",
                "credentials-name": "OLT Credentials"
              }
            }
          ]
        }
      },
      "Interface5": {
        "title": "Interface5",
        "required": [
          "device-name",
          "interface-type",
          "state",
          "interface-name",
          "interface-id",
          "lower-layer-interfaces",
          "profile-vector-name",
          "number-of-lower-layer-interfaces",
          "device"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "interface-type": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "interface-name": {
            "type": "string"
          },
          "interface-id": {
            "type": "string"
          },
          "subtended-device-name": {
            "type": "string"
          },
          "lower-layer-interfaces": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "metadata": {
            "$ref": "#/components/schemas/Metadata8"
          },
          "profile-vector-name": {
            "type": "string"
          },
          "number-of-lower-layer-interfaces": {
            "type": "integer",
            "format": "int32"
          },
          "device": {
            "$ref": "#/components/schemas/Device6"
          },
          "subtended-device-names": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "bundle-name": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "ONU-0",
          "interface-type": "virtual-ethernet",
          "state": "activated",
          "interface-name": "ONU-0-to-Subscriber",
          "interface-id": "virtual-ethernet 0/1",
          "subtended-device-name": "",
          "lower-layer-interfaces": [],
          "metadata": {
            "device-scoped-interface-name": [
              "onu-subscr-if-4391.1.0.0.eth.1.phy"
            ]
          },
          "profile-vector-name": "",
          "number-of-lower-layer-interfaces": 1,
          "device": {
            "device-name": "ONU-0",
            "state": "activated",
            "management-domain": "",
            "base-configuration": "",
            "object-parameters": {
              "serial-number": "ADTN18070FB9",
              "onu-id": "0"
            },
            "part-number": "1287833F1",
            "metadata": {
              "event-config": {
                "event": []
              },
              "inventory": {}
            },
            "profile-vector-name": "",
            "model-name": "SDX 611 GPON ONU"
          }
        }
      },
      "Device6": {
        "title": "Device6",
        "required": [
          "device-name",
          "state",
          "management-domain",
          "base-configuration",
          "part-number",
          "model-name"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "management-domain": {
            "type": "string"
          },
          "base-configuration": {
            "type": "string"
          },
          "object-parameters": {
            "$ref": "#/components/schemas/ObjectParameters"
          },
          "part-number": {
            "type": "string"
          },
          "metadata": {
            "$ref": "#/components/schemas/Metadata5"
          },
          "profile-vector-name": {
            "type": "string"
          },
          "model-name": {
            "type": "string"
          },
          "credentials-name": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "ONU-0",
          "state": "activated",
          "management-domain": "",
          "base-configuration": "",
          "object-parameters": {
            "serial-number": "ADTN18070FB9",
            "onu-id": "0"
          },
          "part-number": "1287833F1",
          "metadata": {
            "event-config": {
              "event": []
            },
            "inventory": {}
          },
          "profile-vector-name": "",
          "model-name": "SDX 611 GPON ONU"
        }
      },
      "ObjectParameters": {
        "title": "ObjectParameters",
        "required": [
          "serial-number",
          "onu-id"
        ],
        "type": "object",
        "properties": {
          "serial-number": {
            "type": "string"
          },
          "onu-id": {
            "type": "string"
          }
        },
        "example": {
          "serial-number": "ADTN18070FB9",
          "onu-id": "0"
        }
      },
      "Filteroninterface-nameandjoinparentdevicedata": {
        "title": "Filteroninterface-nameandjoinparentdevicedata",
        "required": [
          "interface"
        ],
        "type": "object",
        "properties": {
          "interface": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Interface6"
            },
            "description": ""
          }
        },
        "example": {
          "interface": [
            {
              "device-name": "ONU-0",
              "interface-type": "virtual-ethernet",
              "state": "activated",
              "interface-name": "ONU-0-to-Subscriber",
              "interface-id": "virtual-ethernet 0/1",
              "subtended-device-name": "",
              "lower-layer-interfaces": [],
              "metadata": {
                "device-scoped-interface-name": [
                  "onu-subscr-if-4391.1.0.0.eth.1.phy"
                ]
              },
              "profile-vector-name": "",
              "number-of-lower-layer-interfaces": 1,
              "device": {
                "device-name": "ONU-0",
                "state": "activated",
                "management-domain": "",
                "base-configuration": "",
                "object-parameters": {
                  "serial-number": "ADTN18070FB9",
                  "onu-id": "0"
                },
                "part-number": "1287833F1",
                "metadata": {
                  "event-config": {
                    "event": []
                  },
                  "inventory": {}
                },
                "profile-vector-name": "",
                "model-name": "SDX 611 GPON ONU"
              }
            }
          ]
        }
      },
      "Interface6": {
        "title": "Interface6",
        "required": [
          "device-name",
          "interface-type",
          "state",
          "interface-name",
          "interface-id",
          "subtended-device-name",
          "lower-layer-interfaces",
          "metadata",
          "profile-vector-name",
          "number-of-lower-layer-interfaces",
          "device"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "interface-type": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "interface-name": {
            "type": "string"
          },
          "interface-id": {
            "type": "string"
          },
          "subtended-device-name": {
            "type": "string"
          },
          "lower-layer-interfaces": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "metadata": {
            "$ref": "#/components/schemas/Metadata8"
          },
          "profile-vector-name": {
            "type": "string"
          },
          "number-of-lower-layer-interfaces": {
            "type": "integer",
            "format": "int32"
          },
          "device": {
            "$ref": "#/components/schemas/Device7"
          }
        },
        "example": {
          "device-name": "ONU-0",
          "interface-type": "virtual-ethernet",
          "state": "activated",
          "interface-name": "ONU-0-to-Subscriber",
          "interface-id": "virtual-ethernet 0/1",
          "subtended-device-name": "",
          "lower-layer-interfaces": [],
          "metadata": {
            "device-scoped-interface-name": [
              "onu-subscr-if-4391.1.0.0.eth.1.phy"
            ]
          },
          "profile-vector-name": "",
          "number-of-lower-layer-interfaces": 1,
          "device": {
            "device-name": "ONU-0",
            "state": "activated",
            "management-domain": "",
            "base-configuration": "",
            "object-parameters": {
              "serial-number": "ADTN18070FB9",
              "onu-id": "0"
            },
            "part-number": "1287833F1",
            "metadata": {
              "event-config": {
                "event": []
              },
              "inventory": {}
            },
            "profile-vector-name": "",
            "model-name": "SDX 611 GPON ONU"
          }
        }
      },
      "Device7": {
        "title": "Device7",
        "required": [
          "device-name",
          "state",
          "management-domain",
          "base-configuration",
          "object-parameters",
          "part-number",
          "metadata",
          "profile-vector-name",
          "model-name"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "management-domain": {
            "type": "string"
          },
          "base-configuration": {
            "type": "string"
          },
          "object-parameters": {
            "$ref": "#/components/schemas/ObjectParameters"
          },
          "part-number": {
            "type": "string"
          },
          "metadata": {
            "$ref": "#/components/schemas/Metadata5"
          },
          "profile-vector-name": {
            "type": "string"
          },
          "model-name": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "ONU-0",
          "state": "activated",
          "management-domain": "",
          "base-configuration": "",
          "object-parameters": {
            "serial-number": "ADTN18070FB9",
            "onu-id": "0"
          },
          "part-number": "1287833F1",
          "metadata": {
            "event-config": {
              "event": []
            },
            "inventory": {}
          },
          "profile-vector-name": "",
          "model-name": "SDX 611 GPON ONU"
        }
      },
      "DataFilter-related-byoperatorRequest": {
        "title": "DataFilter-related-byoperatorRequest",
        "required": [
          "interface"
        ],
        "type": "object",
        "properties": {
          "interface": {
            "$ref": "#/components/schemas/Interface7"
          }
        },
        "example": {
          "interface": {
            "filter#related-by": {
              "relationship-path": "adtran-cloud-platform-devices:devices/device",
              "fields": {
                "subtended-device-names": "device-name"
              }
            }
          }
        }
      },
      "Interface7": {
        "title": "Interface7",
        "required": [
          "filter#related-by"
        ],
        "type": "object",
        "properties": {
          "filter#related-by": {
            "$ref": "#/components/schemas/FilterRelatedBy"
          }
        },
        "example": {
          "filter#related-by": {
            "relationship-path": "adtran-cloud-platform-devices:devices/device",
            "fields": {
              "subtended-device-names": "device-name"
            }
          }
        }
      },
      "FilterRelatedBy": {
        "title": "FilterRelatedBy",
        "required": [
          "relationship-path",
          "fields"
        ],
        "type": "object",
        "properties": {
          "relationship-path": {
            "type": "string"
          },
          "fields": {
            "$ref": "#/components/schemas/Fields"
          }
        },
        "example": {
          "relationship-path": "adtran-cloud-platform-devices:devices/device",
          "fields": {
            "subtended-device-names": "device-name"
          }
        }
      },
      "Fields": {
        "title": "Fields",
        "required": [
          "subtended-device-names"
        ],
        "type": "object",
        "properties": {
          "subtended-device-names": {
            "type": "string"
          }
        },
        "example": {
          "subtended-device-names": "device-name"
        }
      },
      "DataFilter-related-byoperator": {
        "title": "DataFilter-related-byoperator",
        "required": [
          "interface"
        ],
        "type": "object",
        "properties": {
          "interface": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Interface8"
            },
            "description": ""
          }
        },
        "example": {
          "interface": [
            {
              "device-name": "ONU-1",
              "interface-type": "virtual-ethernet",
              "state": "activated",
              "interface-name": "ONU-1-to-Subscriber",
              "filter": [],
              "interface-id": "virtual-ethernet 0/1",
              "subtended-device-name": "",
              "lower-layer-interfaces": [],
              "profile-vector-name": "",
              "number-of-lower-layer-interfaces": 1
            },
            {
              "subtended-device-names": [],
              "device-name": "PON-Blade-1",
              "interface-type": "generic",
              "state": "activated",
              "interface-name": "PON-Blade-1-Provider-Interface",
              "filter": [],
              "interface-id": "1",
              "lower-layer-interfaces": [],
              "profile-vector-name": "",
              "number-of-lower-layer-interfaces": 1
            },
            {
              "device-name": "rooted-device",
              "interface-type": "ethernet",
              "state": "activated",
              "interface-name": "Root-to-OLT",
              "filter": [],
              "interface-id": "lag 0/2",
              "subtended-device-name": "PON-Blade-1",
              "lower-layer-interfaces": [],
              "profile-vector-name": "",
              "number-of-lower-layer-interfaces": 0
            },
            {
              "subtended-device-names": [
                "ONU-1"
              ],
              "device-name": "PON-Blade-1",
              "interface-type": "ngpon2",
              "state": "activated",
              "interface-name": "XPON Interface",
              "bundle-name": "ChannelPartition",
              "filter": [],
              "interface-id": "ngpon2 0/2",
              "lower-layer-interfaces": [
                "channel 0"
              ],
              "profile-vector-name": "XPON Profile Vector",
              "number-of-lower-layer-interfaces": 1
            }
          ]
        }
      },
      "Interface8": {
        "title": "Interface8",
        "required": [
          "device-name",
          "interface-type",
          "state",
          "interface-name",
          "filter",
          "interface-id",
          "lower-layer-interfaces",
          "profile-vector-name",
          "number-of-lower-layer-interfaces"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "interface-type": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "interface-name": {
            "type": "string"
          },
          "filter": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "interface-id": {
            "type": "string"
          },
          "subtended-device-name": {
            "type": "string"
          },
          "lower-layer-interfaces": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "profile-vector-name": {
            "type": "string"
          },
          "number-of-lower-layer-interfaces": {
            "type": "integer",
            "format": "int32"
          },
          "subtended-device-names": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "bundle-name": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "ONU-1",
          "interface-type": "virtual-ethernet",
          "state": "activated",
          "interface-name": "ONU-1-to-Subscriber",
          "filter": [],
          "interface-id": "virtual-ethernet 0/1",
          "subtended-device-name": "",
          "lower-layer-interfaces": [],
          "profile-vector-name": "",
          "number-of-lower-layer-interfaces": 1
        }
      },
      "DataFilter-depth-firstoperatorRequest": {
        "title": "DataFilter-depth-firstoperatorRequest",
        "required": [
          "references#depth-first"
        ],
        "type": "object",
        "properties": {
          "references#depth-first": {
            "$ref": "#/components/schemas/ReferencesDepthFirst"
          }
        },
        "example": {
          "references#depth-first": {
            "max-results": 2
          }
        }
      },
      "ReferencesDepthFirst": {
        "title": "ReferencesDepthFirst",
        "required": [
          "max-results"
        ],
        "type": "object",
        "properties": {
          "max-results": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "max-results": 2
        }
      },
      "DepthFirst-MaxResult0": {
        "title": "DepthFirst-MaxResult0",
        "required": [
          "device-name",
          "interface-type",
          "state",
          "interface-name",
          "interface-id",
          "subtended-device-name",
          "references",
          "lower-layer-interfaces",
          "profile-vector-name",
          "number-of-lower-layer-interfaces"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "interface-type": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "interface-name": {
            "type": "string"
          },
          "interface-id": {
            "type": "string"
          },
          "subtended-device-name": {
            "type": "string"
          },
          "references": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "lower-layer-interfaces": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "profile-vector-name": {
            "type": "string"
          },
          "number-of-lower-layer-interfaces": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "device-name": "rooted-device",
          "interface-type": "ethernet",
          "state": "activated",
          "interface-name": "Root-to-OLT",
          "interface-id": "lag 0/2",
          "subtended-device-name": "PON-Blade-1",
          "references": [],
          "lower-layer-interfaces": [],
          "profile-vector-name": "",
          "number-of-lower-layer-interfaces": 0
        }
      },
      "DepthFirst-MaxResult2": {
        "title": "DepthFirst-MaxResult2",
        "required": [
          "device-name",
          "interface-type",
          "state",
          "interface-name",
          "interface-id",
          "subtended-device-name",
          "references",
          "lower-layer-interfaces",
          "profile-vector-name",
          "number-of-lower-layer-interfaces"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "interface-type": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "interface-name": {
            "type": "string"
          },
          "interface-id": {
            "type": "string"
          },
          "subtended-device-name": {
            "type": "string"
          },
          "references": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/References2"
            },
            "description": ""
          },
          "lower-layer-interfaces": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "profile-vector-name": {
            "type": "string"
          },
          "number-of-lower-layer-interfaces": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "device-name": "rooted-device",
          "interface-type": "ethernet",
          "state": "activated",
          "interface-name": "Root-to-OLT",
          "interface-id": "lag 0/2",
          "subtended-device-name": "PON-Blade-1",
          "references": [
            {
              "device-name": "PON-Blade-1",
              "state": "activated",
              "management-domain": "static-ipv4-PON-Blade-1",
              "base-configuration": "",
              "part-number": "11971320F1",
              "metadata": {
                "event-config": {
                  "event": []
                },
                "inventory": {
                  "software-rev": "not supported",
                  "firmware-rev": "running not applicable"
                },
                "upgrades": {
                  "upgrade": [
                    {
                      "transaction-id": "e25e1b1e-38bb-4c3f-87bf-3439143323a7",
                      "device-name": "PON-Blade-1",
                      "current-software-version": "not supported",
                      "state": "failure",
                      "start-time": "2020-05-13T06:07:18.093245+01:00",
                      "reason": "Warning: upgrade failed! Target version is not defined",
                      "device-status": "Active",
                      "job-name": "PON-Blade-1",
                      "status": "Download Failed",
                      "end-time": "2020-05-13T06:07:19.544155+01:00",
                      "target-software-version": ""
                    }
                  ]
                }
              },
              "profile-vector-name": "OLT Config Vector",
              "model-name": "SDX 6310 16-port 10G OLT",
              "credentials-name": "OLT Credentials",
              "_meta": {
                "path": "adtran-cloud-platform-devices:devices/device=PON-Blade-1",
                "to": "adtran-cloud-platform-devices:devices/device=PON-Blade-1",
                "via": [
                  "subtended-device-name"
                ],
                "from": "adtran-cloud-platform-interfaces:interfaces/interface=Root-to-OLT",
                "depth": 1
              }
            },
            {
              "name": "OLT Config Vector",
              "state": "activated",
              "profile": [
                {
                  "name": "ANCP DSL Topology",
                  "type": "ancp-profile-type"
                },
                {
                  "name": "File Server Profile",
                  "type": "file-transfer-server-profile"
                },
                {
                  "name": "OLT Upgrade Profile Group",
                  "type": "grouping-profile-type"
                },
                {
                  "name": "Offline Provision Profile",
                  "type": "offline-provision-profile-type"
                }
              ],
              "type": "device",
              "_meta": {
                "path": "adtran-cloud-platform-profiles:profiles/vectors/vector=OLT+Config+Vector",
                "to": "adtran-cloud-platform-profiles:profiles/vectors/vector=OLT+Config+Vector",
                "via": [
                  "profile-vector-name"
                ],
                "from": "adtran-cloud-platform-devices:devices/device=PON-Blade-1",
                "depth": 2
              }
            }
          ],
          "lower-layer-interfaces": [],
          "profile-vector-name": "",
          "number-of-lower-layer-interfaces": 0
        }
      },
      "References2": {
        "title": "References2",
        "required": [
          "state",
          "_meta"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "management-domain": {
            "type": "string"
          },
          "base-configuration": {
            "type": "string"
          },
          "part-number": {
            "type": "string"
          },
          "metadata": {
            "$ref": "#/components/schemas/Metadata14"
          },
          "profile-vector-name": {
            "type": "string"
          },
          "model-name": {
            "type": "string"
          },
          "credentials-name": {
            "type": "string"
          },
          "_meta": {
            "$ref": "#/components/schemas/Meta"
          },
          "name": {
            "type": "string"
          },
          "profile": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Profile"
            },
            "description": ""
          },
          "type": {
            "type": "string"
          }
        },
        "example": {
          "device-name": "PON-Blade-1",
          "state": "activated",
          "management-domain": "static-ipv4-PON-Blade-1",
          "base-configuration": "",
          "part-number": "11971320F1",
          "metadata": {
            "event-config": {
              "event": []
            },
            "inventory": {
              "software-rev": "not supported",
              "firmware-rev": "running not applicable"
            },
            "upgrades": {
              "upgrade": [
                {
                  "transaction-id": "e25e1b1e-38bb-4c3f-87bf-3439143323a7",
                  "device-name": "PON-Blade-1",
                  "current-software-version": "not supported",
                  "state": "failure",
                  "start-time": "2020-05-13T06:07:18.093245+01:00",
                  "reason": "Warning: upgrade failed! Target version is not defined",
                  "device-status": "Active",
                  "job-name": "PON-Blade-1",
                  "status": "Download Failed",
                  "end-time": "2020-05-13T06:07:19.544155+01:00",
                  "target-software-version": ""
                }
              ]
            }
          },
          "profile-vector-name": "OLT Config Vector",
          "model-name": "SDX 6310 16-port 10G OLT",
          "credentials-name": "OLT Credentials",
          "_meta": {
            "path": "adtran-cloud-platform-devices:devices/device=PON-Blade-1",
            "to": "adtran-cloud-platform-devices:devices/device=PON-Blade-1",
            "via": [
              "subtended-device-name"
            ],
            "from": "adtran-cloud-platform-interfaces:interfaces/interface=Root-to-OLT",
            "depth": 1
          }
        }
      },
      "Metadata14": {
        "title": "Metadata14",
        "required": [
          "event-config",
          "inventory",
          "upgrades"
        ],
        "type": "object",
        "properties": {
          "event-config": {
            "$ref": "#/components/schemas/EventConfig"
          },
          "inventory": {
            "$ref": "#/components/schemas/Inventory"
          },
          "upgrades": {
            "$ref": "#/components/schemas/Upgrades"
          }
        },
        "example": {
          "event-config": {
            "event": []
          },
          "inventory": {
            "software-rev": "not supported",
            "firmware-rev": "running not applicable"
          },
          "upgrades": {
            "upgrade": [
              {
                "transaction-id": "e25e1b1e-38bb-4c3f-87bf-3439143323a7",
                "device-name": "PON-Blade-1",
                "current-software-version": "not supported",
                "state": "failure",
                "start-time": "2020-05-13T06:07:18.093245+01:00",
                "reason": "Warning: upgrade failed! Target version is not defined",
                "device-status": "Active",
                "job-name": "PON-Blade-1",
                "status": "Download Failed",
                "end-time": "2020-05-13T06:07:19.544155+01:00",
                "target-software-version": ""
              }
            ]
          }
        }
      },
      "Inventory": {
        "title": "Inventory",
        "required": [
          "software-rev",
          "firmware-rev"
        ],
        "type": "object",
        "properties": {
          "software-rev": {
            "type": "string"
          },
          "firmware-rev": {
            "type": "string"
          }
        },
        "example": {
          "software-rev": "not supported",
          "firmware-rev": "running not applicable"
        }
      },
      "Upgrades": {
        "title": "Upgrades",
        "required": [
          "upgrade"
        ],
        "type": "object",
        "properties": {
          "upgrade": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Upgrade"
            },
            "description": ""
          }
        },
        "example": {
          "upgrade": [
            {
              "transaction-id": "e25e1b1e-38bb-4c3f-87bf-3439143323a7",
              "device-name": "PON-Blade-1",
              "current-software-version": "not supported",
              "state": "failure",
              "start-time": "2020-05-13T06:07:18.093245+01:00",
              "reason": "Warning: upgrade failed! Target version is not defined",
              "device-status": "Active",
              "job-name": "PON-Blade-1",
              "status": "Download Failed",
              "end-time": "2020-05-13T06:07:19.544155+01:00",
              "target-software-version": ""
            }
          ]
        }
      },
      "Upgrade": {
        "title": "Upgrade",
        "required": [
          "transaction-id",
          "device-name",
          "current-software-version",
          "state",
          "start-time",
          "reason",
          "device-status",
          "job-name",
          "status",
          "end-time",
          "target-software-version"
        ],
        "type": "object",
        "properties": {
          "transaction-id": {
            "type": "string"
          },
          "device-name": {
            "type": "string"
          },
          "current-software-version": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "start-time": {
            "type": "string"
          },
          "reason": {
            "type": "string"
          },
          "device-status": {
            "type": "string"
          },
          "job-name": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "end-time": {
            "type": "string"
          },
          "target-software-version": {
            "type": "string"
          }
        },
        "example": {
          "transaction-id": "e25e1b1e-38bb-4c3f-87bf-3439143323a7",
          "device-name": "PON-Blade-1",
          "current-software-version": "not supported",
          "state": "failure",
          "start-time": "2020-05-13T06:07:18.093245+01:00",
          "reason": "Warning: upgrade failed! Target version is not defined",
          "device-status": "Active",
          "job-name": "PON-Blade-1",
          "status": "Download Failed",
          "end-time": "2020-05-13T06:07:19.544155+01:00",
          "target-software-version": ""
        }
      },
      "Meta": {
        "title": "Meta",
        "required": [
          "path",
          "to",
          "via",
          "from",
          "depth"
        ],
        "type": "object",
        "properties": {
          "path": {
            "type": "string"
          },
          "to": {
            "type": "string"
          },
          "via": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "from": {
            "type": "string"
          },
          "depth": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "path": "adtran-cloud-platform-devices:devices/device=PON-Blade-1",
          "to": "adtran-cloud-platform-devices:devices/device=PON-Blade-1",
          "via": [
            "subtended-device-name"
          ],
          "from": "adtran-cloud-platform-interfaces:interfaces/interface=Root-to-OLT",
          "depth": 1
        }
      },
      "DataFilter-countoperatorRequest": {
        "title": "DataFilter-countoperatorRequest",
        "required": [
          "references#depth-first",
          "references#paginate",
          "references#count"
        ],
        "type": "object",
        "properties": {
          "references#depth-first": {
            "type": "object"
          },
          "references#paginate": {
            "$ref": "#/components/schemas/ReferencesPaginate"
          },
          "references#count": {
            "$ref": "#/components/schemas/ReferencesCount"
          }
        },
        "example": {
          "references#depth-first": {},
          "references#paginate": {
            "from": 0,
            "size": 0,
            "target": "_page"
          },
          "references#count": {
            "target": "count",
            "counter-prefixes": {
              "adtran-cloud-platform-interfaces:interfaces": "interface",
              "adtran-cloud-platform-devices:devices": "device"
            }
          }
        }
      },
      "ReferencesPaginate": {
        "title": "ReferencesPaginate",
        "required": [
          "from",
          "size",
          "target"
        ],
        "type": "object",
        "properties": {
          "from": {
            "type": "integer",
            "format": "int32"
          },
          "size": {
            "type": "integer",
            "format": "int32"
          },
          "target": {
            "type": "string"
          }
        },
        "example": {
          "from": 0,
          "size": 0,
          "target": "_page"
        }
      },
      "ReferencesCount": {
        "title": "ReferencesCount",
        "required": [
          "target",
          "counter-prefixes"
        ],
        "type": "object",
        "properties": {
          "target": {
            "type": "string"
          },
          "counter-prefixes": {
            "$ref": "#/components/schemas/CounterPrefixes"
          }
        },
        "example": {
          "target": "count",
          "counter-prefixes": {
            "adtran-cloud-platform-interfaces:interfaces": "interface",
            "adtran-cloud-platform-devices:devices": "device"
          }
        }
      },
      "CounterPrefixes": {
        "title": "CounterPrefixes",
        "required": [
          "adtran-cloud-platform-interfaces:interfaces",
          "adtran-cloud-platform-devices:devices"
        ],
        "type": "object",
        "properties": {
          "adtran-cloud-platform-interfaces:interfaces": {
            "type": "string"
          },
          "adtran-cloud-platform-devices:devices": {
            "type": "string"
          }
        },
        "example": {
          "adtran-cloud-platform-interfaces:interfaces": "interface",
          "adtran-cloud-platform-devices:devices": "device"
        }
      },
      "DataFilter-countoperator-Root-to-OLTInterface": {
        "title": "DataFilter-countoperator-Root-to-OLTInterface",
        "required": [
          "count",
          "device-name",
          "interface-type",
          "state",
          "interface-name",
          "_page",
          "interface-id",
          "subtended-device-name",
          "references",
          "lower-layer-interfaces",
          "profile-vector-name",
          "number-of-lower-layer-interfaces"
        ],
        "type": "object",
        "properties": {
          "count": {
            "$ref": "#/components/schemas/Count"
          },
          "device-name": {
            "type": "string"
          },
          "interface-type": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "interface-name": {
            "type": "string"
          },
          "_page": {
            "$ref": "#/components/schemas/Page"
          },
          "interface-id": {
            "type": "string"
          },
          "subtended-device-name": {
            "type": "string"
          },
          "references": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "lower-layer-interfaces": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "profile-vector-name": {
            "type": "string"
          },
          "number-of-lower-layer-interfaces": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "count": {
            "interface": 3,
            "device": 2
          },
          "device-name": "rooted-device",
          "interface-type": "ethernet",
          "state": "activated",
          "interface-name": "Root-to-OLT",
          "_page": {
            "from": 0,
            "size": 0,
            "total": 10
          },
          "interface-id": "lag 0/2",
          "subtended-device-name": "PON-Blade-1",
          "references": [],
          "lower-layer-interfaces": [],
          "profile-vector-name": "",
          "number-of-lower-layer-interfaces": 0
        }
      },
      "Count": {
        "title": "Count",
        "required": [
          "interface",
          "device"
        ],
        "type": "object",
        "properties": {
          "interface": {
            "type": "integer",
            "format": "int32"
          },
          "device": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "interface": 3,
          "device": 2
        }
      },
      "Page": {
        "title": "Page",
        "required": [
          "from",
          "size",
          "total"
        ],
        "type": "object",
        "properties": {
          "from": {
            "type": "integer",
            "format": "int32"
          },
          "size": {
            "type": "integer",
            "format": "int32"
          },
          "total": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "from": 0,
          "size": 0,
          "total": 10
        }
      },
      "DataFilter-countoperator-RootedDevice": {
        "title": "DataFilter-countoperator-RootedDevice",
        "required": [
          "count",
          "device-name",
          "state",
          "management-domain",
          "base-configuration",
          "_page",
          "references",
          "part-number",
          "model-name"
        ],
        "type": "object",
        "properties": {
          "count": {
            "$ref": "#/components/schemas/Count"
          },
          "device-name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "management-domain": {
            "type": "string"
          },
          "base-configuration": {
            "type": "string"
          },
          "_page": {
            "$ref": "#/components/schemas/Page"
          },
          "references": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "part-number": {
            "type": "string"
          },
          "model-name": {
            "type": "string"
          }
        },
        "example": {
          "count": {
            "interface": 4,
            "device": 2
          },
          "device-name": "rooted-device",
          "state": "activated",
          "management-domain": "",
          "base-configuration": "",
          "_page": {
            "from": 0,
            "size": 0,
            "total": 11
          },
          "references": [],
          "part-number": "GENERIC",
          "model-name": "Generic Device"
        }
      },
      "DataFilter-firstofoperatorRequest": {
        "title": "DataFilter-firstofoperatorRequest",
        "required": [
          "#firstof"
        ],
        "type": "object",
        "properties": {
          "#firstof": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Firstof"
            },
            "description": ""
          }
        },
        "example": {
          "#firstof": [
            {
              "referenced-objects": {
                "object-type": "device"
              },
              "name": "device-label"
            },
            {}
          ]
        }
      },
      "Firstof": {
        "title": "Firstof",
        "type": "object",
        "properties": {
          "referenced-objects": {
            "$ref": "#/components/schemas/ReferencedObjects3"
          },
          "name": {
            "type": "string"
          }
        },
        "example": {
          "referenced-objects": {
            "object-type": "device"
          },
          "name": "device-label"
        }
      },
      "ReferencedObjects3": {
        "title": "ReferencedObjects3",
        "required": [
          "object-type"
        ],
        "type": "object",
        "properties": {
          "object-type": {
            "type": "string"
          }
        },
        "example": {
          "object-type": "device"
        }
      },
      "firstof-EmptyFiltercase": {
        "title": "firstof-EmptyFiltercase",
        "required": [
          "label"
        ],
        "type": "object",
        "properties": {
          "label": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Label3"
            },
            "description": ""
          }
        },
        "example": {
          "label": [
            {
              "referenced-objects": [
                {
                  "name": "ONU-1-to-Subscriber",
                  "object-type": "interface"
                },
                {
                  "name": "Service-1",
                  "object-type": "service"
                }
              ],
              "name": "Label1"
            },
            {
              "referenced-objects": [
                {
                  "name": "PON-Blade-1-Provider-Interface",
                  "object-type": "interface"
                }
              ],
              "name": "Label2"
            },
            {
              "referenced-objects": [
                {
                  "name": "PON-Blade-1",
                  "object-type": "device"
                }
              ],
              "name": "OLT"
            },
            {
              "referenced-objects": [
                {
                  "name": "ONU-1",
                  "object-type": "device"
                }
              ],
              "name": "ONU"
            }
          ]
        }
      },
      "DataFilter-firstofoperator": {
        "title": "DataFilter-firstofoperator",
        "required": [
          "label"
        ],
        "type": "object",
        "properties": {
          "label": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Label3"
            },
            "description": ""
          }
        },
        "example": {
          "label": [
            {
              "referenced-objects": [
                {
                  "name": "device-1",
                  "object-type": "device"
                },
                {
                  "name": "device-2",
                  "object-type": "device"
                }
              ],
              "name": "device-label"
            },
            {
              "referenced-objects": [
                {
                  "name": "interface-1",
                  "object-type": "interface"
                }
              ],
              "name": "interface-label"
            }
          ]
        }
      },
      "DataFilter-allofoperatorRequest": {
        "title": "DataFilter-allofoperatorRequest",
        "required": [
          "interface"
        ],
        "type": "object",
        "properties": {
          "interface": {
            "$ref": "#/components/schemas/Interface9"
          }
        },
        "example": {
          "interface": {
            "#allof": [
              {
                "#firstof": [
                  {
                    "labels#related-by": {
                      "relationship-path": "adtran-cloud-platform-labels:labels/label/referenced-objects",
                      "fields": {
                        "interface-name": "name"
                      },
                      "copy-depth": 3
                    }
                  }
                ]
              },
              {
                "labels": {
                  "name": "Label1"
                }
              }
            ]
          }
        }
      },
      "Interface9": {
        "title": "Interface9",
        "required": [
          "#allof"
        ],
        "type": "object",
        "properties": {
          "#allof": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Allof"
            },
            "description": ""
          }
        },
        "example": {
          "#allof": [
            {
              "#firstof": [
                {
                  "labels#related-by": {
                    "relationship-path": "adtran-cloud-platform-labels:labels/label/referenced-objects",
                    "fields": {
                      "interface-name": "name"
                    },
                    "copy-depth": 3
                  }
                }
              ]
            },
            {
              "labels": {
                "name": "Label1"
              }
            }
          ]
        }
      },
      "Allof": {
        "title": "Allof",
        "type": "object",
        "properties": {
          "#firstof": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Firstof1"
            },
            "description": ""
          },
          "labels": {
            "$ref": "#/components/schemas/Labels"
          }
        },
        "example": {
          "#firstof": [
            {
              "labels#related-by": {
                "relationship-path": "adtran-cloud-platform-labels:labels/label/referenced-objects",
                "fields": {
                  "interface-name": "name"
                },
                "copy-depth": 3
              }
            }
          ]
        }
      },
      "Firstof1": {
        "title": "Firstof1",
        "required": [
          "labels#related-by"
        ],
        "type": "object",
        "properties": {
          "labels#related-by": {
            "$ref": "#/components/schemas/LabelsRelatedBy"
          }
        },
        "example": {
          "labels#related-by": {
            "relationship-path": "adtran-cloud-platform-labels:labels/label/referenced-objects",
            "fields": {
              "interface-name": "name"
            },
            "copy-depth": 3
          }
        }
      },
      "LabelsRelatedBy": {
        "title": "LabelsRelatedBy",
        "required": [
          "relationship-path",
          "fields",
          "copy-depth"
        ],
        "type": "object",
        "properties": {
          "relationship-path": {
            "type": "string"
          },
          "fields": {
            "$ref": "#/components/schemas/Fields1"
          },
          "copy-depth": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "relationship-path": "adtran-cloud-platform-labels:labels/label/referenced-objects",
          "fields": {
            "interface-name": "name"
          },
          "copy-depth": 3
        }
      },
      "Fields1": {
        "title": "Fields1",
        "required": [
          "interface-name"
        ],
        "type": "object",
        "properties": {
          "interface-name": {
            "type": "string"
          }
        },
        "example": {
          "interface-name": "name"
        }
      },
      "Labels": {
        "title": "Labels",
        "required": [
          "name"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          }
        },
        "example": {
          "name": "Label1"
        }
      },
      "allof-interfacenameANDLabel": {
        "title": "allof-interfacenameANDLabel",
        "required": [
          "interface"
        ],
        "type": "object",
        "properties": {
          "interface": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Interface10"
            },
            "description": ""
          }
        },
        "example": {
          "interface": [
            {
              "device-name": "ONU-1",
              "interface-type": "virtual-ethernet",
              "state": "activated",
              "interface-name": "ONU-1-to-Subscriber",
              "interface-id": "virtual-ethernet 0/1",
              "subtended-device-name": "",
              "labels": [
                {
                  "referenced-objects": [
                    {
                      "name": "ONU-1-to-Subscriber",
                      "object-type": "interface"
                    },
                    {
                      "name": "Service-1",
                      "object-type": "service"
                    }
                  ],
                  "name": "Label1"
                }
              ],
              "lower-layer-interfaces": [],
              "profile-vector-name": "",
              "number-of-lower-layer-interfaces": 1
            }
          ]
        }
      },
      "Interface10": {
        "title": "Interface10",
        "required": [
          "device-name",
          "interface-type",
          "state",
          "interface-name",
          "interface-id",
          "subtended-device-name",
          "labels",
          "lower-layer-interfaces",
          "profile-vector-name",
          "number-of-lower-layer-interfaces"
        ],
        "type": "object",
        "properties": {
          "device-name": {
            "type": "string"
          },
          "interface-type": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "interface-name": {
            "type": "string"
          },
          "interface-id": {
            "type": "string"
          },
          "subtended-device-name": {
            "type": "string"
          },
          "labels": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Labels1"
            },
            "description": ""
          },
          "lower-layer-interfaces": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": ""
          },
          "profile-vector-name": {
            "type": "string"
          },
          "number-of-lower-layer-interfaces": {
            "type": "integer",
            "format": "int32"
          }
        },
        "example": {
          "device-name": "ONU-1",
          "interface-type": "virtual-ethernet",
          "state": "activated",
          "interface-name": "ONU-1-to-Subscriber",
          "interface-id": "virtual-ethernet 0/1",
          "subtended-device-name": "",
          "labels": [
            {
              "referenced-objects": [
                {
                  "name": "ONU-1-to-Subscriber",
                  "object-type": "interface"
                },
                {
                  "name": "Service-1",
                  "object-type": "service"
                }
              ],
              "name": "Label1"
            }
          ],
          "lower-layer-interfaces": [],
          "profile-vector-name": "",
          "number-of-lower-layer-interfaces": 1
        }
      },
      "Labels1": {
        "title": "Labels1",
        "required": [
          "referenced-objects",
          "name"
        ],
        "type": "object",
        "properties": {
          "referenced-objects": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ReferencedObjects"
            },
            "description": ""
          },
          "name": {
            "type": "string"
          }
        },
        "example": {
          "referenced-objects": [
            {
              "name": "ONU-1-to-Subscriber",
              "object-type": "interface"
            },
            {
              "name": "Service-1",
              "object-type": "service"
            }
          ],
          "name": "Label1"
        }
      }
    },
    "securitySchemes": {
      "bearer": {
        "type": "http",
        "scheme": "bearer"
      },
      "basic": {
        "type": "http",
        "scheme": "basic"
      }
    }
  },
  "security": [
    {
      "bearer": []
    }
  ],
  "tags": [
    {
      "name": "Token Management"
    },
    {
      "name": "AAA Config",
      "description": "This section describes the operation that can be performed by a user as part of Authentication, Authorization and Accounting operations.\nThe operation can range from generating an authentication token for accessing system APIs to modifying password requirements and validity time."
    },
    {
      "name": "AAA Permission Groups",
      "description": "This section describes the APIs related to creation, retrieval and deletion of a permission group."
    },
    {
      "name": "AAA Users",
      "description": "This section describes the APIs for User management. "
    },
    {
      "name": "Accounting Logs",
      "description": "The below APIs specify the query criteria to fetch accounting logs, sorted by timestamp in descending order. If any of the filters are not provided in the rpc then the results shall be based on those filters present in request. If no filters are provided then all logs shall be returned."
    },
    {
      "name": "Credentials",
      "description": "This section describes Credential APIs used for network element management. These credentials are used for accessing the network elements.\n\n#### Permissions\nThe user needs the following permissions to create, view, and edit credentials\n\n* adtran-cloud-platform-credentials:read-adtn-cld-pfrm-crdls\n* adtran-cloud-platform-credentials:modify-adtn-cld-pfrm-crdls\n* adtran-cloud-platform-uiworkflow-credentials:read-adtn-cld-pfrm-uiw-crdls\n* adtran-auth-permission:all\n\nIn order to view secret values like `key` and `password` in plain text, the user needs one additional permission.\n\n* adtran-cloud-platform-credentials:read-hidden-adtn-cld-pfrm-crdls "
    },
    {
      "name": "Policy"
    },
    {
      "name": "Login Banner"
    },
    {
      "name": "Elasticsearch Rollover"
    },
    {
      "name": "Export Data",
      "description": "**WARNING** This API is not intended for repeated mass export as it has a high resource usage.\r\n\r\nThe export data service api allows for exporting entire tables of object/event data or filtered results from those tables to a comma-separated-value(csv) format. When the api is called, any results matching the filters given will be returned in a csv formatted file inside a compressed zip format.\r\n\r\nCurrently, this feature is in beta release. The number of results returned are limited to 100,000 rows and larger exports sizes approaching that number may take 30-60 seconds to complete. Consider employing filters when possible to scope down the exported results to only what is required.\r\n\r\n"
    },
    {
      "name": "Admin Settings"
    },
    {
      "name": "Single Sign On"
    },
    {
      "name": "Simple"
    },
    {
      "name": "Sorting"
    },
    {
      "name": "Filtering"
    },
    {
      "name": "Kafka Event Forwarding",
      "description": "This section describes the procedure by which an external entity can retrieve events from the system using Kafka.\nIn order to subscribe to the events, each listener will need to have a Kafka topic configured on Mosaic CP, which will use to forward selected events."
    },
    {
      "name": "Configure Trap Host",
      "description": "Configure trap host for diiferent of SNMP notification (v2c, v3) with specific filter and global filter."
    },
    {
      "name": "SNMP Trap Forwarding",
      "description": "This section covers the API commands required to setup and manage the SNMP translation of events to a northbound SNMP trap collection system."
    },
    {
      "name": "Event Correlation",
      "description": "This section describes the ways an external entity can retrieve and interact with information about already processed alarms."
    },
    {
      "name": "Backup Device Configuration",
      "description": "This job backs up the configuration(s) of selected NETCONF device or devices."
    },
    {
      "name": "Restore Device Configuration",
      "description": "This restore job would restore the selected backup configuration to a device."
    },
    {
      "name": "Download, Activate and Commit Jobs",
      "description": "Below Jobs helps user to perform \n1. Software download operation\n2. Software activate operation\n3. Commit operation"
    },
    {
      "name": "Reboot Device",
      "description": "This job would reboot the device."
    },
    {
      "name": "Reflow Jobs",
      "description": "This job performs a reflow for selected devices which are in the deployed or activated state. For activated devices, this results in a Deactivate/Activate for the devices and the associated interfaces attached to them. If selected devices are in the deployed state then job results in an Activate/Deactivate for the devices and the associated interfaces attached to the selected devices.\n\n* A reflow job results in the reinterpretation of the device and interface profile intents (it is essentially a re-deploy).\n* Reflow jobs provide the means for the operator to deploy batch changes in both device and interface configurations, as well as software upgrades and downgrades, against multiple managed objects in the Mosaic CP system."
    },
    {
      "name": "Resynchronize NETCONF Alarms",
      "description": "This job resynchronizes with the NETCONF managed device to get all the latest events and alarms."
    },
    {
      "name": "User Initiated Pending Jobs",
      "description": "User initiated jobs pending execution."
    },
    {
      "name": "Spawned Pending Jobs",
      "description": "Spawned jobs from user initiated jobs pending execution."
    },
    {
      "name": "Executing Jobs",
      "description": "Jobs currently in execution."
    },
    {
      "name": "Ethernet Loopback Job",
      "description": "This job performs an Ethernet loopback on the specified UNI. This allows a customer to test if the Access Network is working correctly for line rate throughput all the way from the OLT uplink, to the ONT's UNI, and being looped back from there back to the OLT's uplink."
    },
    {
      "name": "Jobs",
      "description": "### Overview\nJobs are actions which can be configured to run on a given trigger. Mosaic CP supports a wide range of flexible jobs. Based on the application and deployment configuration, additional job options may be available for use.\n\n\nThe execution of a job can be performed through the GUI or through the Automated Programming Interface (API). Jobs are specified within the user.conf. The examples in this section are particular to the SDX Fiber solution, for other solutions please check the solution specific documentation for the job types available.\n\n\nJobs are scheduled using the UTC timezone.\n\n\nTo edit an existing job:\n\n\n1. Select the three vertical dots next to the desired job.\n2. Select Edit.\n3. Edit the job.\n4. Select Save to save the changes to the job.\n\n**Note**\n* To be able to edit or delete a job, the job must be deactivated.\n* If a job is deleted and then a new job is created with the same name as the previously deleted job, the history of the deleted job may be displayed for the new job.\n\n"
    },
    {
      "name": "Platform Information"
    },
    {
      "name": "Platform Capabilities"
    },
    {
      "name": "Status Check"
    },
    {
      "name": "Create Bundle"
    },
    {
      "name": "Modify Bundle"
    },
    {
      "name": "Delete Bundle"
    },
    {
      "name": "Bundles",
      "description": "A group of objects or interfaces which connect to multiple entities on the northbound side are considered as a bundle. It may refer to a pair of active or stand-by connection or a channel partition connected to multiple OLTs."
    },
    {
      "name": "Create Content Provider"
    },
    {
      "name": "Modify Content Provider"
    },
    {
      "name": "Delete Content Provider"
    },
    {
      "name": "Content Provider",
      "description": "A content provider is an entity, on the northbound side, which contributes to the data flow into or out of the system. It could be an aggregation switch or a BNG. "
    },
    {
      "name": "Data Center",
      "description": "The server connects to the data center for downloading latest software images."
    },
    {
      "name": "Create Device"
    },
    {
      "name": "Modify Device"
    },
    {
      "name": "Delete Device"
    },
    {
      "name": "Devices",
      "description": "Network Element that lies in the datapath."
    },
    {
      "name": "Create Interface"
    },
    {
      "name": "Modify Interface"
    },
    {
      "name": "Delete Interface"
    },
    {
      "name": "Interfaces",
      "description": "It is a link between a set of network elements or a managed object like a Content Provider."
    },
    {
      "name": "Provisioning Required Objects"
    },
    {
      "name": "Inspect Interface"
    },
    {
      "name": "Inspect Device"
    },
    {
      "name": "Delete Provisioned Objects"
    },
    {
      "name": "Management Domain",
      "description": "It describes the method through which a Network element can be managed by MCP.\nFollowing are the types\n* IPV4 - the network element has an associated IPV4 ip address which can be used to manage it\n* External - the network element cannot be directly managed by MCP, it can be done via another network element or an external entity\n* DHCP - a dynamic IPV4 address is assigned to the network element, which can be used by MCP to manage it"
    },
    {
      "name": "Servers",
      "description": "A server object is from where the latest software versions can be downloaded for a network element."
    },
    {
      "name": "Create Service"
    },
    {
      "name": "Modify Service"
    },
    {
      "name": "Delete Service"
    },
    {
      "name": "Services",
      "description": "Service is a set of configuration pushed down to different network elements in the data-path to facilitate the flow of traffic. "
    },
    {
      "name": "Resolving Profiles",
      "description": "Profiles hold individual pieces of intent that apply to the network. In most cases, these profiles correspond to a YANG model delivered alongside your Mosaic CP installation. Determining which profiles apply to which orchestration objects is the job of the `resolve-profiles` API. The examples below show the many different ways that profiles can be looked up in the system."
    },
    {
      "name": "Profiles",
      "description": "A **profile** is a container for attributes of an object which may be specific to a deployment or instantiation of the object. Profiles are referenced by an object instance. During provisioning of an object, the profile is used to obtain specific attributes or settings to be applied into the network. Some examples of profile contents are:\n\n* Interface parameters, such as Gfast physical layer settings or PON settings\n* Device parameters, such as base configurations, trap host settings, or SFTP server locations\n* Service parameters, such as shaper rate settings, per-service monitoring settings (CFM, y.1731, etc.), or flow authorization parameters (802.1x, DHCP Option 82, etc.)\n\n\nA **conditional profile** is a profile that contains conditional logic, providing the flexibility to use match criteria to control the conditional application of a profile for a given set of objects. Conditional profiles reference other profiles according to matching criteria such as device type, interface type, deployment site, software version, etc. Conditional profiles also allow explicit instances of objects to be excluded from the match results.\n\nProfiles can be grouped together into a **grouping profile**, which references other profiles. Grouping profiles can be used to group certain profiles or parameters together that apply to a common object (e.g., an interface or device). Grouping profiles are typically used in conjunction with conditional profiles and selectable behavior APIs to apply specific network behaviors to interfaces and devices across the network. Grouping profiles are used for internal organization; they are not visible outside the API that is within Mosaic CP.\n\nProfiles can also be grouped together into a profile vector. Profile vectors are visible outside the API, so they can be selected by a user to be applied to an object. They are used to define the set of desired behaviors for a network, such as service types or various equipment deployment scenarios.\n\nThe table below shows the relationship between profile vectors and grouping profiles.\n\n| Object | Referenced By | Example Names | URI Path |\n|----|----|----|----|\n| Profile Vector | GUI, OSS | **500Mbps/10Mbps Service**,  **Business 10Mbps BiDirectional** | /restconf/data/adtran-cloudplatform-uiworkflow- profiles:profiles/vectors |\n| Grouping Profile | Profile Vector, other profiles | **Rate Settings V1**, **DPU Management Settings V1**, **Business Service Queue Settings** | /restconf/data/adtran-cloudplatform-uiworkflow- profiles:profiles/vectors |\n\n\n"
    },
    {
      "name": "Profile Vectors"
    },
    {
      "name": "Conditional Profiles (Behaviors)",
      "description": "* See the Orchestration Objects -> Profiles section above for more generic information on how to manipulate profiles.\n* The first step in designing profile logic for an application is to setup generic profiles that can be used as defaults under a conditional profile with a broad match, such as `default`. These profiles are then built and grouped together to act as the foundation for a device or interface Profile Vector. Then, behaviors and behavior groups can be added, at which point behaviors can be controlled via the API without having to build or modify profiles.\n* Under the hood, behaviors are dynamically adjusting include and exclude conditions of conditional profiles. It allows for one API call to manage these include/exclude conditions for a whole group of conditional profiles (also known as a Behavior Group)."
    },
    {
      "name": "Interface Name (Highest Priority)"
    },
    {
      "name": "Device Name"
    },
    {
      "name": "Interface ID"
    },
    {
      "name": "Management Domain Name"
    },
    {
      "name": "Interface Type"
    },
    {
      "name": "Device Model Name (Lowest Priority)"
    },
    {
      "name": "Interface Behaviors",
      "description": "Add interfaces by their attributes. Device related attributes are in reference to the device that the interface belongs to.\n\n|Attributes|Description|\n|----------|-----------|\n|behavior-group|Name of a behavior group (name matches a grouping profile which has `selectable` set to true).|\n|behavior|Name of a behavior in selected behavior group (name matches a conditional profile which is included in the above named `behavior-group` grouping profile). |\n|device-name| Specifies a set of device names that, when any are matched, determines reference behavior to select.|\n|device-model-name| Specified set of device models name that, when any are matched, determines reference behavior to select.|\n|management-domain-name|Specifies set of management domain name that, when any are matched, determines reference behavior to select.|\n|interface-name|Specified set of user interface names that, when any are matched, determines reference behavior to select.|\n|interface-id|Specified set of interface ids that, when any are matched, determines reference behavior to select.|\n|interface-type|Specified set of interface types that, when any are matched, determines reference behavior to select.|"
    },
    {
      "name": "Device Name (Highest Priority)"
    },
    {
      "name": "Device Behaviors"
    },
    {
      "name": "Behavioral Intent",
      "description": "### Overview\nThe core of this use case surrounds an API wherein operations personnel can supply an object and a behavior to apply to that object. They might like to issue an API operation that simply contains:\n* The name and type of object they are effecting.\n* The behavior type they are modifying.\n* The specific behavior they would like to select.\n\nUsing these semantics the operator can make declarations such as:\n* **For** (management-domain, domain1) **and behavior** (dpu-software-revision) **apply** (dpu-software-1.0).\n* **For** (interface, customer-john-doe) **and behavior** (dpu-line-spectrum-profile) **apply** (dpu-fm-protection).\n\nTo accomplish this, behaviors automatically manages the include and exclude criteria for a grouping of conditional profiles to allow for dynamic changes in network behavior based on a number of criteria, all through a single API call.\n\nThe building blocks of behaviors are profiles, which are documented in the `Orchestration Objects` section of this guide. For the purposes of behaviors there are three categories of profiles: \n\n1. `grouping-profile`: A profile that points to a list of other profiles. When the grouping profile is setup as `selectable` it will be enabled for behaviors. This is similar to a Profile Vector in that it references multiple profiles, but unlike a Profile Vector cannot be directly assigned to a device or interface during orchestration. The behavior selection calls out a conditional profile that will become active for evaluation.\n2. `conditional-profile`: A profile which will include another profile when its condition evaluates as true. If it evaluates to false, the profile it references will not be included in the profile topology. These can point to a grouping profile so that multiple profiles will be included in a behavior or a leaf profile that specifies a single behavior. These profiles have device and interface conditions that can be setup for include or exclude behavior. For automation purposes, putting these together into a `selectable` grouping profile allows for coordinated management of condtional profiles across the entire behavior group, as well as making it possible to control behavior through a single API call rather than having to make additions or edits to the profiles in the profile vector.\n3. Leaf profile: A profile that does not point to another profile, that includes YANG modeled configuration defined by its type.\n\n\nUsing these building blocks, logical constructs can be setup to allow the user to slowly rollout a configuration change to a portion of their network based on certain criteria. For example, a user might want to try out a new setting, but only on interfaces of a certain type within a particular management domain. For maximum effectiveness for behaviors, there should be a limited number of Profile Vectors and these should be shared among as many devices and interfaces as possible.\n\n### Diagram\nThe following diagram shows how MCP is pre-configured for the API examples included in this section.\n![Diagram](https://i.ibb.co/6YBvp29/Selectable-Profiles.png)\n\nWithout any behaviors applied, all interfaces and devices start out with `tpid-profile-site-b` applied to them due to the ranking algorithm evaluating the two behaviors (conditional profiles) in their profile vector, and determining that the `default` condition wins from `select-behavior-cp-site-b`. The API guide examples then show all the different ways that the devices and interfaces can be switched over to use `select-behavior-cp-site-a` through the behavior group called `select-behavior-tpid`. \n\nThe examples in this section do selection and deselection using one field at a time, but these attributes can be combined in an API called to provide more control over the devices/interfaces selected for behaviors. For multi-attribute requests, the objects selected will include one or many of the fields, rather than the intersection of all the fields combined.\n\n### Ranking Algorithm for Conditional Profiles / Behaviors\nThe `interface-conditions` of a `conditional-profile` are evaluated when the context of the look-up is an `interface`. For a `device` the `device-conditions` are evaluated instead. \n\n* A **condition** contains two sets of field-names, the `include` set and the `exclude` set. \n* Each condition set (include or exclude) contains a set of field names, each of which represents a list of values.\n\nEach condition set evaluates its **score** by assuming first a score of 0. It then compares the context against the next highest order field until there is a match.\n\nIf no matches exist, the **score** for that condition set is 0.\n\n#### Rank Order (from most specific to least specific)\n\n##### `interface-condition`\n\n| Priority | Condition |\n| --- | --- |\n|8 | `interface-name` |\n|7 |\t`device-name` |\n|6 |\t`interface-id` |\n|5 | `management-domain-name` |\n|4 |\t`interface-type` |\n|3 |\t`device-model-name` |\n|1 |\t`DEFAULT` = `true` |\n\n##### `device-condition`\n\n| Priority | Condition |\n| --- | --- |\n| 7 |\t`device-name` |\n| 5\t| `management-domain-name` |\n| 3\t| `device-model-name` |\n| 1\t| `DEFAULT` = `true` |\n\n#### Winner\nThe highest score chooses which profile is selected from either the **exclude** or **include**\n\n#### Tie Scores\nTie scores between the include and exclude set means that neither the **exclude**'s profile nor the **include**'s profile is selected\n\n\n\n---------\nOne metaphor for this approach to managing the network is crawl, walk, run. Suppose that there are thousands of devices or interfaces that are all using the same Profile Vector.\n\n**Crawl**: Profile overrides (referenced in the `Orchestration Objects` section in the `Deploy Device` and `Deploy Interface` requests) allow for making a one-off change to a particular device or interface allowing for another profile to be substituted for one included in the Profile Vector.\n\n**Walk**: Selectable behavior gives the ability to change a subset of the devices and interfaces that are using the same Profile Vector by simplifying the management of conditional profiles within the Profile Vector. This requires the Profile Vector to be setup with the appropriate grouping and conditional profiles to support the behavior selection.\n\n**Run**: When ready to deploy the configuration change across all devices and interface, the Profile Vector (or a descendent Profile) can be changed directly.\n\nKeep in mind that profile changes are not pushed to the network until a deploy or deactivate/activate (reflow) occurs for a particular device or interface."
    },
    {
      "name": "Labels",
      "description": "APIs related to create, delete and associate labels."
    },
    {
      "name": "Create Device Using Port Pattern"
    },
    {
      "name": "Cleanup Device Created with Port Pattern"
    },
    {
      "name": "Onboard Device"
    },
    {
      "name": "Onboard Device Cleanup"
    },
    {
      "name": "Check Transitions"
    },
    {
      "name": "Deprecated",
      "description": "These APIs are deprecated and support for them could be removed in future versions of Mosaic CP. "
    },
    {
      "name": "Get Inventory Tree",
      "description": "### Get Inventory Tree\nUpon receiving the request to get-inventory-tree API will retrieve all the devices which are direct children of rooted-device from yang-data-store.\n\n### Get Inventory Tree for a given inventory object\nUpon receiving the request to get-inventory-tree API will retrieve children of the requested inventory object from yang-data-store using name and type.\n\n### Get Inventory Tree for a given search-string\nUpon receiving the request to get-inventory-tree API will use global search to find MCP objects for device and interface.\n\n### Get Inventory Tree for a given filter-string\nUpon receiving the request to get-inventory-tree API will retrieve all the devices matching with filter-string which are direct children of rooted-device from yang-data-store."
    },
    {
      "name": "Get Inventory Status",
      "description": "Upon receiving the request to get-inventory-status API initiate the real-time status from the NEs plugin and will generate a transaction-id and store it in memory cache."
    },
    {
      "name": "Get Inventory Status Result",
      "description": "Upon receiving the request to get-inventory-status-result API will look transaction-id details stored in memory cache for the mcp-objects status."
    },
    {
      "name": "Get Reverse Inventory Tree",
      "description": "Upon receiving the request to get-reverse-inventory-tree API will recursively retrieve reverse order(child-to-parent tree) of the requested inventory object from yang-data-store using name and type."
    },
    {
      "name": "Create Profile For Onboarding"
    },
    {
      "name": "Create Profile For Override For Onboarding"
    },
    {
      "name": "Create Device Profile Vector For Onboarding"
    },
    {
      "name": "Create Interface Profile Vector For Onboarding"
    },
    {
      "name": "Create Bundle Profile Vector For Onboarding"
    },
    {
      "name": "Component API"
    },
    {
      "name": "Onboarding API"
    },
    {
      "name": "Status API"
    },
    {
      "name": "NETCONF",
      "description": "These APIs let the user search NETCONF specific objects in MCP."
    },
    {
      "name": "Global Search",
      "description": "Provides user the capability to perform basic search."
    },
    {
      "name": "Data Filter",
      "description": "Provides user to do advance search using extra parameters than a global search."
    }
  ]
}