{
  "openapi": "3.1.0",
  "info": {
    "title": "",
    "version": "1.0.0"
  },
  "paths": {
    "/beta/security/user-sources": {
      "get": {
        "tags": [
          "SecurityManagement"
        ],
        "operationId": "getUserSources",
        "description": "The parameters and request body are for method: getUserSources. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string"
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  }
                },
                "example": [
                  {
                    "id": "string",
                    "name": "string"
                  }
                ]
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/beta/security/users/{userId}": {
      "put": {
        "tags": [
          "SecurityManagementUsers"
        ],
        "operationId": "updateUser",
        "description": "The parameters and request body are for method: updateUser. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "userId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "userId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "SecurityManagementUsers"
        ],
        "operationId": "deleteUser",
        "description": "The parameters and request body are for method: deleteUser. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "userId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "userId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/beta/security/users": {
      "get": {
        "tags": [
          "SecurityManagementUsers"
        ],
        "operationId": "getUsers",
        "description": "The parameters and request body are for method: getUsers. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "userId": {
                        "type": "string"
                      },
                      "firstName": {
                        "type": "string"
                      },
                      "lastName": {
                        "type": "string"
                      },
                      "emailAddress": {
                        "type": "string"
                      },
                      "source": {
                        "type": "string"
                      },
                      "status": {
                        "type": "string"
                      },
                      "readOnly": {
                        "type": "boolean"
                      },
                      "roles": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "externalRoles": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      }
                    }
                  }
                },
                "example": [
                  {
                    "userId": "string",
                    "firstName": "string",
                    "lastName": "string",
                    "emailAddress": "string",
                    "source": "string",
                    "status": "disabled",
                    "readOnly": false,
                    "roles": [
                      "string",
                      "string",
                      "string",
                      "string"
                    ],
                    "externalRoles": [
                      "string",
                      "string",
                      "string",
                      "string",
                      "string",
                      "string",
                      "string",
                      "string",
                      "string",
                      "string"
                    ]
                  },
                  {
                    "userId": "string",
                    "firstName": "string",
                    "lastName": "string",
                    "emailAddress": "string",
                    "source": "string",
                    "status": "disabled",
                    "readOnly": false,
                    "roles": [
                      "string",
                      "string",
                      "string",
                      "string",
                      "string",
                      "string",
                      "string"
                    ],
                    "externalRoles": [
                      "string"
                    ]
                  },
                  {
                    "userId": "string",
                    "firstName": "string",
                    "lastName": "string",
                    "emailAddress": "string",
                    "source": "string",
                    "status": "locked",
                    "readOnly": true,
                    "roles": [
                      "string",
                      "string",
                      "string",
                      "string",
                      "string"
                    ],
                    "externalRoles": [
                      "string",
                      "string"
                    ]
                  },
                  {
                    "userId": "string",
                    "firstName": "string",
                    "lastName": "string",
                    "emailAddress": "string",
                    "source": "string",
                    "status": "active",
                    "readOnly": false,
                    "roles": [
                      "string",
                      "string",
                      "string",
                      "string"
                    ],
                    "externalRoles": [
                      "string",
                      "string",
                      "string"
                    ]
                  }
                ]
              }
            }
          }
        },
        "parameters": [
          {
            "name": "userId",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "source",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "post": {
        "tags": [
          "SecurityManagementUsers"
        ],
        "operationId": "createUser",
        "description": "The parameters and request body are for method: createUser. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "userId": {
                      "type": "string"
                    },
                    "firstName": {
                      "type": "string"
                    },
                    "lastName": {
                      "type": "string"
                    },
                    "emailAddress": {
                      "type": "string"
                    },
                    "source": {
                      "type": "string"
                    },
                    "status": {
                      "type": "string"
                    },
                    "readOnly": {
                      "type": "boolean"
                    },
                    "roles": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "externalRoles": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    }
                  }
                },
                "example": {
                  "userId": "string",
                  "firstName": "string",
                  "lastName": "string",
                  "emailAddress": "string",
                  "source": "string",
                  "status": "changepassword",
                  "readOnly": true,
                  "roles": [
                    "string",
                    "string",
                    "string",
                    "string",
                    "string",
                    "string",
                    "string",
                    "string",
                    "string"
                  ],
                  "externalRoles": [
                    "string",
                    "string",
                    "string",
                    "string",
                    "string",
                    "string",
                    "string"
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/security/users/{userId}/change-password": {
      "put": {
        "tags": [
          "SecurityManagementUsers"
        ],
        "operationId": "changePassword",
        "description": "The parameters and request body are for method: changePassword. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "userId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "userId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "body": {
                    "type": "string"
                  }
                }
              },
              "example": {
                "body": "body"
              }
            }
          }
        }
      }
    },
    "/beta/security/privileges": {
      "get": {
        "tags": [
          "SecurityManagementPrivileges"
        ],
        "operationId": "getPrivileges",
        "description": "The parameters and request body are for method: getPrivileges. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "type": {
                        "type": "string"
                      },
                      "name": {
                        "type": "string"
                      },
                      "description": {
                        "type": "string"
                      },
                      "readOnly": {
                        "type": "boolean"
                      }
                    }
                  }
                },
                "example": [
                  {
                    "type": "string",
                    "name": "string",
                    "description": "string",
                    "readOnly": true
                  }
                ]
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/beta/security/privileges/{privilegeId}": {
      "get": {
        "tags": [
          "SecurityManagementPrivileges"
        ],
        "operationId": "getPrivilege",
        "description": "The parameters and request body are for method: getPrivilege. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "type": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "description": {
                      "type": "string"
                    },
                    "readOnly": {
                      "type": "boolean"
                    }
                  }
                },
                "example": {
                  "type": "string",
                  "name": "string",
                  "description": "string",
                  "readOnly": true
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "privilegeId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "privilegeId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "delete": {
        "tags": [
          "SecurityManagementPrivileges"
        ],
        "operationId": "deletePrivilege",
        "description": "The parameters and request body are for method: deletePrivilege. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "privilegeId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "privilegeId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/beta/security/privileges/wildcard": {
      "post": {
        "tags": [
          "SecurityManagementPrivileges"
        ],
        "operationId": "createPrivilege",
        "description": "The parameters and request body are for method: createPrivilege. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/security/privileges/application": {
      "post": {
        "tags": [
          "SecurityManagementPrivileges"
        ],
        "operationId": "createPrivilege1",
        "description": "The parameters and request body are for method: createPrivilege1. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/security/privileges/wildcard/{privilegeId}": {
      "put": {
        "tags": [
          "SecurityManagementPrivileges"
        ],
        "operationId": "updatePrivilege",
        "description": "The parameters and request body are for method: updatePrivilege. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "privilegeId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "privilegeId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/security/privileges/application/{privilegeId}": {
      "put": {
        "tags": [
          "SecurityManagementPrivileges"
        ],
        "operationId": "updatePrivilege1",
        "description": "The parameters and request body are for method: updatePrivilege1. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "privilegeId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "privilegeId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/security/privileges/repository-content-selector": {
      "post": {
        "tags": [
          "SecurityManagementPrivileges"
        ],
        "operationId": "createPrivilege2",
        "description": "The parameters and request body are for method: createPrivilege2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/security/privileges/repository-admin": {
      "post": {
        "tags": [
          "SecurityManagementPrivileges"
        ],
        "operationId": "createPrivilege3",
        "description": "The parameters and request body are for method: createPrivilege3. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/security/privileges/repository-view": {
      "post": {
        "tags": [
          "SecurityManagementPrivileges"
        ],
        "operationId": "createPrivilege4",
        "description": "The parameters and request body are for method: createPrivilege4. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/security/privileges/repository-view/{privilegeId}": {
      "put": {
        "tags": [
          "SecurityManagementPrivileges"
        ],
        "operationId": "updatePrivilege2",
        "description": "The parameters and request body are for method: updatePrivilege2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "privilegeId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "privilegeId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/security/privileges/repository-content-selector/{privilegeId}": {
      "put": {
        "tags": [
          "SecurityManagementPrivileges"
        ],
        "operationId": "updatePrivilege3",
        "description": "The parameters and request body are for method: updatePrivilege3. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "privilegeId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "privilegeId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/security/privileges/repository-admin/{privilegeId}": {
      "put": {
        "tags": [
          "SecurityManagementPrivileges"
        ],
        "operationId": "updatePrivilege4",
        "description": "The parameters and request body are for method: updatePrivilege4. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "privilegeId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "privilegeId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/security/privileges/script": {
      "post": {
        "tags": [
          "SecurityManagementPrivileges"
        ],
        "operationId": "createPrivilege5",
        "description": "The parameters and request body are for method: createPrivilege5. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/security/privileges/script/{privilegeId}": {
      "put": {
        "tags": [
          "SecurityManagementPrivileges"
        ],
        "operationId": "updatePrivilege5",
        "description": "The parameters and request body are for method: updatePrivilege5. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "privilegeId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "privilegeId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/security/realms/available": {
      "get": {
        "tags": [
          "SecurityManagementRealms"
        ],
        "operationId": "getRealms",
        "description": "The parameters and request body are for method: getRealms. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string"
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  }
                },
                "example": [
                  {
                    "id": "string",
                    "name": "string"
                  }
                ]
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/beta/security/realms/active": {
      "get": {
        "tags": [
          "SecurityManagementRealms"
        ],
        "operationId": "getActiveRealms",
        "description": "The parameters and request body are for method: getActiveRealms. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "type": "string"
                  }
                },
                "example": [
                  "string",
                  "string",
                  "string"
                ]
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "put": {
        "tags": [
          "SecurityManagementRealms"
        ],
        "operationId": "setActiveRealms",
        "description": "The parameters and request body are for method: setActiveRealms. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "body": {
                    "type": "string"
                  }
                }
              },
              "example": {
                "body": "body"
              }
            }
          }
        }
      }
    },
    "/beta/security/roles": {
      "get": {
        "tags": [
          "SecurityManagementRoles"
        ],
        "operationId": "getRoles",
        "description": "The parameters and request body are for method: getRoles. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string"
                      },
                      "source": {
                        "type": "string"
                      },
                      "name": {
                        "type": "string"
                      },
                      "description": {
                        "type": "string"
                      },
                      "privileges": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "roles": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      }
                    }
                  }
                },
                "example": [
                  {
                    "id": "string",
                    "source": "string",
                    "name": "string",
                    "description": "string",
                    "privileges": [
                      "string",
                      "string",
                      "string",
                      "string",
                      "string",
                      "string"
                    ],
                    "roles": [
                      "string"
                    ]
                  }
                ]
              }
            }
          }
        },
        "parameters": [
          {
            "name": "source",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "post": {
        "tags": [
          "SecurityManagementRoles"
        ],
        "operationId": "create",
        "description": "The parameters and request body are for method: create. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string"
                    },
                    "source": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "description": {
                      "type": "string"
                    },
                    "privileges": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "roles": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    }
                  }
                },
                "example": {
                  "id": "string",
                  "source": "string",
                  "name": "string",
                  "description": "string",
                  "privileges": [
                    "string",
                    "string",
                    "string",
                    "string",
                    "string",
                    "string"
                  ],
                  "roles": [
                    "string",
                    "string",
                    "string",
                    "string"
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/security/roles/{id}": {
      "get": {
        "tags": [
          "SecurityManagementRoles"
        ],
        "operationId": "getRole",
        "description": "The parameters and request body are for method: getRole. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string"
                    },
                    "source": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "description": {
                      "type": "string"
                    },
                    "privileges": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "roles": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    }
                  }
                },
                "example": {
                  "id": "string",
                  "source": "string",
                  "name": "string",
                  "description": "string",
                  "privileges": [
                    "string",
                    "string",
                    "string",
                    "string",
                    "string"
                  ],
                  "roles": [
                    "string",
                    "string",
                    "string",
                    "string",
                    "string",
                    "string",
                    "string"
                  ]
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          },
          {
            "name": "source",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "put": {
        "tags": [
          "SecurityManagementRoles"
        ],
        "operationId": "update",
        "description": "The parameters and request body are for method: update. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "SecurityManagementRoles"
        ],
        "operationId": "delete",
        "description": "The parameters and request body are for method: delete. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/tasks/{id}": {
      "get": {
        "tags": [
          "Tasks"
        ],
        "operationId": "getTaskById",
        "description": "The parameters and request body are for method: getTaskById. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "message": {
                      "type": "string"
                    },
                    "currentState": {
                      "type": "string"
                    },
                    "lastRunResult": {
                      "type": "string"
                    },
                    "nextRun": {
                      "type": "string"
                    },
                    "lastRun": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "id": "string",
                  "name": "string",
                  "type": "string",
                  "message": "string",
                  "currentState": "string",
                  "lastRunResult": "string",
                  "nextRun": "string",
                  "lastRun": "string"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/tasks": {
      "get": {
        "tags": [
          "Tasks"
        ],
        "operationId": "getTasks",
        "description": "The parameters and request body are for method: getTasks. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "items": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "message": {
                            "type": "string"
                          },
                          "currentState": {
                            "type": "string"
                          },
                          "lastRunResult": {
                            "type": "string"
                          },
                          "nextRun": {
                            "type": "string"
                          },
                          "lastRun": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "continuationToken": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "items": [
                    {
                      "id": "string",
                      "name": "string",
                      "type": "string",
                      "message": "string",
                      "currentState": "string",
                      "lastRunResult": "string",
                      "nextRun": "string",
                      "lastRun": "string"
                    },
                    {
                      "id": "string",
                      "name": "string",
                      "type": "string",
                      "message": "string",
                      "currentState": "string",
                      "lastRunResult": "string",
                      "nextRun": "string",
                      "lastRun": "string"
                    },
                    {
                      "id": "string",
                      "name": "string",
                      "type": "string",
                      "message": "string",
                      "currentState": "string",
                      "lastRunResult": "string",
                      "nextRun": "string",
                      "lastRun": "string"
                    },
                    {
                      "id": "string",
                      "name": "string",
                      "type": "string",
                      "message": "string",
                      "currentState": "string",
                      "lastRunResult": "string",
                      "nextRun": "string",
                      "lastRun": "string"
                    },
                    {
                      "id": "string",
                      "name": "string",
                      "type": "string",
                      "message": "string",
                      "currentState": "string",
                      "lastRunResult": "string",
                      "nextRun": "string",
                      "lastRun": "string"
                    },
                    {
                      "id": "string",
                      "name": "string",
                      "type": "string",
                      "message": "string",
                      "currentState": "string",
                      "lastRunResult": "string",
                      "nextRun": "string",
                      "lastRun": "string"
                    }
                  ],
                  "continuationToken": "string"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "type",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/tasks/{id}/run": {
      "post": {
        "tags": [
          "Tasks"
        ],
        "operationId": "run",
        "description": "The parameters and request body are for method: run. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/tasks/{id}/stop": {
      "post": {
        "tags": [
          "Tasks"
        ],
        "operationId": "stop",
        "description": "The parameters and request body are for method: stop. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/beta/blobstores/{name}": {
      "delete": {
        "tags": [
          "BlobStore"
        ],
        "operationId": "deleteBlobStore",
        "description": "The parameters and request body are for method: deleteBlobStore. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "name",
            "in": "path",
            "required": true,
            "schema": {
              "title": "name",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/beta/blobstores": {
      "get": {
        "tags": [
          "BlobStore"
        ],
        "operationId": "listBlobStores",
        "description": "The parameters and request body are for method: listBlobStores. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "softQuota": {
                        "type": "object",
                        "properties": {
                          "type": {
                            "type": "string"
                          },
                          "limit": {
                            "type": "number"
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      },
                      "type": {
                        "type": "string"
                      },
                      "blobCount": {
                        "type": "number"
                      },
                      "totalSizeInBytes": {
                        "type": "number"
                      },
                      "availableSpaceInBytes": {
                        "type": "number"
                      }
                    }
                  }
                },
                "example": [
                  {
                    "softQuota": {
                      "type": "string",
                      "limit": 2
                    },
                    "name": "string",
                    "type": "string",
                    "blobCount": 9,
                    "totalSizeInBytes": 2,
                    "availableSpaceInBytes": 3
                  }
                ]
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/blobstores/{id}/quota-status": {
      "get": {
        "tags": [
          "BlobStore"
        ],
        "operationId": "quotaStatus",
        "description": "The parameters and request body are for method: quotaStatus. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "isViolation": {
                      "type": "boolean"
                    },
                    "message": {
                      "type": "string"
                    },
                    "blobStoreName": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "isViolation": false,
                  "message": "string",
                  "blobStoreName": "string"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/beta/blobstores/file": {
      "post": {
        "tags": [
          "BlobStore"
        ],
        "operationId": "createFileBlobStore",
        "description": "The parameters and request body are for method: createFileBlobStore. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/blobstores/file/{name}": {
      "get": {
        "tags": [
          "BlobStore"
        ],
        "operationId": "getFileBlobStoreConfiguration",
        "description": "The parameters and request body are for method: getFileBlobStoreConfiguration. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "softQuota": {
                      "type": "object",
                      "properties": {
                        "type": {
                          "type": "string"
                        },
                        "limit": {
                          "type": "number"
                        }
                      }
                    },
                    "path": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "softQuota": {
                    "type": "string",
                    "limit": 3
                  },
                  "path": "string"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "name",
            "in": "path",
            "required": true,
            "schema": {
              "title": "name",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "put": {
        "tags": [
          "BlobStore"
        ],
        "operationId": "updateFileBlobStore",
        "description": "The parameters and request body are for method: updateFileBlobStore. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "name",
            "in": "path",
            "required": true,
            "schema": {
              "title": "name",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/blobstores/s3/{name}": {
      "get": {
        "tags": [
          "BlobStore"
        ],
        "operationId": "getBlobStore",
        "description": "The parameters and request body are for method: getBlobStore. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "name",
            "in": "path",
            "required": true,
            "schema": {
              "title": "name",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "put": {
        "tags": [
          "BlobStore"
        ],
        "operationId": "updateBlobStore",
        "description": "The parameters and request body are for method: updateBlobStore. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "name",
            "in": "path",
            "required": true,
            "schema": {
              "title": "name",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/blobstores/s3": {
      "post": {
        "tags": [
          "BlobStore"
        ],
        "operationId": "createBlobStore",
        "description": "The parameters and request body are for method: createBlobStore. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v1/lifecycle/phase": {
      "get": {
        "tags": [
          "Lifecycle"
        ],
        "operationId": "getPhase",
        "description": "The parameters and request body are for method: getPhase. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "put": {
        "tags": [
          "Lifecycle"
        ],
        "operationId": "setPhase",
        "description": "The parameters and request body are for method: setPhase. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "body": {
                    "type": "string"
                  }
                }
              },
              "example": {
                "body": "body"
              }
            }
          }
        }
      }
    },
    "/v1/lifecycle/bounce": {
      "put": {
        "tags": [
          "Lifecycle"
        ],
        "operationId": "bounce",
        "description": "The parameters and request body are for method: bounce. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "body": {
                    "type": "string"
                  }
                }
              },
              "example": {
                "body": "body"
              }
            }
          }
        }
      }
    },
    "/v1/read-only/freeze": {
      "post": {
        "tags": [
          "ReadOnly"
        ],
        "operationId": "freeze",
        "description": "The parameters and request body are for method: freeze. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/read-only/force-release": {
      "post": {
        "tags": [
          "ReadOnly"
        ],
        "operationId": "forceRelease",
        "description": "The parameters and request body are for method: forceRelease. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/read-only/release": {
      "post": {
        "tags": [
          "ReadOnly"
        ],
        "operationId": "release",
        "description": "The parameters and request body are for method: release. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/read-only": {
      "get": {
        "tags": [
          "ReadOnly"
        ],
        "operationId": "get",
        "description": "The parameters and request body are for method: get. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "summaryReason": {
                      "type": "string"
                    },
                    "systemInitiated": {
                      "type": "boolean"
                    },
                    "frozen": {
                      "type": "boolean"
                    }
                  }
                },
                "example": {
                  "summaryReason": "string",
                  "systemInitiated": false,
                  "frozen": true
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/beta/security/ssl/truststore/{id}": {
      "delete": {
        "tags": [
          "SecurityCertificates"
        ],
        "operationId": "removeCertificate",
        "description": "The parameters and request body are for method: removeCertificate. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/beta/security/ssl/truststore": {
      "get": {
        "tags": [
          "SecurityCertificates"
        ],
        "operationId": "getTrustStoreCertificates",
        "description": "The parameters and request body are for method: getTrustStoreCertificates. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "expiresOn": {
                        "type": "number"
                      },
                      "fingerprint": {
                        "type": "string"
                      },
                      "id": {
                        "type": "string"
                      },
                      "issuedOn": {
                        "type": "number"
                      },
                      "issuerCommonName": {
                        "type": "string"
                      },
                      "issuerOrganization": {
                        "type": "string"
                      },
                      "issuerOrganizationalUnit": {
                        "type": "string"
                      },
                      "pem": {
                        "type": "string"
                      },
                      "serialNumber": {
                        "type": "string"
                      },
                      "subjectCommonName": {
                        "type": "string"
                      },
                      "subjectOrganization": {
                        "type": "string"
                      },
                      "subjectOrganizationalUnit": {
                        "type": "string"
                      }
                    }
                  }
                },
                "example": [
                  {
                    "expiresOn": 2,
                    "fingerprint": "string",
                    "id": "string",
                    "issuedOn": 2,
                    "issuerCommonName": "string",
                    "issuerOrganization": "string",
                    "issuerOrganizationalUnit": "string",
                    "pem": "string",
                    "serialNumber": "string",
                    "subjectCommonName": "string",
                    "subjectOrganization": "string",
                    "subjectOrganizationalUnit": "string"
                  },
                  {
                    "expiresOn": 10,
                    "fingerprint": "string",
                    "id": "string",
                    "issuedOn": 2,
                    "issuerCommonName": "string",
                    "issuerOrganization": "string",
                    "issuerOrganizationalUnit": "string",
                    "pem": "string",
                    "serialNumber": "string",
                    "subjectCommonName": "string",
                    "subjectOrganization": "string",
                    "subjectOrganizationalUnit": "string"
                  }
                ]
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "post": {
        "tags": [
          "SecurityCertificates"
        ],
        "operationId": "addCertificate",
        "description": "The parameters and request body are for method: addCertificate. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "body": {
                    "type": "string"
                  }
                }
              },
              "example": {
                "body": "body"
              }
            }
          }
        }
      }
    },
    "/beta/security/ssl": {
      "get": {
        "tags": [
          "SecurityCertificates"
        ],
        "operationId": "retrieveCertificate",
        "description": "The parameters and request body are for method: retrieveCertificate. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "expiresOn": {
                      "type": "number"
                    },
                    "fingerprint": {
                      "type": "string"
                    },
                    "id": {
                      "type": "string"
                    },
                    "issuedOn": {
                      "type": "number"
                    },
                    "issuerCommonName": {
                      "type": "string"
                    },
                    "issuerOrganization": {
                      "type": "string"
                    },
                    "issuerOrganizationalUnit": {
                      "type": "string"
                    },
                    "pem": {
                      "type": "string"
                    },
                    "serialNumber": {
                      "type": "string"
                    },
                    "subjectCommonName": {
                      "type": "string"
                    },
                    "subjectOrganization": {
                      "type": "string"
                    },
                    "subjectOrganizationalUnit": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "expiresOn": 5,
                  "fingerprint": "string",
                  "id": "string",
                  "issuedOn": 7,
                  "issuerCommonName": "string",
                  "issuerOrganization": "string",
                  "issuerOrganizationalUnit": "string",
                  "pem": "string",
                  "serialNumber": "string",
                  "subjectCommonName": "string",
                  "subjectOrganization": "string",
                  "subjectOrganizationalUnit": "string"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "host",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "port",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "protocolHint",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/beta/repositories": {
      "get": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "getRepositories",
        "description": "The parameters and request body are for method: getRepositories. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/beta/repositories/{repositoryName}/invalidate-cache": {
      "post": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "invalidateCache",
        "description": "The parameters and request body are for method: invalidateCache. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "repositoryName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "repositoryName",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/beta/repositories/{repositoryName}": {
      "delete": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "deleteRepository",
        "description": "The parameters and request body are for method: deleteRepository. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "repositoryName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "repositoryName",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/beta/repositories/{repositoryName}/rebuild-index": {
      "post": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "rebuildIndex",
        "description": "The parameters and request body are for method: rebuildIndex. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "repositoryName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "repositoryName",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/beta/repositories/maven/hosted": {
      "post": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "createRepository",
        "description": "The parameters and request body are for method: createRepository. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/repositories/maven/hosted/{repositoryName}": {
      "put": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "updateRepository",
        "description": "The parameters and request body are for method: updateRepository. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "repositoryName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "repositoryName",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/repositories/maven/proxy": {
      "post": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "createRepository1",
        "description": "The parameters and request body are for method: createRepository1. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/repositories/maven/proxy/{repositoryName}": {
      "put": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "updateRepository1",
        "description": "The parameters and request body are for method: updateRepository1. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "repositoryName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "repositoryName",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/repositories/{repositoryName}/health-check": {
      "post": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "enableRepositoryHealthCheck",
        "description": "The parameters and request body are for method: enableRepositoryHealthCheck. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "repositoryName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "repositoryName",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "delete": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "disableRepositoryHealthCheck",
        "description": "The parameters and request body are for method: disableRepositoryHealthCheck. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "repositoryName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "repositoryName",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/beta/repositories/apt/hosted": {
      "post": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "createRepository2",
        "description": "The parameters and request body are for method: createRepository2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/repositories/apt/hosted/{repositoryName}": {
      "put": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "updateRepository2",
        "description": "The parameters and request body are for method: updateRepository2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "repositoryName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "repositoryName",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/repositories/apt/proxy": {
      "post": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "createRepository3",
        "description": "The parameters and request body are for method: createRepository3. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/repositories/apt/proxy/{repositoryName}": {
      "put": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "updateRepository3",
        "description": "The parameters and request body are for method: updateRepository3. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "repositoryName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "repositoryName",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/repositories/go/group": {
      "post": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "createRepository4",
        "description": "The parameters and request body are for method: createRepository4. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/repositories/go/group/{repositoryName}": {
      "put": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "updateRepository4",
        "description": "The parameters and request body are for method: updateRepository4. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "repositoryName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "repositoryName",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/repositories/go/proxy": {
      "post": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "createRepository5",
        "description": "The parameters and request body are for method: createRepository5. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/repositories/go/proxy/{repositoryName}": {
      "put": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "updateRepository5",
        "description": "The parameters and request body are for method: updateRepository5. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "repositoryName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "repositoryName",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/repositories/helm/hosted": {
      "post": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "createRepository6",
        "description": "The parameters and request body are for method: createRepository6. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/repositories/helm/hosted/{repositoryName}": {
      "put": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "updateRepository6",
        "description": "The parameters and request body are for method: updateRepository6. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "repositoryName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "repositoryName",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/repositories/helm/proxy": {
      "post": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "createRepository7",
        "description": "The parameters and request body are for method: createRepository7. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/repositories/helm/proxy/{repositoryName}": {
      "put": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "updateRepository7",
        "description": "The parameters and request body are for method: updateRepository7. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "repositoryName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "repositoryName",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/repositories/p2/proxy": {
      "post": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "createRepository8",
        "description": "The parameters and request body are for method: createRepository8. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/repositories/p2/proxy/{repositoryName}": {
      "put": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "updateRepository8",
        "description": "The parameters and request body are for method: updateRepository8. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "repositoryName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "repositoryName",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/repositories/bower/group": {
      "post": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "createRepository9",
        "description": "The parameters and request body are for method: createRepository9. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/repositories/bower/group/{repositoryName}": {
      "put": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "updateRepository9",
        "description": "The parameters and request body are for method: updateRepository9. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "repositoryName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "repositoryName",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/repositories/bower/hosted": {
      "post": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "createRepository10",
        "description": "The parameters and request body are for method: createRepository10. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/repositories/bower/hosted/{repositoryName}": {
      "put": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "updateRepository10",
        "description": "The parameters and request body are for method: updateRepository10. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "repositoryName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "repositoryName",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/repositories/bower/proxy": {
      "post": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "createRepository11",
        "description": "The parameters and request body are for method: createRepository11. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/repositories/bower/proxy/{repositoryName}": {
      "put": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "updateRepository11",
        "description": "The parameters and request body are for method: updateRepository11. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "repositoryName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "repositoryName",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/repositories/docker/group": {
      "post": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "createRepository12",
        "description": "The parameters and request body are for method: createRepository12. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/repositories/docker/group/{repositoryName}": {
      "put": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "updateRepository12",
        "description": "The parameters and request body are for method: updateRepository12. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "repositoryName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "repositoryName",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/repositories/docker/hosted": {
      "post": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "createRepository13",
        "description": "The parameters and request body are for method: createRepository13. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/repositories/docker/hosted/{repositoryName}": {
      "put": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "updateRepository13",
        "description": "The parameters and request body are for method: updateRepository13. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "repositoryName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "repositoryName",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/repositories/docker/proxy": {
      "post": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "createRepository14",
        "description": "The parameters and request body are for method: createRepository14. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/repositories/docker/proxy/{repositoryName}": {
      "put": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "updateRepository14",
        "description": "The parameters and request body are for method: updateRepository14. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "repositoryName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "repositoryName",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/repositories/gitlfs/hosted": {
      "post": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "createRepository15",
        "description": "The parameters and request body are for method: createRepository15. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/repositories/gitlfs/hosted/{repositoryName}": {
      "put": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "updateRepository15",
        "description": "The parameters and request body are for method: updateRepository15. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "repositoryName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "repositoryName",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/repositories/yum/hosted": {
      "post": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "createRepository16",
        "description": "The parameters and request body are for method: createRepository16. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/repositories/yum/hosted/{repositoryName}": {
      "put": {
        "tags": [
          "RepositoryManagement"
        ],
        "operationId": "updateRepository16",
        "description": "The parameters and request body are for method: updateRepository16. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "repositoryName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "repositoryName",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v1/assets": {
      "get": {
        "tags": [
          "Assets"
        ],
        "operationId": "getAssets",
        "description": "The parameters and request body are for method: getAssets. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "items": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "downloadUrl": {
                            "type": "string"
                          },
                          "path": {
                            "type": "string"
                          },
                          "id": {
                            "type": "string"
                          },
                          "repository": {
                            "type": "string"
                          },
                          "format": {
                            "type": "string"
                          },
                          "checksum": {
                            "type": "object"
                          }
                        }
                      }
                    },
                    "continuationToken": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "items": [
                    {
                      "downloadUrl": "string",
                      "path": "string",
                      "id": "string",
                      "repository": "string",
                      "format": "string",
                      "checksum": {}
                    },
                    {
                      "downloadUrl": "string",
                      "path": "string",
                      "id": "string",
                      "repository": "string",
                      "format": "string",
                      "checksum": {}
                    },
                    {
                      "downloadUrl": "string",
                      "path": "string",
                      "id": "string",
                      "repository": "string",
                      "format": "string",
                      "checksum": {}
                    },
                    {
                      "downloadUrl": "string",
                      "path": "string",
                      "id": "string",
                      "repository": "string",
                      "format": "string",
                      "checksum": {}
                    }
                  ],
                  "continuationToken": "string"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "continuationToken",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "repository",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/assets/{id}": {
      "get": {
        "tags": [
          "Assets"
        ],
        "operationId": "getAssetById",
        "description": "The parameters and request body are for method: getAssetById. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "downloadUrl": {
                      "type": "string"
                    },
                    "path": {
                      "type": "string"
                    },
                    "id": {
                      "type": "string"
                    },
                    "repository": {
                      "type": "string"
                    },
                    "format": {
                      "type": "string"
                    },
                    "checksum": {
                      "type": "object"
                    }
                  }
                },
                "example": {
                  "downloadUrl": "string",
                  "path": "string",
                  "id": "string",
                  "repository": "string",
                  "format": "string",
                  "checksum": {}
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "delete": {
        "tags": [
          "Assets"
        ],
        "operationId": "deleteAsset",
        "description": "The parameters and request body are for method: deleteAsset. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/components/{id}": {
      "get": {
        "tags": [
          "Components"
        ],
        "operationId": "getComponentById",
        "description": "The parameters and request body are for method: getComponentById. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string"
                    },
                    "repository": {
                      "type": "string"
                    },
                    "format": {
                      "type": "string"
                    },
                    "group": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "version": {
                      "type": "string"
                    },
                    "assets": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "downloadUrl": {
                            "type": "string"
                          },
                          "path": {
                            "type": "string"
                          },
                          "id": {
                            "type": "string"
                          },
                          "repository": {
                            "type": "string"
                          },
                          "format": {
                            "type": "string"
                          },
                          "checksum": {
                            "type": "object"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "id": "string",
                  "repository": "string",
                  "format": "string",
                  "group": "string",
                  "name": "string",
                  "version": "string",
                  "assets": [
                    {
                      "downloadUrl": "string",
                      "path": "string",
                      "id": "string",
                      "repository": "string",
                      "format": "string",
                      "checksum": {}
                    },
                    {
                      "downloadUrl": "string",
                      "path": "string",
                      "id": "string",
                      "repository": "string",
                      "format": "string",
                      "checksum": {}
                    },
                    {
                      "downloadUrl": "string",
                      "path": "string",
                      "id": "string",
                      "repository": "string",
                      "format": "string",
                      "checksum": {}
                    }
                  ]
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "delete": {
        "tags": [
          "Components"
        ],
        "operationId": "deleteComponent",
        "description": "The parameters and request body are for method: deleteComponent. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/components": {
      "get": {
        "tags": [
          "Components"
        ],
        "operationId": "getComponents",
        "description": "The parameters and request body are for method: getComponents. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "items": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string"
                          },
                          "repository": {
                            "type": "string"
                          },
                          "format": {
                            "type": "string"
                          },
                          "group": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "version": {
                            "type": "string"
                          },
                          "assets": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "downloadUrl": {
                                  "type": "string"
                                },
                                "path": {
                                  "type": "string"
                                },
                                "id": {
                                  "type": "string"
                                },
                                "repository": {
                                  "type": "string"
                                },
                                "format": {
                                  "type": "string"
                                },
                                "checksum": {
                                  "type": "object"
                                }
                              }
                            }
                          }
                        }
                      }
                    },
                    "continuationToken": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "items": [
                    {
                      "id": "string",
                      "repository": "string",
                      "format": "string",
                      "group": "string",
                      "name": "string",
                      "version": "string",
                      "assets": [
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        }
                      ]
                    },
                    {
                      "id": "string",
                      "repository": "string",
                      "format": "string",
                      "group": "string",
                      "name": "string",
                      "version": "string",
                      "assets": [
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        }
                      ]
                    },
                    {
                      "id": "string",
                      "repository": "string",
                      "format": "string",
                      "group": "string",
                      "name": "string",
                      "version": "string",
                      "assets": [
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        }
                      ]
                    }
                  ],
                  "continuationToken": "string"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "continuationToken",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "repository",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "post": {
        "tags": [
          "Components"
        ],
        "operationId": "uploadComponent",
        "description": "The parameters and request body are for method: uploadComponent. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "repository",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/beta/security/content-selectors/{name}": {
      "get": {
        "tags": [
          "ContentSelectors"
        ],
        "operationId": "getContentSelector",
        "description": "The parameters and request body are for method: getContentSelector. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "name",
            "in": "path",
            "required": true,
            "schema": {
              "title": "name",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "put": {
        "tags": [
          "ContentSelectors"
        ],
        "operationId": "updateContentSelector",
        "description": "The parameters and request body are for method: updateContentSelector. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "name",
            "in": "path",
            "required": true,
            "schema": {
              "title": "name",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "ContentSelectors"
        ],
        "operationId": "deleteContentSelector",
        "description": "The parameters and request body are for method: deleteContentSelector. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "name",
            "in": "path",
            "required": true,
            "schema": {
              "title": "name",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/beta/security/content-selectors": {
      "get": {
        "tags": [
          "ContentSelectors"
        ],
        "operationId": "getContentSelectors",
        "description": "The parameters and request body are for method: getContentSelectors. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "post": {
        "tags": [
          "ContentSelectors"
        ],
        "operationId": "createContentSelector",
        "description": "The parameters and request body are for method: createContentSelector. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v1/repositories": {
      "get": {
        "tags": [
          "Repositories"
        ],
        "operationId": "getRepositories1",
        "description": "The parameters and request body are for method: getRepositories1. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "name": {
                        "type": "string"
                      },
                      "format": {
                        "type": "string"
                      },
                      "type": {
                        "type": "string"
                      },
                      "url": {
                        "type": "string"
                      },
                      "attributes": {
                        "type": "object"
                      }
                    }
                  }
                },
                "example": [
                  {
                    "name": "string",
                    "format": "string",
                    "type": "string",
                    "url": "string",
                    "attributes": {}
                  },
                  {
                    "name": "string",
                    "format": "string",
                    "type": "string",
                    "url": "string",
                    "attributes": {}
                  },
                  {
                    "name": "string",
                    "format": "string",
                    "type": "string",
                    "url": "string",
                    "attributes": {}
                  }
                ]
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/beta/routing-rules": {
      "get": {
        "tags": [
          "RoutingRules"
        ],
        "operationId": "getRoutingRules",
        "description": "The parameters and request body are for method: getRoutingRules. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "name": {
                        "type": "string"
                      },
                      "description": {
                        "type": "string"
                      },
                      "mode": {
                        "type": "string"
                      },
                      "matchers": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      }
                    }
                  }
                },
                "example": [
                  {
                    "name": "string",
                    "description": "string",
                    "mode": "BLOCK",
                    "matchers": [
                      "string"
                    ]
                  },
                  {
                    "name": "string",
                    "description": "string",
                    "mode": "ALLOW",
                    "matchers": [
                      "string",
                      "string",
                      "string",
                      "string",
                      "string",
                      "string",
                      "string"
                    ]
                  },
                  {
                    "name": "string",
                    "description": "string",
                    "mode": "BLOCK",
                    "matchers": [
                      "string",
                      "string",
                      "string"
                    ]
                  }
                ]
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "post": {
        "tags": [
          "RoutingRules"
        ],
        "operationId": "createRoutingRule",
        "description": "The parameters and request body are for method: createRoutingRule. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/routing-rules/{name}": {
      "get": {
        "tags": [
          "RoutingRules"
        ],
        "operationId": "getRoutingRule",
        "description": "The parameters and request body are for method: getRoutingRule. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "name": {
                      "type": "string"
                    },
                    "description": {
                      "type": "string"
                    },
                    "mode": {
                      "type": "string"
                    },
                    "matchers": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    }
                  }
                },
                "example": {
                  "name": "string",
                  "description": "string",
                  "mode": "ALLOW",
                  "matchers": [
                    "string",
                    "string",
                    "string",
                    "string",
                    "string"
                  ]
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "name",
            "in": "path",
            "required": true,
            "schema": {
              "title": "name",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "put": {
        "tags": [
          "RoutingRules"
        ],
        "operationId": "updateRoutingRule",
        "description": "The parameters and request body are for method: updateRoutingRule. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "name",
            "in": "path",
            "required": true,
            "schema": {
              "title": "name",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "RoutingRules"
        ],
        "operationId": "deleteRoutingRule",
        "description": "The parameters and request body are for method: deleteRoutingRule. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "name",
            "in": "path",
            "required": true,
            "schema": {
              "title": "name",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/search/assets": {
      "get": {
        "tags": [
          "Search"
        ],
        "operationId": "searchAssets",
        "description": "The parameters and request body are for method: searchAssets. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "items": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "downloadUrl": {
                            "type": "string"
                          },
                          "path": {
                            "type": "string"
                          },
                          "id": {
                            "type": "string"
                          },
                          "repository": {
                            "type": "string"
                          },
                          "format": {
                            "type": "string"
                          },
                          "checksum": {
                            "type": "object"
                          }
                        }
                      }
                    },
                    "continuationToken": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "items": [
                    {
                      "downloadUrl": "string",
                      "path": "string",
                      "id": "string",
                      "repository": "string",
                      "format": "string",
                      "checksum": {}
                    },
                    {
                      "downloadUrl": "string",
                      "path": "string",
                      "id": "string",
                      "repository": "string",
                      "format": "string",
                      "checksum": {}
                    },
                    {
                      "downloadUrl": "string",
                      "path": "string",
                      "id": "string",
                      "repository": "string",
                      "format": "string",
                      "checksum": {}
                    }
                  ],
                  "continuationToken": "string"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "continuationToken",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sort",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "direction",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "timeout",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "q",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "repository",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "format",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "group",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "name",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "version",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "md5",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sha1",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sha256",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sha512",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "prerelease",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "dockerImageName",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "dockerImageTag",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "dockerLayerId",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "dockerContentDigest",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "mavenGroupId",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "mavenArtifactId",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "mavenBaseVersion",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "mavenExtension",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "mavenClassifier",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "npmScope",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "nugetId",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "nugetTags",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "p2PluginName",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "pypiClassifiers",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "pypiDescription",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "pypiKeywords",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "pypiSummary",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "rubygemsDescription",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "rubygemsPlatform",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "rubygemsSummary",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "yumArchitecture",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/search/assets/download": {
      "get": {
        "tags": [
          "Search"
        ],
        "operationId": "searchAndDownloadAssets",
        "description": "The parameters and request body are for method: searchAndDownloadAssets. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "sort",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "direction",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "timeout",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "q",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "repository",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "format",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "group",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "name",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "version",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "md5",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sha1",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sha256",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sha512",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "prerelease",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "dockerImageName",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "dockerImageTag",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "dockerLayerId",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "dockerContentDigest",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "mavenGroupId",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "mavenArtifactId",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "mavenBaseVersion",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "mavenExtension",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "mavenClassifier",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "npmScope",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "nugetId",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "nugetTags",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "p2PluginName",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "pypiClassifiers",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "pypiDescription",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "pypiKeywords",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "pypiSummary",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "rubygemsDescription",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "rubygemsPlatform",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "rubygemsSummary",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "yumArchitecture",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/search": {
      "get": {
        "tags": [
          "Search"
        ],
        "operationId": "search",
        "description": "The parameters and request body are for method: search. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "items": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string"
                          },
                          "repository": {
                            "type": "string"
                          },
                          "format": {
                            "type": "string"
                          },
                          "group": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "version": {
                            "type": "string"
                          },
                          "assets": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "downloadUrl": {
                                  "type": "string"
                                },
                                "path": {
                                  "type": "string"
                                },
                                "id": {
                                  "type": "string"
                                },
                                "repository": {
                                  "type": "string"
                                },
                                "format": {
                                  "type": "string"
                                },
                                "checksum": {
                                  "type": "object"
                                }
                              }
                            }
                          }
                        }
                      }
                    },
                    "continuationToken": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "items": [
                    {
                      "id": "string",
                      "repository": "string",
                      "format": "string",
                      "group": "string",
                      "name": "string",
                      "version": "string",
                      "assets": [
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        }
                      ]
                    },
                    {
                      "id": "string",
                      "repository": "string",
                      "format": "string",
                      "group": "string",
                      "name": "string",
                      "version": "string",
                      "assets": [
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        }
                      ]
                    },
                    {
                      "id": "string",
                      "repository": "string",
                      "format": "string",
                      "group": "string",
                      "name": "string",
                      "version": "string",
                      "assets": [
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        }
                      ]
                    },
                    {
                      "id": "string",
                      "repository": "string",
                      "format": "string",
                      "group": "string",
                      "name": "string",
                      "version": "string",
                      "assets": [
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        }
                      ]
                    },
                    {
                      "id": "string",
                      "repository": "string",
                      "format": "string",
                      "group": "string",
                      "name": "string",
                      "version": "string",
                      "assets": [
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        }
                      ]
                    },
                    {
                      "id": "string",
                      "repository": "string",
                      "format": "string",
                      "group": "string",
                      "name": "string",
                      "version": "string",
                      "assets": [
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        }
                      ]
                    },
                    {
                      "id": "string",
                      "repository": "string",
                      "format": "string",
                      "group": "string",
                      "name": "string",
                      "version": "string",
                      "assets": [
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        }
                      ]
                    },
                    {
                      "id": "string",
                      "repository": "string",
                      "format": "string",
                      "group": "string",
                      "name": "string",
                      "version": "string",
                      "assets": [
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        },
                        {
                          "downloadUrl": "string",
                          "path": "string",
                          "id": "string",
                          "repository": "string",
                          "format": "string",
                          "checksum": {}
                        }
                      ]
                    }
                  ],
                  "continuationToken": "string"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "continuationToken",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sort",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "direction",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "timeout",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "q",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "repository",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "format",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "group",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "name",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "version",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "md5",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sha1",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sha256",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sha512",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "prerelease",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "dockerImageName",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "dockerImageTag",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "dockerLayerId",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "dockerContentDigest",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "mavenGroupId",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "mavenArtifactId",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "mavenBaseVersion",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "mavenExtension",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "mavenClassifier",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "npmScope",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "nugetId",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "nugetTags",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "p2PluginName",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "pypiClassifiers",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "pypiDescription",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "pypiKeywords",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "pypiSummary",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "rubygemsDescription",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "rubygemsPlatform",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "rubygemsSummary",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "yumArchitecture",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/formats/{format}/upload-specs": {
      "get": {
        "tags": [
          "Formats"
        ],
        "operationId": "get1",
        "description": "The parameters and request body are for method: get1. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "format": {
                      "type": "string"
                    },
                    "multipleUpload": {
                      "type": "boolean"
                    },
                    "componentFields": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "description": {
                            "type": "string"
                          },
                          "optional": {
                            "type": "boolean"
                          },
                          "group": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "assetFields": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "description": {
                            "type": "string"
                          },
                          "optional": {
                            "type": "boolean"
                          },
                          "group": {
                            "type": "string"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "format": "string",
                  "multipleUpload": false,
                  "componentFields": [
                    {
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "optional": true,
                      "group": "string"
                    },
                    {
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "optional": true,
                      "group": "string"
                    },
                    {
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "optional": false,
                      "group": "string"
                    },
                    {
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "optional": true,
                      "group": "string"
                    },
                    {
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "optional": false,
                      "group": "string"
                    },
                    {
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "optional": false,
                      "group": "string"
                    },
                    {
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "optional": false,
                      "group": "string"
                    },
                    {
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "optional": false,
                      "group": "string"
                    },
                    {
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "optional": false,
                      "group": "string"
                    }
                  ],
                  "assetFields": [
                    {
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "optional": true,
                      "group": "string"
                    },
                    {
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "optional": true,
                      "group": "string"
                    },
                    {
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "optional": true,
                      "group": "string"
                    },
                    {
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "optional": false,
                      "group": "string"
                    }
                  ]
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "required": true,
            "schema": {
              "title": "format",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/formats/upload-specs": {
      "get": {
        "tags": [
          "Formats"
        ],
        "operationId": "get2",
        "description": "The parameters and request body are for method: get2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "format": {
                        "type": "string"
                      },
                      "multipleUpload": {
                        "type": "boolean"
                      },
                      "componentFields": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "name": {
                              "type": "string"
                            },
                            "type": {
                              "type": "string"
                            },
                            "description": {
                              "type": "string"
                            },
                            "optional": {
                              "type": "boolean"
                            },
                            "group": {
                              "type": "string"
                            }
                          }
                        }
                      },
                      "assetFields": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "name": {
                              "type": "string"
                            },
                            "type": {
                              "type": "string"
                            },
                            "description": {
                              "type": "string"
                            },
                            "optional": {
                              "type": "boolean"
                            },
                            "group": {
                              "type": "string"
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "example": [
                  {
                    "format": "string",
                    "multipleUpload": true,
                    "componentFields": [
                      {
                        "name": "string",
                        "type": "string",
                        "description": "string",
                        "optional": false,
                        "group": "string"
                      },
                      {
                        "name": "string",
                        "type": "string",
                        "description": "string",
                        "optional": true,
                        "group": "string"
                      },
                      {
                        "name": "string",
                        "type": "string",
                        "description": "string",
                        "optional": false,
                        "group": "string"
                      },
                      {
                        "name": "string",
                        "type": "string",
                        "description": "string",
                        "optional": false,
                        "group": "string"
                      },
                      {
                        "name": "string",
                        "type": "string",
                        "description": "string",
                        "optional": false,
                        "group": "string"
                      },
                      {
                        "name": "string",
                        "type": "string",
                        "description": "string",
                        "optional": false,
                        "group": "string"
                      },
                      {
                        "name": "string",
                        "type": "string",
                        "description": "string",
                        "optional": false,
                        "group": "string"
                      },
                      {
                        "name": "string",
                        "type": "string",
                        "description": "string",
                        "optional": false,
                        "group": "string"
                      },
                      {
                        "name": "string",
                        "type": "string",
                        "description": "string",
                        "optional": false,
                        "group": "string"
                      }
                    ],
                    "assetFields": [
                      {
                        "name": "string",
                        "type": "string",
                        "description": "string",
                        "optional": false,
                        "group": "string"
                      },
                      {
                        "name": "string",
                        "type": "string",
                        "description": "string",
                        "optional": false,
                        "group": "string"
                      },
                      {
                        "name": "string",
                        "type": "string",
                        "description": "string",
                        "optional": false,
                        "group": "string"
                      }
                    ]
                  },
                  {
                    "format": "string",
                    "multipleUpload": true,
                    "componentFields": [
                      {
                        "name": "string",
                        "type": "string",
                        "description": "string",
                        "optional": false,
                        "group": "string"
                      }
                    ],
                    "assetFields": [
                      {
                        "name": "string",
                        "type": "string",
                        "description": "string",
                        "optional": true,
                        "group": "string"
                      }
                    ]
                  },
                  {
                    "format": "string",
                    "multipleUpload": false,
                    "componentFields": [
                      {
                        "name": "string",
                        "type": "string",
                        "description": "string",
                        "optional": true,
                        "group": "string"
                      }
                    ],
                    "assetFields": [
                      {
                        "name": "string",
                        "type": "string",
                        "description": "string",
                        "optional": true,
                        "group": "string"
                      },
                      {
                        "name": "string",
                        "type": "string",
                        "description": "string",
                        "optional": true,
                        "group": "string"
                      },
                      {
                        "name": "string",
                        "type": "string",
                        "description": "string",
                        "optional": false,
                        "group": "string"
                      },
                      {
                        "name": "string",
                        "type": "string",
                        "description": "string",
                        "optional": false,
                        "group": "string"
                      },
                      {
                        "name": "string",
                        "type": "string",
                        "description": "string",
                        "optional": false,
                        "group": "string"
                      },
                      {
                        "name": "string",
                        "type": "string",
                        "description": "string",
                        "optional": true,
                        "group": "string"
                      },
                      {
                        "name": "string",
                        "type": "string",
                        "description": "string",
                        "optional": true,
                        "group": "string"
                      },
                      {
                        "name": "string",
                        "type": "string",
                        "description": "string",
                        "optional": true,
                        "group": "string"
                      },
                      {
                        "name": "string",
                        "type": "string",
                        "description": "string",
                        "optional": false,
                        "group": "string"
                      }
                    ]
                  }
                ]
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/script/{name}": {
      "get": {
        "tags": [
          "Script"
        ],
        "operationId": "read",
        "description": "The parameters and request body are for method: read. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "name": {
                      "type": "string"
                    },
                    "content": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "name": "string",
                  "content": "string",
                  "type": "string"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "name",
            "in": "path",
            "required": true,
            "schema": {
              "title": "name",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "put": {
        "tags": [
          "Script"
        ],
        "operationId": "edit",
        "description": "The parameters and request body are for method: edit. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "name",
            "in": "path",
            "required": true,
            "schema": {
              "title": "name",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "Script"
        ],
        "operationId": "delete1",
        "description": "The parameters and request body are for method: delete1. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "name",
            "in": "path",
            "required": true,
            "schema": {
              "title": "name",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/script": {
      "get": {
        "tags": [
          "Script"
        ],
        "operationId": "browse",
        "description": "The parameters and request body are for method: browse. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "name": {
                        "type": "string"
                      },
                      "content": {
                        "type": "string"
                      },
                      "type": {
                        "type": "string"
                      }
                    }
                  }
                },
                "example": [
                  {
                    "name": "string",
                    "content": "string",
                    "type": "string"
                  },
                  {
                    "name": "string",
                    "content": "string",
                    "type": "string"
                  },
                  {
                    "name": "string",
                    "content": "string",
                    "type": "string"
                  }
                ]
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "post": {
        "tags": [
          "Script"
        ],
        "operationId": "add",
        "description": "The parameters and request body are for method: add. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v1/script/{name}/run": {
      "post": {
        "tags": [
          "Script"
        ],
        "operationId": "run1",
        "description": "The parameters and request body are for method: run1. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "name": {
                      "type": "string"
                    },
                    "result": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "name": "string",
                  "result": "string"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "name",
            "in": "path",
            "required": true,
            "schema": {
              "title": "name",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "body": {
                    "type": "string"
                  }
                }
              },
              "example": {
                "body": "body"
              }
            }
          }
        }
      }
    },
    "/beta/email": {
      "get": {
        "tags": [
          "Email"
        ],
        "operationId": "getEmailConfiguration",
        "description": "The parameters and request body are for method: getEmailConfiguration. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "enabled": {
                      "type": "boolean"
                    },
                    "host": {
                      "type": "string"
                    },
                    "port": {
                      "type": "number"
                    },
                    "username": {
                      "type": "string"
                    },
                    "password": {
                      "type": "string"
                    },
                    "fromAddress": {
                      "type": "string"
                    },
                    "subjectPrefix": {
                      "type": "string"
                    },
                    "startTlsEnabled": {
                      "type": "boolean"
                    },
                    "startTlsRequired": {
                      "type": "boolean"
                    },
                    "sslOnConnectEnabled": {
                      "type": "boolean"
                    },
                    "sslServerIdentityCheckEnabled": {
                      "type": "boolean"
                    },
                    "nexusTrustStoreEnabled": {
                      "type": "boolean"
                    }
                  }
                },
                "example": {
                  "enabled": false,
                  "host": "string",
                  "port": 4,
                  "username": "string",
                  "password": "string",
                  "fromAddress": "nexus@example.org",
                  "subjectPrefix": "string",
                  "startTlsEnabled": false,
                  "startTlsRequired": true,
                  "sslOnConnectEnabled": false,
                  "sslServerIdentityCheckEnabled": true,
                  "nexusTrustStoreEnabled": true
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "put": {
        "tags": [
          "Email"
        ],
        "operationId": "setEmailConfiguration",
        "description": "The parameters and request body are for method: setEmailConfiguration. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "Email"
        ],
        "operationId": "deleteEmailConfiguration",
        "description": "The parameters and request body are for method: deleteEmailConfiguration. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/beta/email/verify": {
      "post": {
        "tags": [
          "Email"
        ],
        "operationId": "testEmailConfiguration",
        "description": "The parameters and request body are for method: testEmailConfiguration. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "body": {
                    "type": "string"
                  }
                }
              },
              "example": {
                "body": "body"
              }
            }
          }
        }
      }
    },
    "/v1/status": {
      "get": {
        "tags": [
          "Status"
        ],
        "operationId": "isAvailable",
        "description": "The parameters and request body are for method: isAvailable. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/status/check": {
      "get": {
        "tags": [
          "Status"
        ],
        "operationId": "getSystemStatusChecks",
        "description": "The parameters and request body are for method: getSystemStatusChecks. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/status/writable": {
      "get": {
        "tags": [
          "Status"
        ],
        "operationId": "isWritable",
        "description": "The parameters and request body are for method: isWritable. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/support/supportzip": {
      "post": {
        "tags": [
          "Support"
        ],
        "operationId": "supportzip",
        "description": "The parameters and request body are for method: supportzip. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/security/ldap": {
      "get": {
        "tags": [
          "SecurityManagementLDAP"
        ],
        "operationId": "getLdapServers",
        "description": "The parameters and request body are for method: getLdapServers. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "post": {
        "tags": [
          "SecurityManagementLDAP"
        ],
        "operationId": "createLdapServer",
        "description": "The parameters and request body are for method: createLdapServer. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/security/ldap/{name}": {
      "get": {
        "tags": [
          "SecurityManagementLDAP"
        ],
        "operationId": "getLdapServer",
        "description": "The parameters and request body are for method: getLdapServer. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "name",
            "in": "path",
            "required": true,
            "schema": {
              "title": "name",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "put": {
        "tags": [
          "SecurityManagementLDAP"
        ],
        "operationId": "updateLdapServer",
        "description": "The parameters and request body are for method: updateLdapServer. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "name",
            "in": "path",
            "required": true,
            "schema": {
              "title": "name",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "SecurityManagementLDAP"
        ],
        "operationId": "deleteLdapServer",
        "description": "The parameters and request body are for method: deleteLdapServer. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "name",
            "in": "path",
            "required": true,
            "schema": {
              "title": "name",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/beta/security/ldap/change-order": {
      "post": {
        "tags": [
          "SecurityManagementLDAP"
        ],
        "operationId": "changeOrder",
        "description": "The parameters and request body are for method: changeOrder. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "body": {
                    "type": "string"
                  }
                }
              },
              "example": {
                "body": "body"
              }
            }
          }
        }
      }
    },
    "/beta/system/license": {
      "get": {
        "tags": [
          "ProductLicensing"
        ],
        "operationId": "getLicenseStatus",
        "description": "The parameters and request body are for method: getLicenseStatus. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "contactEmail": {
                      "type": "string"
                    },
                    "contactCompany": {
                      "type": "string"
                    },
                    "contactName": {
                      "type": "string"
                    },
                    "effectiveDate": {
                      "type": "string"
                    },
                    "expirationDate": {
                      "type": "string"
                    },
                    "licenseType": {
                      "type": "string"
                    },
                    "licensedUsers": {
                      "type": "string"
                    },
                    "fingerprint": {
                      "type": "string"
                    },
                    "features": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "contactEmail": "string",
                  "contactCompany": "string",
                  "contactName": "string",
                  "effectiveDate": "string",
                  "expirationDate": "string",
                  "licenseType": "string",
                  "licensedUsers": "string",
                  "fingerprint": "string",
                  "features": "string"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "post": {
        "tags": [
          "ProductLicensing"
        ],
        "operationId": "setLicense",
        "description": "The parameters and request body are for method: setLicense. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "contactEmail": {
                      "type": "string"
                    },
                    "contactCompany": {
                      "type": "string"
                    },
                    "contactName": {
                      "type": "string"
                    },
                    "effectiveDate": {
                      "type": "string"
                    },
                    "expirationDate": {
                      "type": "string"
                    },
                    "licenseType": {
                      "type": "string"
                    },
                    "licensedUsers": {
                      "type": "string"
                    },
                    "fingerprint": {
                      "type": "string"
                    },
                    "features": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "contactEmail": "string",
                  "contactCompany": "string",
                  "contactName": "string",
                  "effectiveDate": "string",
                  "expirationDate": "string",
                  "licenseType": "string",
                  "licensedUsers": "string",
                  "fingerprint": "string",
                  "features": "string"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "ProductLicensing"
        ],
        "operationId": "removeLicense",
        "description": "The parameters and request body are for method: removeLicense. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/beta/iq": {
      "get": {
        "tags": [
          "ManageIQServerConfiguration"
        ],
        "operationId": "getConfiguration",
        "description": "The parameters and request body are for method: getConfiguration. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "put": {
        "tags": [
          "ManageIQServerConfiguration"
        ],
        "operationId": "updateConfiguration",
        "description": "The parameters and request body are for method: updateConfiguration. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/beta/iq/verify-connection": {
      "post": {
        "tags": [
          "ManageIQServerConfiguration"
        ],
        "operationId": "verifyConnection",
        "description": "The parameters and request body are for method: verifyConnection. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/beta/iq/enable": {
      "post": {
        "tags": [
          "ManageIQServerConfiguration"
        ],
        "operationId": "enableIq",
        "description": "The parameters and request body are for method: enableIq. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/beta/iq/disable": {
      "post": {
        "tags": [
          "ManageIQServerConfiguration"
        ],
        "operationId": "disableIq",
        "description": "The parameters and request body are for method: disableIq. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {}
  }
}