{
  "openapi": "3.1.0",
  "info": {
    "title": "",
    "version": "1.0.0"
  },
  "paths": {
    "/v1/catalog/services/{serviceName}/{serviceVersion}/artifacts/{artifactName}": {
      "get": {
        "tags": [
          "DistributionCatalogServlet"
        ],
        "operationId": "downloadServiceArtifact",
        "description": "The parameters and request body are for method: downloadServiceArtifact. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "serviceName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "serviceName",
              "type": "string"
            }
          },
          {
            "name": "serviceVersion",
            "in": "path",
            "required": true,
            "schema": {
              "title": "serviceVersion",
              "type": "string"
            }
          },
          {
            "name": "artifactName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "artifactName",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/catalog/services/{serviceName}/{serviceVersion}/resourceInstances/{resourceInstanceName}/artifacts/{artifactName}": {
      "get": {
        "tags": [
          "DistributionCatalogServlet"
        ],
        "operationId": "downloadResourceInstanceArtifactByName",
        "description": "The parameters and request body are for method: downloadResourceInstanceArtifactByName. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "serviceName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "serviceName",
              "type": "string"
            }
          },
          {
            "name": "serviceVersion",
            "in": "path",
            "required": true,
            "schema": {
              "title": "serviceVersion",
              "type": "string"
            }
          },
          {
            "name": "resourceInstanceName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "resourceInstanceName",
              "type": "string"
            }
          },
          {
            "name": "artifactName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "artifactName",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/catalog/services/{serviceName}/{serviceVersion}/resources/{resourceName}/{resourceVersion}/artifacts/{artifactName}": {
      "get": {
        "tags": [
          "DistributionCatalogServlet"
        ],
        "operationId": "downloadResourceArtifact",
        "description": "The parameters and request body are for method: downloadResourceArtifact. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "serviceName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "serviceName",
              "type": "string"
            }
          },
          {
            "name": "serviceVersion",
            "in": "path",
            "required": true,
            "schema": {
              "title": "serviceVersion",
              "type": "string"
            }
          },
          {
            "name": "resourceName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "resourceName",
              "type": "string"
            }
          },
          {
            "name": "resourceVersion",
            "in": "path",
            "required": true,
            "schema": {
              "title": "resourceVersion",
              "type": "string"
            }
          },
          {
            "name": "artifactName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "artifactName",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/registerForDistribution": {
      "post": {
        "tags": [
          "DistributionServlet"
        ],
        "operationId": "registerForDistribution",
        "description": "The parameters and request body are for method: registerForDistribution. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "distrNotificationTopicName": {
                      "type": "string"
                    },
                    "distrStatusTopicName": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "distrNotificationTopicName": "string",
                  "distrStatusTopicName": "string"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "string"
              },
              "example": "requestJson"
            }
          }
        }
      }
    },
    "/v1/artifactTypes": {
      "get": {
        "tags": [
          "DistributionServlet"
        ],
        "operationId": "getValidArtifactTypes",
        "description": "The parameters and request body are for method: getValidArtifactTypes. 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/unRegisterForDistribution": {
      "post": {
        "tags": [
          "DistributionServlet"
        ],
        "operationId": "unRegisterForDistribution",
        "description": "The parameters and request body are for method: unRegisterForDistribution. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "distrNotificationTopicName": {
                      "type": "string"
                    },
                    "distrStatusTopicName": {
                      "type": "string"
                    },
                    "notificationUnregisterResult": {
                      "type": "string"
                    },
                    "statusUnregisterResult": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "distrNotificationTopicName": "string",
                  "distrStatusTopicName": "string",
                  "notificationUnregisterResult": "OK",
                  "statusUnregisterResult": "OK"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "string"
              },
              "example": "requestJson"
            }
          }
        }
      }
    },
    "/v1/distributionUebCluster": {
      "get": {
        "tags": [
          "DistributionServlet"
        ],
        "operationId": "getUebServerList",
        "description": "The parameters and request body are for method: getUebServerList. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uebServerList": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    }
                  }
                },
                "example": {
                  "uebServerList": [
                    "string",
                    "string",
                    "string",
                    "string"
                  ]
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/catalog/{assetType}/{uuid}/artifacts": {
      "post": {
        "tags": [
          "ArtifactExternalServlet"
        ],
        "operationId": "uploadArtifact",
        "description": "The parameters and request body are for method: uploadArtifact. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "payloadData": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "listHeatParameters": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uniqueId": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "description": {
                            "type": "string"
                          },
                          "currentValue": {
                            "type": "string"
                          },
                          "defaultValue": {
                            "type": "string"
                          },
                          "empty": {
                            "type": "boolean"
                          },
                          "ownerId": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "creationDate": {
                      "type": "number"
                    },
                    "timeout": {
                      "type": "number"
                    },
                    "esId": {
                      "type": "string"
                    },
                    "description": {
                      "type": "string"
                    },
                    "artifactLabel": {
                      "type": "string"
                    },
                    "artifactUUID": {
                      "type": "string"
                    },
                    "artifactVersion": {
                      "type": "string"
                    },
                    "heatParameters": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uniqueId": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "description": {
                            "type": "string"
                          },
                          "currentValue": {
                            "type": "string"
                          },
                          "defaultValue": {
                            "type": "string"
                          },
                          "empty": {
                            "type": "boolean"
                          },
                          "ownerId": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "artifactGroupType": {
                      "type": "string"
                    },
                    "heatParamsUpdateDate": {
                      "type": "number"
                    },
                    "artifactChecksum": {
                      "type": "string"
                    },
                    "generatedFromId": {
                      "type": "string"
                    },
                    "mandatory": {
                      "type": "boolean"
                    },
                    "serviceApi": {
                      "type": "boolean"
                    },
                    "payloadUpdateDate": {
                      "type": "number"
                    },
                    "artifactName": {
                      "type": "string"
                    },
                    "artifactType": {
                      "type": "string"
                    },
                    "artifactRef": {
                      "type": "string"
                    },
                    "apiUrl": {
                      "type": "string"
                    },
                    "artifactRepository": {
                      "type": "string"
                    },
                    "userIdCreator": {
                      "type": "string"
                    },
                    "artifactCreator": {
                      "type": "string"
                    },
                    "userIdLastUpdater": {
                      "type": "string"
                    },
                    "updaterFullName": {
                      "type": "string"
                    },
                    "isFromCsar": {
                      "type": "boolean"
                    },
                    "requiredArtifacts": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "creatorFullName": {
                      "type": "string"
                    },
                    "artifactDisplayName": {
                      "type": "string"
                    },
                    "uniqueId": {
                      "type": "string"
                    },
                    "generated": {
                      "type": "boolean"
                    },
                    "duplicated": {
                      "type": "boolean"
                    },
                    "lastUpdateDate": {
                      "type": "number"
                    },
                    "empty": {
                      "type": "boolean"
                    },
                    "ownerId": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "payloadData": [
                    "string",
                    "string",
                    "string",
                    "string",
                    "string",
                    "string",
                    "string",
                    "string"
                  ],
                  "listHeatParameters": [
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": false,
                      "ownerId": "string"
                    }
                  ],
                  "creationDate": 6,
                  "timeout": 10,
                  "esId": "string",
                  "description": "string",
                  "artifactLabel": "string",
                  "artifactUUID": "string",
                  "artifactVersion": "string",
                  "heatParameters": [
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    }
                  ],
                  "artifactGroupType": "LIFE_CYCLE",
                  "heatParamsUpdateDate": 8,
                  "artifactChecksum": "string",
                  "generatedFromId": "string",
                  "mandatory": true,
                  "serviceApi": true,
                  "payloadUpdateDate": 4,
                  "artifactName": "string",
                  "artifactType": "string",
                  "artifactRef": "string",
                  "apiUrl": "string",
                  "artifactRepository": "string",
                  "userIdCreator": "string",
                  "artifactCreator": "string",
                  "userIdLastUpdater": "string",
                  "updaterFullName": "string",
                  "isFromCsar": true,
                  "requiredArtifacts": [
                    "string",
                    "string",
                    "string",
                    "string",
                    "string",
                    "string"
                  ],
                  "creatorFullName": "string",
                  "artifactDisplayName": "string",
                  "uniqueId": "string",
                  "generated": false,
                  "duplicated": true,
                  "lastUpdateDate": 4,
                  "empty": true,
                  "ownerId": "string"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "assetType",
            "in": "path",
            "required": true,
            "schema": {
              "title": "assetType",
              "type": "string"
            }
          },
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "title": "uuid",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v1/catalog/{assetType}/{uuid}/artifacts/{artifactUUID}": {
      "get": {
        "tags": [
          "ArtifactExternalServlet"
        ],
        "operationId": "downloadComponentArtifact",
        "description": "The parameters and request body are for method: downloadComponentArtifact. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "assetType",
            "in": "path",
            "required": true,
            "schema": {
              "title": "assetType",
              "type": "string"
            }
          },
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "title": "uuid",
              "type": "string"
            }
          },
          {
            "name": "artifactUUID",
            "in": "path",
            "required": true,
            "schema": {
              "title": "artifactUUID",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "post": {
        "tags": [
          "ArtifactExternalServlet"
        ],
        "operationId": "updateArtifact",
        "description": "The parameters and request body are for method: updateArtifact. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "payloadData": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "listHeatParameters": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uniqueId": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "description": {
                            "type": "string"
                          },
                          "currentValue": {
                            "type": "string"
                          },
                          "defaultValue": {
                            "type": "string"
                          },
                          "empty": {
                            "type": "boolean"
                          },
                          "ownerId": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "creationDate": {
                      "type": "number"
                    },
                    "timeout": {
                      "type": "number"
                    },
                    "esId": {
                      "type": "string"
                    },
                    "description": {
                      "type": "string"
                    },
                    "artifactLabel": {
                      "type": "string"
                    },
                    "artifactUUID": {
                      "type": "string"
                    },
                    "artifactVersion": {
                      "type": "string"
                    },
                    "heatParameters": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uniqueId": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "description": {
                            "type": "string"
                          },
                          "currentValue": {
                            "type": "string"
                          },
                          "defaultValue": {
                            "type": "string"
                          },
                          "empty": {
                            "type": "boolean"
                          },
                          "ownerId": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "artifactGroupType": {
                      "type": "string"
                    },
                    "heatParamsUpdateDate": {
                      "type": "number"
                    },
                    "artifactChecksum": {
                      "type": "string"
                    },
                    "generatedFromId": {
                      "type": "string"
                    },
                    "mandatory": {
                      "type": "boolean"
                    },
                    "serviceApi": {
                      "type": "boolean"
                    },
                    "payloadUpdateDate": {
                      "type": "number"
                    },
                    "artifactName": {
                      "type": "string"
                    },
                    "artifactType": {
                      "type": "string"
                    },
                    "artifactRef": {
                      "type": "string"
                    },
                    "apiUrl": {
                      "type": "string"
                    },
                    "artifactRepository": {
                      "type": "string"
                    },
                    "userIdCreator": {
                      "type": "string"
                    },
                    "artifactCreator": {
                      "type": "string"
                    },
                    "userIdLastUpdater": {
                      "type": "string"
                    },
                    "updaterFullName": {
                      "type": "string"
                    },
                    "isFromCsar": {
                      "type": "boolean"
                    },
                    "requiredArtifacts": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "creatorFullName": {
                      "type": "string"
                    },
                    "artifactDisplayName": {
                      "type": "string"
                    },
                    "uniqueId": {
                      "type": "string"
                    },
                    "generated": {
                      "type": "boolean"
                    },
                    "duplicated": {
                      "type": "boolean"
                    },
                    "lastUpdateDate": {
                      "type": "number"
                    },
                    "empty": {
                      "type": "boolean"
                    },
                    "ownerId": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "payloadData": [
                    "string",
                    "string",
                    "string"
                  ],
                  "listHeatParameters": [
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": false,
                      "ownerId": "string"
                    }
                  ],
                  "creationDate": 7,
                  "timeout": 6,
                  "esId": "string",
                  "description": "string",
                  "artifactLabel": "string",
                  "artifactUUID": "string",
                  "artifactVersion": "string",
                  "heatParameters": [
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": false,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    }
                  ],
                  "artifactGroupType": "OTHER",
                  "heatParamsUpdateDate": 5,
                  "artifactChecksum": "string",
                  "generatedFromId": "string",
                  "mandatory": true,
                  "serviceApi": false,
                  "payloadUpdateDate": 8,
                  "artifactName": "string",
                  "artifactType": "string",
                  "artifactRef": "string",
                  "apiUrl": "string",
                  "artifactRepository": "string",
                  "userIdCreator": "string",
                  "artifactCreator": "string",
                  "userIdLastUpdater": "string",
                  "updaterFullName": "string",
                  "isFromCsar": true,
                  "requiredArtifacts": [
                    "string",
                    "string",
                    "string",
                    "string",
                    "string"
                  ],
                  "creatorFullName": "string",
                  "artifactDisplayName": "string",
                  "uniqueId": "string",
                  "generated": true,
                  "duplicated": false,
                  "lastUpdateDate": 3,
                  "empty": false,
                  "ownerId": "string"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "assetType",
            "in": "path",
            "required": true,
            "schema": {
              "title": "assetType",
              "type": "string"
            }
          },
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "title": "uuid",
              "type": "string"
            }
          },
          {
            "name": "artifactUUID",
            "in": "path",
            "required": true,
            "schema": {
              "title": "artifactUUID",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "ArtifactExternalServlet"
        ],
        "operationId": "deleteArtifact",
        "description": "The parameters and request body are for method: deleteArtifact. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "payloadData": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "listHeatParameters": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uniqueId": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "description": {
                            "type": "string"
                          },
                          "currentValue": {
                            "type": "string"
                          },
                          "defaultValue": {
                            "type": "string"
                          },
                          "empty": {
                            "type": "boolean"
                          },
                          "ownerId": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "creationDate": {
                      "type": "number"
                    },
                    "timeout": {
                      "type": "number"
                    },
                    "esId": {
                      "type": "string"
                    },
                    "description": {
                      "type": "string"
                    },
                    "artifactLabel": {
                      "type": "string"
                    },
                    "artifactUUID": {
                      "type": "string"
                    },
                    "artifactVersion": {
                      "type": "string"
                    },
                    "heatParameters": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uniqueId": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "description": {
                            "type": "string"
                          },
                          "currentValue": {
                            "type": "string"
                          },
                          "defaultValue": {
                            "type": "string"
                          },
                          "empty": {
                            "type": "boolean"
                          },
                          "ownerId": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "artifactGroupType": {
                      "type": "string"
                    },
                    "heatParamsUpdateDate": {
                      "type": "number"
                    },
                    "artifactChecksum": {
                      "type": "string"
                    },
                    "generatedFromId": {
                      "type": "string"
                    },
                    "mandatory": {
                      "type": "boolean"
                    },
                    "serviceApi": {
                      "type": "boolean"
                    },
                    "payloadUpdateDate": {
                      "type": "number"
                    },
                    "artifactName": {
                      "type": "string"
                    },
                    "artifactType": {
                      "type": "string"
                    },
                    "artifactRef": {
                      "type": "string"
                    },
                    "apiUrl": {
                      "type": "string"
                    },
                    "artifactRepository": {
                      "type": "string"
                    },
                    "userIdCreator": {
                      "type": "string"
                    },
                    "artifactCreator": {
                      "type": "string"
                    },
                    "userIdLastUpdater": {
                      "type": "string"
                    },
                    "updaterFullName": {
                      "type": "string"
                    },
                    "isFromCsar": {
                      "type": "boolean"
                    },
                    "requiredArtifacts": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "creatorFullName": {
                      "type": "string"
                    },
                    "artifactDisplayName": {
                      "type": "string"
                    },
                    "uniqueId": {
                      "type": "string"
                    },
                    "generated": {
                      "type": "boolean"
                    },
                    "duplicated": {
                      "type": "boolean"
                    },
                    "lastUpdateDate": {
                      "type": "number"
                    },
                    "empty": {
                      "type": "boolean"
                    },
                    "ownerId": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "payloadData": [
                    "string",
                    "string"
                  ],
                  "listHeatParameters": [
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": false,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": false,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": false,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": false,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": false,
                      "ownerId": "string"
                    }
                  ],
                  "creationDate": 6,
                  "timeout": 4,
                  "esId": "string",
                  "description": "string",
                  "artifactLabel": "string",
                  "artifactUUID": "string",
                  "artifactVersion": "string",
                  "heatParameters": [
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": false,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    }
                  ],
                  "artifactGroupType": "OTHER",
                  "heatParamsUpdateDate": 4,
                  "artifactChecksum": "string",
                  "generatedFromId": "string",
                  "mandatory": false,
                  "serviceApi": true,
                  "payloadUpdateDate": 8,
                  "artifactName": "string",
                  "artifactType": "string",
                  "artifactRef": "string",
                  "apiUrl": "string",
                  "artifactRepository": "string",
                  "userIdCreator": "string",
                  "artifactCreator": "string",
                  "userIdLastUpdater": "string",
                  "updaterFullName": "string",
                  "isFromCsar": false,
                  "requiredArtifacts": [
                    "string",
                    "string",
                    "string",
                    "string",
                    "string",
                    "string"
                  ],
                  "creatorFullName": "string",
                  "artifactDisplayName": "string",
                  "uniqueId": "string",
                  "generated": true,
                  "duplicated": true,
                  "lastUpdateDate": 6,
                  "empty": false,
                  "ownerId": "string"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "assetType",
            "in": "path",
            "required": true,
            "schema": {
              "title": "assetType",
              "type": "string"
            }
          },
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "title": "uuid",
              "type": "string"
            }
          },
          {
            "name": "artifactUUID",
            "in": "path",
            "required": true,
            "schema": {
              "title": "artifactUUID",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/catalog/{assetType}/{uuid}/resourceInstances/{resourceInstanceName}/artifacts": {
      "post": {
        "tags": [
          "ArtifactExternalServlet"
        ],
        "operationId": "uploadArtifactToInstance",
        "description": "The parameters and request body are for method: uploadArtifactToInstance. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "payloadData": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "listHeatParameters": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uniqueId": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "description": {
                            "type": "string"
                          },
                          "currentValue": {
                            "type": "string"
                          },
                          "defaultValue": {
                            "type": "string"
                          },
                          "empty": {
                            "type": "boolean"
                          },
                          "ownerId": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "creationDate": {
                      "type": "number"
                    },
                    "timeout": {
                      "type": "number"
                    },
                    "esId": {
                      "type": "string"
                    },
                    "description": {
                      "type": "string"
                    },
                    "artifactLabel": {
                      "type": "string"
                    },
                    "artifactUUID": {
                      "type": "string"
                    },
                    "artifactVersion": {
                      "type": "string"
                    },
                    "heatParameters": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uniqueId": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "description": {
                            "type": "string"
                          },
                          "currentValue": {
                            "type": "string"
                          },
                          "defaultValue": {
                            "type": "string"
                          },
                          "empty": {
                            "type": "boolean"
                          },
                          "ownerId": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "artifactGroupType": {
                      "type": "string"
                    },
                    "heatParamsUpdateDate": {
                      "type": "number"
                    },
                    "artifactChecksum": {
                      "type": "string"
                    },
                    "generatedFromId": {
                      "type": "string"
                    },
                    "mandatory": {
                      "type": "boolean"
                    },
                    "serviceApi": {
                      "type": "boolean"
                    },
                    "payloadUpdateDate": {
                      "type": "number"
                    },
                    "artifactName": {
                      "type": "string"
                    },
                    "artifactType": {
                      "type": "string"
                    },
                    "artifactRef": {
                      "type": "string"
                    },
                    "apiUrl": {
                      "type": "string"
                    },
                    "artifactRepository": {
                      "type": "string"
                    },
                    "userIdCreator": {
                      "type": "string"
                    },
                    "artifactCreator": {
                      "type": "string"
                    },
                    "userIdLastUpdater": {
                      "type": "string"
                    },
                    "updaterFullName": {
                      "type": "string"
                    },
                    "isFromCsar": {
                      "type": "boolean"
                    },
                    "requiredArtifacts": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "creatorFullName": {
                      "type": "string"
                    },
                    "artifactDisplayName": {
                      "type": "string"
                    },
                    "uniqueId": {
                      "type": "string"
                    },
                    "generated": {
                      "type": "boolean"
                    },
                    "duplicated": {
                      "type": "boolean"
                    },
                    "lastUpdateDate": {
                      "type": "number"
                    },
                    "empty": {
                      "type": "boolean"
                    },
                    "ownerId": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "payloadData": [
                    "string",
                    "string",
                    "string",
                    "string",
                    "string",
                    "string"
                  ],
                  "listHeatParameters": [
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": false,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": false,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": false,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": false,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    }
                  ],
                  "creationDate": 2,
                  "timeout": 9,
                  "esId": "string",
                  "description": "string",
                  "artifactLabel": "string",
                  "artifactUUID": "string",
                  "artifactVersion": "string",
                  "heatParameters": [
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": false,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    }
                  ],
                  "artifactGroupType": "DEPLOYMENT",
                  "heatParamsUpdateDate": 1,
                  "artifactChecksum": "string",
                  "generatedFromId": "string",
                  "mandatory": false,
                  "serviceApi": false,
                  "payloadUpdateDate": 5,
                  "artifactName": "string",
                  "artifactType": "string",
                  "artifactRef": "string",
                  "apiUrl": "string",
                  "artifactRepository": "string",
                  "userIdCreator": "string",
                  "artifactCreator": "string",
                  "userIdLastUpdater": "string",
                  "updaterFullName": "string",
                  "isFromCsar": true,
                  "requiredArtifacts": [
                    "string",
                    "string",
                    "string",
                    "string",
                    "string",
                    "string"
                  ],
                  "creatorFullName": "string",
                  "artifactDisplayName": "string",
                  "uniqueId": "string",
                  "generated": true,
                  "duplicated": false,
                  "lastUpdateDate": 3,
                  "empty": true,
                  "ownerId": "string"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "assetType",
            "in": "path",
            "required": true,
            "schema": {
              "title": "assetType",
              "type": "string"
            }
          },
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "title": "uuid",
              "type": "string"
            }
          },
          {
            "name": "resourceInstanceName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "resourceInstanceName",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v1/catalog/{assetType}/{uuid}/resourceInstances/{artifactUUID}/artifacts/{resourceInstanceName}": {
      "get": {
        "tags": [
          "ArtifactExternalServlet"
        ],
        "operationId": "downloadResourceInstanceArtifact",
        "description": "The parameters and request body are for method: downloadResourceInstanceArtifact. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "assetType",
            "in": "path",
            "required": true,
            "schema": {
              "title": "assetType",
              "type": "string"
            }
          },
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "title": "uuid",
              "type": "string"
            }
          },
          {
            "name": "artifactUUID",
            "in": "path",
            "required": true,
            "schema": {
              "title": "artifactUUID",
              "type": "string"
            }
          },
          {
            "name": "resourceInstanceName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "resourceInstanceName",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "post": {
        "tags": [
          "ArtifactExternalServlet"
        ],
        "operationId": "updateArtifactOnResourceInstance",
        "description": "The parameters and request body are for method: updateArtifactOnResourceInstance. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "payloadData": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "listHeatParameters": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uniqueId": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "description": {
                            "type": "string"
                          },
                          "currentValue": {
                            "type": "string"
                          },
                          "defaultValue": {
                            "type": "string"
                          },
                          "empty": {
                            "type": "boolean"
                          },
                          "ownerId": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "creationDate": {
                      "type": "number"
                    },
                    "timeout": {
                      "type": "number"
                    },
                    "esId": {
                      "type": "string"
                    },
                    "description": {
                      "type": "string"
                    },
                    "artifactLabel": {
                      "type": "string"
                    },
                    "artifactUUID": {
                      "type": "string"
                    },
                    "artifactVersion": {
                      "type": "string"
                    },
                    "heatParameters": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uniqueId": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "description": {
                            "type": "string"
                          },
                          "currentValue": {
                            "type": "string"
                          },
                          "defaultValue": {
                            "type": "string"
                          },
                          "empty": {
                            "type": "boolean"
                          },
                          "ownerId": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "artifactGroupType": {
                      "type": "string"
                    },
                    "heatParamsUpdateDate": {
                      "type": "number"
                    },
                    "artifactChecksum": {
                      "type": "string"
                    },
                    "generatedFromId": {
                      "type": "string"
                    },
                    "mandatory": {
                      "type": "boolean"
                    },
                    "serviceApi": {
                      "type": "boolean"
                    },
                    "payloadUpdateDate": {
                      "type": "number"
                    },
                    "artifactName": {
                      "type": "string"
                    },
                    "artifactType": {
                      "type": "string"
                    },
                    "artifactRef": {
                      "type": "string"
                    },
                    "apiUrl": {
                      "type": "string"
                    },
                    "artifactRepository": {
                      "type": "string"
                    },
                    "userIdCreator": {
                      "type": "string"
                    },
                    "artifactCreator": {
                      "type": "string"
                    },
                    "userIdLastUpdater": {
                      "type": "string"
                    },
                    "updaterFullName": {
                      "type": "string"
                    },
                    "isFromCsar": {
                      "type": "boolean"
                    },
                    "requiredArtifacts": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "creatorFullName": {
                      "type": "string"
                    },
                    "artifactDisplayName": {
                      "type": "string"
                    },
                    "uniqueId": {
                      "type": "string"
                    },
                    "generated": {
                      "type": "boolean"
                    },
                    "duplicated": {
                      "type": "boolean"
                    },
                    "lastUpdateDate": {
                      "type": "number"
                    },
                    "empty": {
                      "type": "boolean"
                    },
                    "ownerId": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "payloadData": [
                    "string",
                    "string",
                    "string",
                    "string",
                    "string"
                  ],
                  "listHeatParameters": [
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": false,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": false,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": false,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": false,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": false,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": false,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": false,
                      "ownerId": "string"
                    }
                  ],
                  "creationDate": 8,
                  "timeout": 5,
                  "esId": "string",
                  "description": "string",
                  "artifactLabel": "string",
                  "artifactUUID": "string",
                  "artifactVersion": "string",
                  "heatParameters": [
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": false,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": false,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": false,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    }
                  ],
                  "artifactGroupType": "DEPLOYMENT",
                  "heatParamsUpdateDate": 3,
                  "artifactChecksum": "string",
                  "generatedFromId": "string",
                  "mandatory": false,
                  "serviceApi": true,
                  "payloadUpdateDate": 7,
                  "artifactName": "string",
                  "artifactType": "string",
                  "artifactRef": "string",
                  "apiUrl": "string",
                  "artifactRepository": "string",
                  "userIdCreator": "string",
                  "artifactCreator": "string",
                  "userIdLastUpdater": "string",
                  "updaterFullName": "string",
                  "isFromCsar": true,
                  "requiredArtifacts": [
                    "string",
                    "string",
                    "string",
                    "string",
                    "string",
                    "string",
                    "string",
                    "string",
                    "string",
                    "string"
                  ],
                  "creatorFullName": "string",
                  "artifactDisplayName": "string",
                  "uniqueId": "string",
                  "generated": false,
                  "duplicated": true,
                  "lastUpdateDate": 10,
                  "empty": false,
                  "ownerId": "string"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "assetType",
            "in": "path",
            "required": true,
            "schema": {
              "title": "assetType",
              "type": "string"
            }
          },
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "title": "uuid",
              "type": "string"
            }
          },
          {
            "name": "artifactUUID",
            "in": "path",
            "required": true,
            "schema": {
              "title": "artifactUUID",
              "type": "string"
            }
          },
          {
            "name": "resourceInstanceName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "resourceInstanceName",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "ArtifactExternalServlet"
        ],
        "operationId": "deleteArtifactOnResourceInstance",
        "description": "The parameters and request body are for method: deleteArtifactOnResourceInstance. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "payloadData": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "listHeatParameters": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uniqueId": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "description": {
                            "type": "string"
                          },
                          "currentValue": {
                            "type": "string"
                          },
                          "defaultValue": {
                            "type": "string"
                          },
                          "empty": {
                            "type": "boolean"
                          },
                          "ownerId": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "creationDate": {
                      "type": "number"
                    },
                    "timeout": {
                      "type": "number"
                    },
                    "esId": {
                      "type": "string"
                    },
                    "description": {
                      "type": "string"
                    },
                    "artifactLabel": {
                      "type": "string"
                    },
                    "artifactUUID": {
                      "type": "string"
                    },
                    "artifactVersion": {
                      "type": "string"
                    },
                    "heatParameters": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uniqueId": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "description": {
                            "type": "string"
                          },
                          "currentValue": {
                            "type": "string"
                          },
                          "defaultValue": {
                            "type": "string"
                          },
                          "empty": {
                            "type": "boolean"
                          },
                          "ownerId": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "artifactGroupType": {
                      "type": "string"
                    },
                    "heatParamsUpdateDate": {
                      "type": "number"
                    },
                    "artifactChecksum": {
                      "type": "string"
                    },
                    "generatedFromId": {
                      "type": "string"
                    },
                    "mandatory": {
                      "type": "boolean"
                    },
                    "serviceApi": {
                      "type": "boolean"
                    },
                    "payloadUpdateDate": {
                      "type": "number"
                    },
                    "artifactName": {
                      "type": "string"
                    },
                    "artifactType": {
                      "type": "string"
                    },
                    "artifactRef": {
                      "type": "string"
                    },
                    "apiUrl": {
                      "type": "string"
                    },
                    "artifactRepository": {
                      "type": "string"
                    },
                    "userIdCreator": {
                      "type": "string"
                    },
                    "artifactCreator": {
                      "type": "string"
                    },
                    "userIdLastUpdater": {
                      "type": "string"
                    },
                    "updaterFullName": {
                      "type": "string"
                    },
                    "isFromCsar": {
                      "type": "boolean"
                    },
                    "requiredArtifacts": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "creatorFullName": {
                      "type": "string"
                    },
                    "artifactDisplayName": {
                      "type": "string"
                    },
                    "uniqueId": {
                      "type": "string"
                    },
                    "generated": {
                      "type": "boolean"
                    },
                    "duplicated": {
                      "type": "boolean"
                    },
                    "lastUpdateDate": {
                      "type": "number"
                    },
                    "empty": {
                      "type": "boolean"
                    },
                    "ownerId": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "payloadData": [
                    "string",
                    "string",
                    "string",
                    "string",
                    "string"
                  ],
                  "listHeatParameters": [
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": false,
                      "ownerId": "string"
                    }
                  ],
                  "creationDate": 9,
                  "timeout": 1,
                  "esId": "string",
                  "description": "string",
                  "artifactLabel": "string",
                  "artifactUUID": "string",
                  "artifactVersion": "string",
                  "heatParameters": [
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": false,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": false,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": false,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": false,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": false,
                      "ownerId": "string"
                    }
                  ],
                  "artifactGroupType": "INFORMATIONAL",
                  "heatParamsUpdateDate": 9,
                  "artifactChecksum": "string",
                  "generatedFromId": "string",
                  "mandatory": false,
                  "serviceApi": true,
                  "payloadUpdateDate": 3,
                  "artifactName": "string",
                  "artifactType": "string",
                  "artifactRef": "string",
                  "apiUrl": "string",
                  "artifactRepository": "string",
                  "userIdCreator": "string",
                  "artifactCreator": "string",
                  "userIdLastUpdater": "string",
                  "updaterFullName": "string",
                  "isFromCsar": true,
                  "requiredArtifacts": [
                    "string",
                    "string",
                    "string",
                    "string",
                    "string",
                    "string"
                  ],
                  "creatorFullName": "string",
                  "artifactDisplayName": "string",
                  "uniqueId": "string",
                  "generated": true,
                  "duplicated": true,
                  "lastUpdateDate": 7,
                  "empty": false,
                  "ownerId": "string"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "assetType",
            "in": "path",
            "required": true,
            "schema": {
              "title": "assetType",
              "type": "string"
            }
          },
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "title": "uuid",
              "type": "string"
            }
          },
          {
            "name": "artifactUUID",
            "in": "path",
            "required": true,
            "schema": {
              "title": "artifactUUID",
              "type": "string"
            }
          },
          {
            "name": "resourceInstanceName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "resourceInstanceName",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/catalog/resources/{uuid}/interfaces/{operationUUID}/artifacts/{artifactUUID}": {
      "post": {
        "tags": [
          "ArtifactExternalServlet"
        ],
        "operationId": "uploadInterfaceOperationArtifact",
        "description": "The parameters and request body are for method: uploadInterfaceOperationArtifact. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "payloadData": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "listHeatParameters": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uniqueId": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "description": {
                            "type": "string"
                          },
                          "currentValue": {
                            "type": "string"
                          },
                          "defaultValue": {
                            "type": "string"
                          },
                          "empty": {
                            "type": "boolean"
                          },
                          "ownerId": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "creationDate": {
                      "type": "number"
                    },
                    "timeout": {
                      "type": "number"
                    },
                    "esId": {
                      "type": "string"
                    },
                    "description": {
                      "type": "string"
                    },
                    "artifactLabel": {
                      "type": "string"
                    },
                    "artifactUUID": {
                      "type": "string"
                    },
                    "artifactVersion": {
                      "type": "string"
                    },
                    "heatParameters": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "uniqueId": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "description": {
                            "type": "string"
                          },
                          "currentValue": {
                            "type": "string"
                          },
                          "defaultValue": {
                            "type": "string"
                          },
                          "empty": {
                            "type": "boolean"
                          },
                          "ownerId": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "artifactGroupType": {
                      "type": "string"
                    },
                    "heatParamsUpdateDate": {
                      "type": "number"
                    },
                    "artifactChecksum": {
                      "type": "string"
                    },
                    "generatedFromId": {
                      "type": "string"
                    },
                    "mandatory": {
                      "type": "boolean"
                    },
                    "serviceApi": {
                      "type": "boolean"
                    },
                    "payloadUpdateDate": {
                      "type": "number"
                    },
                    "artifactName": {
                      "type": "string"
                    },
                    "artifactType": {
                      "type": "string"
                    },
                    "artifactRef": {
                      "type": "string"
                    },
                    "apiUrl": {
                      "type": "string"
                    },
                    "artifactRepository": {
                      "type": "string"
                    },
                    "userIdCreator": {
                      "type": "string"
                    },
                    "artifactCreator": {
                      "type": "string"
                    },
                    "userIdLastUpdater": {
                      "type": "string"
                    },
                    "updaterFullName": {
                      "type": "string"
                    },
                    "isFromCsar": {
                      "type": "boolean"
                    },
                    "requiredArtifacts": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "creatorFullName": {
                      "type": "string"
                    },
                    "artifactDisplayName": {
                      "type": "string"
                    },
                    "uniqueId": {
                      "type": "string"
                    },
                    "generated": {
                      "type": "boolean"
                    },
                    "duplicated": {
                      "type": "boolean"
                    },
                    "lastUpdateDate": {
                      "type": "number"
                    },
                    "empty": {
                      "type": "boolean"
                    },
                    "ownerId": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "payloadData": [
                    "string",
                    "string",
                    "string",
                    "string",
                    "string",
                    "string",
                    "string"
                  ],
                  "listHeatParameters": [
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": false,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    }
                  ],
                  "creationDate": 9,
                  "timeout": 2,
                  "esId": "string",
                  "description": "string",
                  "artifactLabel": "string",
                  "artifactUUID": "string",
                  "artifactVersion": "string",
                  "heatParameters": [
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": false,
                      "ownerId": "string"
                    },
                    {
                      "uniqueId": "string",
                      "name": "string",
                      "type": "string",
                      "description": "string",
                      "currentValue": "string",
                      "defaultValue": "string",
                      "empty": true,
                      "ownerId": "string"
                    }
                  ],
                  "artifactGroupType": "SERVICE_API",
                  "heatParamsUpdateDate": 1,
                  "artifactChecksum": "string",
                  "generatedFromId": "string",
                  "mandatory": true,
                  "serviceApi": false,
                  "payloadUpdateDate": 2,
                  "artifactName": "string",
                  "artifactType": "string",
                  "artifactRef": "string",
                  "apiUrl": "string",
                  "artifactRepository": "string",
                  "userIdCreator": "string",
                  "artifactCreator": "string",
                  "userIdLastUpdater": "string",
                  "updaterFullName": "string",
                  "isFromCsar": true,
                  "requiredArtifacts": [
                    "string",
                    "string",
                    "string"
                  ],
                  "creatorFullName": "string",
                  "artifactDisplayName": "string",
                  "uniqueId": "string",
                  "generated": false,
                  "duplicated": false,
                  "lastUpdateDate": 2,
                  "empty": true,
                  "ownerId": "string"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "title": "uuid",
              "type": "string"
            }
          },
          {
            "name": "operationUUID",
            "in": "path",
            "required": true,
            "schema": {
              "title": "operationUUID",
              "type": "string"
            }
          },
          {
            "name": "artifactUUID",
            "in": "path",
            "required": true,
            "schema": {
              "title": "artifactUUID",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v1/catalog/{assetType}": {
      "get": {
        "tags": [
          "AssetMetadataExternalServlet"
        ],
        "operationId": "getAssetListExternal",
        "description": "The parameters and request body are for method: getAssetListExternal. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "uuid": {
                        "type": "string"
                      },
                      "invariantUUID": {
                        "type": "string"
                      },
                      "name": {
                        "type": "string"
                      },
                      "version": {
                        "type": "string"
                      },
                      "toscaModelURL": {
                        "type": "string"
                      }
                    }
                  }
                },
                "example": [
                  {
                    "uuid": "string",
                    "invariantUUID": "string",
                    "name": "string",
                    "version": "string",
                    "toscaModelURL": "string"
                  },
                  {
                    "uuid": "string",
                    "invariantUUID": "string",
                    "name": "string",
                    "version": "string",
                    "toscaModelURL": "string"
                  },
                  {
                    "uuid": "string",
                    "invariantUUID": "string",
                    "name": "string",
                    "version": "string",
                    "toscaModelURL": "string"
                  }
                ]
              }
            }
          }
        },
        "parameters": [
          {
            "name": "assetType",
            "in": "path",
            "required": true,
            "schema": {
              "title": "assetType",
              "type": "string"
            }
          },
          {
            "name": "category",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "subCategory",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "distributionStatus",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "resourceType",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "post": {
        "tags": [
          "CRUDExternalServlet"
        ],
        "operationId": "createResourceExternal",
        "description": "The parameters and request body are for method: createResourceExternal. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "assetType",
            "in": "path",
            "required": true,
            "schema": {
              "title": "assetType",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v1/catalog/{assetType}/{uuid}/metadata": {
      "get": {
        "tags": [
          "AssetMetadataExternalServlet"
        ],
        "operationId": "getAssetSpecificMetadataByUuidExternal",
        "description": "The parameters and request body are for method: getAssetSpecificMetadataByUuidExternal. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "uuid": {
                        "type": "string"
                      },
                      "invariantUUID": {
                        "type": "string"
                      },
                      "name": {
                        "type": "string"
                      },
                      "version": {
                        "type": "string"
                      },
                      "toscaModelURL": {
                        "type": "string"
                      }
                    }
                  }
                },
                "example": [
                  {
                    "uuid": "string",
                    "invariantUUID": "string",
                    "name": "string",
                    "version": "string",
                    "toscaModelURL": "string"
                  },
                  {
                    "uuid": "string",
                    "invariantUUID": "string",
                    "name": "string",
                    "version": "string",
                    "toscaModelURL": "string"
                  },
                  {
                    "uuid": "string",
                    "invariantUUID": "string",
                    "name": "string",
                    "version": "string",
                    "toscaModelURL": "string"
                  }
                ]
              }
            }
          }
        },
        "parameters": [
          {
            "name": "assetType",
            "in": "path",
            "required": true,
            "schema": {
              "title": "assetType",
              "type": "string"
            }
          },
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "title": "uuid",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/catalog/{assetType}/{uuid}/toscaModel": {
      "get": {
        "tags": [
          "AssetMetadataExternalServlet"
        ],
        "operationId": "getToscaModelExternal",
        "description": "The parameters and request body are for method: getToscaModelExternal. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "assetType",
            "in": "path",
            "required": true,
            "schema": {
              "title": "assetType",
              "type": "string"
            }
          },
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "title": "uuid",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/catalog/{lifecycleOperation}/{uuid}/lifecycleState/{assetType}": {
      "post": {
        "tags": [
          "CRUDExternalServlet"
        ],
        "operationId": "changeResourceStateExternal",
        "description": "The parameters and request body are for method: changeResourceStateExternal. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "uuid": {
                      "type": "string"
                    },
                    "invariantUUID": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "version": {
                      "type": "string"
                    },
                    "toscaModelURL": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "uuid": "string",
                  "invariantUUID": "string",
                  "name": "string",
                  "version": "string",
                  "toscaModelURL": "string"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "lifecycleOperation",
            "in": "path",
            "required": true,
            "schema": {
              "title": "lifecycleOperation",
              "type": "string"
            }
          },
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "title": "uuid",
              "type": "string"
            }
          },
          {
            "name": "assetType",
            "in": "path",
            "required": true,
            "schema": {
              "title": "assetType",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v1/catalog/services/{serviceUUID}/distribution/{opEnvId}/activate": {
      "post": {
        "tags": [
          "ServiceActivationExternalServlet"
        ],
        "operationId": "activateServiceExternal",
        "description": "The parameters and request body are for method: activateServiceExternal. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "serviceUUID",
            "in": "path",
            "required": true,
            "schema": {
              "title": "serviceUUID",
              "type": "string"
            }
          },
          {
            "name": "opEnvId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "opEnvId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "body": {
                    "type": "string"
                  }
                }
              },
              "example": {
                "body": "body"
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {}
  }
}