{
  "openapi" : "3.0.1",
  "info" : {
    "title" : "OpenAPI definition",
    "version" : "v0"
  },
  "servers" : [ {
    "url" : "/"
  } ],
  "paths" : {
    "/v1/tasks/{taskId}" : {
      "get" : {
        "tags" : [ "task-controller-impl" ],
        "summary" : "getTaskById",
        "operationId" : "getTaskById",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudTask"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudTask"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      },
      "put" : {
        "tags" : [ "task-controller-impl" ],
        "summary" : "updateTask",
        "operationId" : "updateTask",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "Content-type",
          "in" : "header",
          "schema" : {
            "type" : "string",
            "enum" : [ "application/json" ]
          }
        } ],
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/UpdateTaskPayload"
              }
            }
          },
          "required" : true
        },
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudTask"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudTask"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      },
      "delete" : {
        "tags" : [ "task-controller-impl" ],
        "summary" : "deleteTask",
        "operationId" : "deleteTask",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudTask"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudTask"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/tasks/{taskId}/variables/{variableName}" : {
      "put" : {
        "tags" : [ "task-variable-controller-impl" ],
        "summary" : "updateVariable",
        "operationId" : "updateVariable",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "variableName",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "Content-type",
          "in" : "header",
          "schema" : {
            "type" : "string",
            "enum" : [ "application/json" ]
          }
        } ],
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/UpdateTaskVariablePayload"
              }
            }
          },
          "required" : true
        },
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK"
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/process-instances/{processInstanceId}" : {
      "get" : {
        "tags" : [ "process-instance-controller-impl" ],
        "summary" : "getProcessInstanceById",
        "operationId" : "getProcessInstanceById",
        "parameters" : [ {
          "name" : "processInstanceId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      },
      "put" : {
        "tags" : [ "process-instance-controller-impl" ],
        "summary" : "updateProcess",
        "operationId" : "updateProcess",
        "parameters" : [ {
          "name" : "processInstanceId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "Content-type",
          "in" : "header",
          "schema" : {
            "type" : "string",
            "enum" : [ "application/json" ]
          }
        } ],
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/UpdateProcessPayload"
              }
            }
          },
          "required" : true
        },
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      },
      "delete" : {
        "tags" : [ "process-instance-controller-impl" ],
        "summary" : "deleteProcessInstance",
        "operationId" : "deleteProcessInstance",
        "parameters" : [ {
          "name" : "processInstanceId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/process-instances/message" : {
      "put" : {
        "tags" : [ "process-instance-controller-impl" ],
        "summary" : "receive",
        "operationId" : "receive",
        "parameters" : [ {
          "name" : "Content-type",
          "in" : "header",
          "schema" : {
            "type" : "string",
            "enum" : [ "application/json" ]
          }
        } ],
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/ReceiveMessagePayload"
              }
            }
          },
          "required" : true
        },
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK"
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      },
      "post" : {
        "tags" : [ "process-instance-controller-impl" ],
        "summary" : "sendStartMessage",
        "operationId" : "sendStartMessage",
        "parameters" : [ {
          "name" : "Content-type",
          "in" : "header",
          "schema" : {
            "type" : "string",
            "enum" : [ "application/json" ]
          }
        } ],
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/StartMessagePayload"
              }
            }
          },
          "required" : true
        },
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/admin/v1/tasks/{taskId}" : {
      "get" : {
        "tags" : [ "task-admin-controller-impl" ],
        "summary" : "getTaskById_1",
        "operationId" : "getTaskById_1",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudTask"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudTask"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      },
      "put" : {
        "tags" : [ "task-admin-controller-impl" ],
        "summary" : "updateTask_1",
        "operationId" : "updateTask_1",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/UpdateTaskPayload"
              }
            }
          },
          "required" : true
        },
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudTask"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudTask"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      },
      "delete" : {
        "tags" : [ "task-admin-controller-impl" ],
        "summary" : "deleteTask_1",
        "operationId" : "deleteTask_1",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudTask"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudTask"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/admin/v1/tasks/{taskId}/variables/{variableName}" : {
      "put" : {
        "tags" : [ "task-variable-admin-controller-impl" ],
        "summary" : "updateVariable_1",
        "operationId" : "updateVariable_1",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "variableName",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/UpdateTaskVariablePayload"
              }
            }
          },
          "required" : true
        },
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK"
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/admin/v1/process-instances/{processInstanceId}" : {
      "get" : {
        "tags" : [ "process-instance-admin-controller-impl" ],
        "summary" : "getProcessInstanceById_1",
        "operationId" : "getProcessInstanceById_1",
        "parameters" : [ {
          "name" : "processInstanceId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      },
      "put" : {
        "tags" : [ "process-instance-admin-controller-impl" ],
        "summary" : "updateProcess_1",
        "operationId" : "updateProcess_1",
        "parameters" : [ {
          "name" : "processInstanceId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/UpdateProcessPayload"
              }
            }
          },
          "required" : true
        },
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      },
      "delete" : {
        "tags" : [ "process-instance-admin-controller-impl" ],
        "summary" : "deleteProcessInstance_1",
        "operationId" : "deleteProcessInstance_1",
        "parameters" : [ {
          "name" : "processInstanceId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/admin/v1/process-instances/{processInstanceId}/variables" : {
      "get" : {
        "tags" : [ "process-instance-variable-admin-controller-impl" ],
        "summary" : "getVariables_3",
        "operationId" : "getVariables_3",
        "parameters" : [ {
          "name" : "processInstanceId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudVariableInstance"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudVariableInstance"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      },
      "put" : {
        "tags" : [ "process-instance-variable-admin-controller-impl" ],
        "summary" : "updateVariables",
        "operationId" : "updateVariables",
        "parameters" : [ {
          "name" : "processInstanceId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/SetProcessVariablesPayload"
              }
            }
          },
          "required" : true
        },
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK"
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      },
      "delete" : {
        "tags" : [ "process-instance-variable-admin-controller-impl" ],
        "summary" : "removeVariables",
        "operationId" : "removeVariables",
        "parameters" : [ {
          "name" : "processInstanceId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/RemoveProcessVariablesPayload"
              }
            }
          },
          "required" : true
        },
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK"
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/admin/v1/process-instances/message" : {
      "put" : {
        "tags" : [ "process-instance-admin-controller-impl" ],
        "summary" : "receive_1",
        "operationId" : "receive_1",
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/ReceiveMessagePayload"
              }
            }
          },
          "required" : true
        },
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK"
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      },
      "post" : {
        "tags" : [ "process-instance-admin-controller-impl" ],
        "summary" : "start",
        "operationId" : "start",
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/StartMessagePayload"
              }
            }
          },
          "required" : true
        },
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/tasks" : {
      "get" : {
        "tags" : [ "task-controller-impl" ],
        "summary" : "getTasks",
        "operationId" : "getTasks",
        "parameters" : [ {
          "name" : "maxItems",
          "in" : "query",
          "required" : false,
          "style" : "form",
          "schema" : {
            "type" : "integer",
            "format" : "int32"
          }
        }, {
          "name" : "skipCount",
          "in" : "query",
          "required" : false,
          "style" : "form",
          "schema" : {
            "type" : "integer",
            "format" : "int32"
          }
        }, {
          "name" : "sort",
          "in" : "query",
          "required" : false,
          "style" : "form",
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudTask"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudTask"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      },
      "post" : {
        "tags" : [ "task-controller-impl" ],
        "summary" : "createNewTask",
        "operationId" : "createNewTask",
        "parameters" : [ {
          "name" : "Content-type",
          "in" : "header",
          "schema" : {
            "type" : "string",
            "enum" : [ "application/json" ]
          }
        } ],
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/CreateTaskPayload"
              }
            }
          },
          "required" : true
        },
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudTask"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudTask"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/tasks/{taskId}/variables" : {
      "get" : {
        "tags" : [ "task-variable-controller-impl" ],
        "summary" : "getVariables",
        "operationId" : "getVariables",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "Content-type",
          "in" : "header",
          "schema" : {
            "type" : "string",
            "enum" : [ "application/json" ]
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudVariableInstance"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudVariableInstance"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      },
      "post" : {
        "tags" : [ "task-variable-controller-impl" ],
        "summary" : "createVariable",
        "operationId" : "createVariable",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "Content-type",
          "in" : "header",
          "schema" : {
            "type" : "string",
            "enum" : [ "application/json" ]
          }
        } ],
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/CreateTaskVariablePayload"
              }
            }
          },
          "required" : true
        },
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK"
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/tasks/{taskId}/save" : {
      "post" : {
        "tags" : [ "task-controller-impl" ],
        "summary" : "saveTask",
        "operationId" : "saveTask",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "Content-type",
          "in" : "header",
          "schema" : {
            "type" : "string",
            "enum" : [ "application/json" ]
          }
        } ],
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/SaveTaskPayload"
              }
            }
          },
          "required" : true
        },
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK"
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/tasks/{taskId}/release" : {
      "post" : {
        "tags" : [ "task-controller-impl" ],
        "summary" : "releaseTask",
        "operationId" : "releaseTask",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudTask"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudTask"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/tasks/{taskId}/complete" : {
      "post" : {
        "tags" : [ "task-controller-impl" ],
        "summary" : "completeTask",
        "operationId" : "completeTask",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "Content-type",
          "in" : "header",
          "schema" : {
            "type" : "string",
            "enum" : [ "application/json" ]
          }
        } ],
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/CompleteTaskPayload"
              }
            }
          }
        },
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudTask"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudTask"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/tasks/{taskId}/claim" : {
      "post" : {
        "tags" : [ "task-controller-impl" ],
        "summary" : "claimTask",
        "operationId" : "claimTask",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudTask"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudTask"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/tasks/{taskId}/candidate-users" : {
      "get" : {
        "tags" : [ "candidate-user-controller-impl" ],
        "summary" : "getUserCandidates",
        "operationId" : "getUserCandidates",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCandidateUser"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCandidateUser"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      },
      "post" : {
        "tags" : [ "candidate-user-controller-impl" ],
        "summary" : "addCandidateUsers",
        "operationId" : "addCandidateUsers",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/CandidateUsersPayload"
              }
            }
          },
          "required" : true
        },
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK"
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      },
      "delete" : {
        "tags" : [ "candidate-user-controller-impl" ],
        "summary" : "deleteCandidateUsers",
        "operationId" : "deleteCandidateUsers",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/CandidateUsersPayload"
              }
            }
          },
          "required" : true
        },
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK"
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/tasks/{taskId}/candidate-groups" : {
      "get" : {
        "tags" : [ "candidate-group-controller-impl" ],
        "summary" : "getGroupCandidates",
        "operationId" : "getGroupCandidates",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCandidateGroup"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCandidateGroup"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      },
      "post" : {
        "tags" : [ "candidate-group-controller-impl" ],
        "summary" : "addCandidateGroups",
        "operationId" : "addCandidateGroups",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/CandidateGroupsPayload"
              }
            }
          },
          "required" : true
        },
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK"
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      },
      "delete" : {
        "tags" : [ "candidate-group-controller-impl" ],
        "summary" : "deleteCandidateGroups",
        "operationId" : "deleteCandidateGroups",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/CandidateGroupsPayload"
              }
            }
          },
          "required" : true
        },
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK"
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/tasks/{taskId}/assign" : {
      "post" : {
        "tags" : [ "task-controller-impl" ],
        "summary" : "assign",
        "operationId" : "assign",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "Content-type",
          "in" : "header",
          "schema" : {
            "type" : "string",
            "enum" : [ "application/json" ]
          }
        } ],
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/AssignTaskPayload"
              }
            }
          },
          "required" : true
        },
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudTask"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudTask"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/process-instances" : {
      "get" : {
        "tags" : [ "process-instance-controller-impl" ],
        "summary" : "getProcessInstances",
        "operationId" : "getProcessInstances",
        "parameters" : [ {
          "name" : "maxItems",
          "in" : "query",
          "required" : false,
          "style" : "form",
          "schema" : {
            "type" : "integer",
            "format" : "int32"
          }
        }, {
          "name" : "skipCount",
          "in" : "query",
          "required" : false,
          "style" : "form",
          "schema" : {
            "type" : "integer",
            "format" : "int32"
          }
        }, {
          "name" : "sort",
          "in" : "query",
          "required" : false,
          "style" : "form",
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudProcessInstance"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudProcessInstance"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      },
      "post" : {
        "tags" : [ "process-instance-controller-impl" ],
        "summary" : "startProcess",
        "operationId" : "startProcess",
        "parameters" : [ {
          "name" : "Content-type",
          "in" : "header",
          "schema" : {
            "type" : "string",
            "enum" : [ "application/json" ]
          }
        } ],
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/StartProcessPayload"
              }
            }
          },
          "required" : true
        },
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/process-instances/{processInstanceId}/variables" : {
      "get" : {
        "tags" : [ "process-instance-variable-controller-impl" ],
        "summary" : "getVariables_1",
        "operationId" : "getVariables_1",
        "parameters" : [ {
          "name" : "processInstanceId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudVariableInstance"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudVariableInstance"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      },
      "post" : {
        "tags" : [ "process-instance-variable-controller-impl" ],
        "summary" : "setVariables",
        "operationId" : "setVariables",
        "parameters" : [ {
          "name" : "processInstanceId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/SetProcessVariablesPayload"
              }
            }
          },
          "required" : true
        },
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK"
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/process-instances/{processInstanceId}/suspend" : {
      "post" : {
        "tags" : [ "process-instance-controller-impl" ],
        "summary" : "suspend",
        "operationId" : "suspend",
        "parameters" : [ {
          "name" : "processInstanceId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "Content-type",
          "in" : "header",
          "schema" : {
            "type" : "string",
            "enum" : [ "application/json" ]
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/process-instances/{processInstanceId}/start" : {
      "post" : {
        "tags" : [ "process-instance-controller-impl" ],
        "summary" : "startCreatedProcess",
        "operationId" : "startCreatedProcess",
        "parameters" : [ {
          "name" : "processInstanceId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "Content-type",
          "in" : "header",
          "schema" : {
            "type" : "string",
            "enum" : [ "application/json" ]
          }
        } ],
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/StartProcessPayload"
              }
            }
          }
        },
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/process-instances/{processInstanceId}/resume" : {
      "post" : {
        "tags" : [ "process-instance-controller-impl" ],
        "summary" : "resume",
        "operationId" : "resume",
        "parameters" : [ {
          "name" : "processInstanceId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "Content-type",
          "in" : "header",
          "schema" : {
            "type" : "string",
            "enum" : [ "application/json" ]
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/process-instances/signal" : {
      "post" : {
        "tags" : [ "process-instance-controller-impl" ],
        "summary" : "sendSignal",
        "operationId" : "sendSignal",
        "parameters" : [ {
          "name" : "Content-type",
          "in" : "header",
          "schema" : {
            "type" : "string",
            "enum" : [ "application/json" ]
          }
        } ],
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/SignalPayload"
              }
            }
          },
          "required" : true
        },
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK"
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/process-instances/create" : {
      "post" : {
        "tags" : [ "process-instance-controller-impl" ],
        "summary" : "createProcessInstance",
        "operationId" : "createProcessInstance",
        "parameters" : [ {
          "name" : "Content-type",
          "in" : "header",
          "schema" : {
            "type" : "string",
            "enum" : [ "application/json" ]
          }
        } ],
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/CreateProcessInstancePayload"
              }
            }
          },
          "required" : true
        },
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/admin/v1/tasks/{taskId}/variables" : {
      "get" : {
        "tags" : [ "task-variable-admin-controller-impl" ],
        "summary" : "getVariables_2",
        "operationId" : "getVariables_2",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudVariableInstance"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudVariableInstance"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      },
      "post" : {
        "tags" : [ "task-variable-admin-controller-impl" ],
        "summary" : "createVariable_1",
        "operationId" : "createVariable_1",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/CreateTaskVariablePayload"
              }
            }
          },
          "required" : true
        },
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK"
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/admin/v1/tasks/{taskId}/complete" : {
      "post" : {
        "tags" : [ "task-admin-controller-impl" ],
        "summary" : "completeTask_1",
        "operationId" : "completeTask_1",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/CompleteTaskPayload"
              }
            }
          }
        },
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudTask"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudTask"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/admin/v1/tasks/{taskId}/candidate-users" : {
      "get" : {
        "tags" : [ "candidate-user-admin-controller-impl" ],
        "summary" : "getUserCandidates_1",
        "operationId" : "getUserCandidates_1",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCandidateUser"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCandidateUser"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      },
      "post" : {
        "tags" : [ "candidate-user-admin-controller-impl" ],
        "summary" : "addCandidateUsers_1",
        "operationId" : "addCandidateUsers_1",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/CandidateUsersPayload"
              }
            }
          },
          "required" : true
        },
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK"
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      },
      "delete" : {
        "tags" : [ "candidate-user-admin-controller-impl" ],
        "summary" : "deleteCandidateUsers_1",
        "operationId" : "deleteCandidateUsers_1",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/CandidateUsersPayload"
              }
            }
          },
          "required" : true
        },
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK"
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/admin/v1/tasks/{taskId}/candidate-groups" : {
      "get" : {
        "tags" : [ "candidate-group-admin-controller-impl" ],
        "summary" : "getGroupCandidates_1",
        "operationId" : "getGroupCandidates_1",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCandidateGroup"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCandidateGroup"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      },
      "post" : {
        "tags" : [ "candidate-group-admin-controller-impl" ],
        "summary" : "addCandidateGroups_1",
        "operationId" : "addCandidateGroups_1",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/CandidateGroupsPayload"
              }
            }
          },
          "required" : true
        },
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK"
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      },
      "delete" : {
        "tags" : [ "candidate-group-admin-controller-impl" ],
        "summary" : "deleteCandidateGroups_1",
        "operationId" : "deleteCandidateGroups_1",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/CandidateGroupsPayload"
              }
            }
          },
          "required" : true
        },
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK"
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/admin/v1/tasks/{taskId}/assign" : {
      "post" : {
        "tags" : [ "task-admin-controller-impl" ],
        "summary" : "assign_1",
        "operationId" : "assign_1",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/AssignTaskPayload"
              }
            }
          },
          "required" : true
        },
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudTask"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudTask"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/admin/v1/process-instances" : {
      "get" : {
        "tags" : [ "process-instance-admin-controller-impl" ],
        "summary" : "getProcessInstances_1",
        "operationId" : "getProcessInstances_1",
        "parameters" : [ {
          "name" : "maxItems",
          "in" : "query",
          "required" : false,
          "style" : "form",
          "schema" : {
            "type" : "integer",
            "format" : "int32"
          }
        }, {
          "name" : "skipCount",
          "in" : "query",
          "required" : false,
          "style" : "form",
          "schema" : {
            "type" : "integer",
            "format" : "int32"
          }
        }, {
          "name" : "sort",
          "in" : "query",
          "required" : false,
          "style" : "form",
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudProcessInstance"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudProcessInstance"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      },
      "post" : {
        "tags" : [ "process-instance-admin-controller-impl" ],
        "summary" : "startProcess_1",
        "operationId" : "startProcess_1",
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/StartProcessPayload"
              }
            }
          },
          "required" : true
        },
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/admin/v1/process-instances/{processInstanceId}/suspend" : {
      "post" : {
        "tags" : [ "process-instance-admin-controller-impl" ],
        "summary" : "suspend_1",
        "operationId" : "suspend_1",
        "parameters" : [ {
          "name" : "processInstanceId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/admin/v1/process-instances/{processInstanceId}/resume" : {
      "post" : {
        "tags" : [ "process-instance-admin-controller-impl" ],
        "summary" : "resume_1",
        "operationId" : "resume_1",
        "parameters" : [ {
          "name" : "processInstanceId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1" : {
      "get" : {
        "tags" : [ "home-controller-impl" ],
        "summary" : "getHomeInfo",
        "operationId" : "getHomeInfo",
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentHomeResource"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/tasks/{taskId}/subtasks" : {
      "get" : {
        "tags" : [ "task-controller-impl" ],
        "summary" : "getSubtasks",
        "operationId" : "getSubtasks",
        "parameters" : [ {
          "name" : "maxItems",
          "in" : "query",
          "required" : false,
          "style" : "form",
          "schema" : {
            "type" : "integer",
            "format" : "int32"
          }
        }, {
          "name" : "skipCount",
          "in" : "query",
          "required" : false,
          "style" : "form",
          "schema" : {
            "type" : "integer",
            "format" : "int32"
          }
        }, {
          "name" : "sort",
          "in" : "query",
          "required" : false,
          "style" : "form",
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudTask"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudTask"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/process-instances/{processInstanceId}/tasks" : {
      "get" : {
        "tags" : [ "process-instance-tasks-controller-impl" ],
        "summary" : "getTasks_1",
        "operationId" : "getTasks_1",
        "parameters" : [ {
          "name" : "processInstanceId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "maxItems",
          "in" : "query",
          "required" : false,
          "style" : "form",
          "schema" : {
            "type" : "integer",
            "format" : "int32"
          }
        }, {
          "name" : "skipCount",
          "in" : "query",
          "required" : false,
          "style" : "form",
          "schema" : {
            "type" : "integer",
            "format" : "int32"
          }
        }, {
          "name" : "sort",
          "in" : "query",
          "required" : false,
          "style" : "form",
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudTask"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudTask"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/process-instances/{processInstanceId}/subprocesses" : {
      "get" : {
        "tags" : [ "process-instance-controller-impl" ],
        "summary" : "subprocesses",
        "operationId" : "subprocesses",
        "parameters" : [ {
          "name" : "processInstanceId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "maxItems",
          "in" : "query",
          "required" : false,
          "style" : "form",
          "schema" : {
            "type" : "integer",
            "format" : "int32"
          }
        }, {
          "name" : "skipCount",
          "in" : "query",
          "required" : false,
          "style" : "form",
          "schema" : {
            "type" : "integer",
            "format" : "int32"
          }
        }, {
          "name" : "sort",
          "in" : "query",
          "required" : false,
          "style" : "form",
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudProcessInstance"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudProcessInstance"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/process-instances/{processInstanceId}/model" : {
      "get" : {
        "tags" : [ "process-instance-controller-impl" ],
        "summary" : "getProcessDiagram",
        "operationId" : "getProcessDiagram",
        "parameters" : [ {
          "name" : "processInstanceId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "image/svg+xml" : {
                "schema" : {
                  "type" : "string"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/process-definitions" : {
      "get" : {
        "tags" : [ "process-definition-controller-impl" ],
        "summary" : "getProcessDefinitions",
        "operationId" : "getProcessDefinitions",
        "parameters" : [ {
          "name" : "include",
          "in" : "query",
          "description" : "List of values to include in response",
          "required" : false,
          "schema" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            },
            "default" : [ ]
          }
        }, {
          "name" : "maxItems",
          "in" : "query",
          "required" : false,
          "style" : "form",
          "schema" : {
            "type" : "integer",
            "format" : "int32"
          }
        }, {
          "name" : "skipCount",
          "in" : "query",
          "required" : false,
          "style" : "form",
          "schema" : {
            "type" : "integer",
            "format" : "int32"
          }
        }, {
          "name" : "sort",
          "in" : "query",
          "required" : false,
          "style" : "form",
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentExtendedCloudProcessDefinition"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentExtendedCloudProcessDefinition"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/process-definitions/{id}" : {
      "get" : {
        "tags" : [ "process-definition-controller-impl" ],
        "summary" : "getProcessDefinition",
        "operationId" : "getProcessDefinition",
        "parameters" : [ {
          "name" : "id",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessDefinition"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessDefinition"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/process-definitions/{id}/model" : {
      "get" : {
        "tags" : [ "process-definition-controller-impl" ],
        "summary" : "getProcessModel",
        "operationId" : "getProcessDiagram_1_1_1",
        "parameters" : [ {
          "name" : "id",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "image/svg+xml" : {
                "schema" : {
                  "type" : "string"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        }, {
          "oauth" : [ ]
        }, {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/process-definitions/{id}/meta" : {
      "get" : {
        "tags" : [ "process-definition-meta-controller-impl" ],
        "summary" : "getProcessDefinitionMetadata",
        "operationId" : "getProcessDefinitionMetadata",
        "parameters" : [ {
          "name" : "id",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : { }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/connector-definitions" : {
      "get" : {
        "tags" : [ "connector-definition-controller-impl" ],
        "summary" : "getConnectorDefinitions",
        "operationId" : "getConnectorDefinitions",
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentConnectorDefinition"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentConnectorDefinition"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/connector-definitions/{id}" : {
      "get" : {
        "tags" : [ "connector-definition-controller-impl" ],
        "summary" : "getConnectorDefinition",
        "operationId" : "getConnectorDefinition",
        "parameters" : [ {
          "name" : "id",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentConnectorDefinition"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentConnectorDefinition"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/admin/v1/tasks" : {
      "get" : {
        "tags" : [ "task-admin-controller-impl" ],
        "summary" : "getTasks_2",
        "operationId" : "getTasks_2",
        "parameters" : [ {
          "name" : "maxItems",
          "in" : "query",
          "required" : false,
          "style" : "form",
          "schema" : {
            "type" : "integer",
            "format" : "int32"
          }
        }, {
          "name" : "skipCount",
          "in" : "query",
          "required" : false,
          "style" : "form",
          "schema" : {
            "type" : "integer",
            "format" : "int32"
          }
        }, {
          "name" : "sort",
          "in" : "query",
          "required" : false,
          "style" : "form",
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudTask"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudTask"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/admin/v1/process-instances/{processInstanceId}/subprocesses" : {
      "get" : {
        "tags" : [ "process-instance-admin-controller-impl" ],
        "summary" : "subprocesses_1",
        "operationId" : "subprocesses_1",
        "parameters" : [ {
          "name" : "processInstanceId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "maxItems",
          "in" : "query",
          "required" : false,
          "style" : "form",
          "schema" : {
            "type" : "integer",
            "format" : "int32"
          }
        }, {
          "name" : "skipCount",
          "in" : "query",
          "required" : false,
          "style" : "form",
          "schema" : {
            "type" : "integer",
            "format" : "int32"
          }
        }, {
          "name" : "sort",
          "in" : "query",
          "required" : false,
          "style" : "form",
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudProcessInstance"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudProcessInstance"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/admin/v1/process-definitions" : {
      "get" : {
        "tags" : [ "process-definition-admin-controller-impl" ],
        "summary" : "getAllProcessDefinitions",
        "operationId" : "getAllProcessDefinitions",
        "parameters" : [ {
          "name" : "maxItems",
          "in" : "query",
          "required" : false,
          "style" : "form",
          "schema" : {
            "type" : "integer",
            "format" : "int32"
          }
        }, {
          "name" : "skipCount",
          "in" : "query",
          "required" : false,
          "style" : "form",
          "schema" : {
            "type" : "integer",
            "format" : "int32"
          }
        }, {
          "name" : "sort",
          "in" : "query",
          "required" : false,
          "style" : "form",
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "404" : {
            "description" : "Not Found",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "500" : {
            "description" : "Internal Server Error",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "400" : {
            "description" : "Bad Request",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "204" : {
            "description" : "No Content",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "422" : {
            "description" : "Unprocessable Entity",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudProcessDefinition"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudProcessDefinition"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    }
  },
  "components" : {
    "schemas" : {
      "ActivitiErrorMessage" : {
        "title" : "ActivitiErrorMessage",
        "type" : "object",
        "properties" : {
          "message" : {
            "type" : "string"
          },
          "code" : {
            "type" : "integer",
            "format" : "int32"
          }
        }
      },
      "EntryResponseContentActivitiErrorMessage" : {
        "title" : "EntryResponseContentActivitiErrorMessage",
        "type" : "object",
        "properties" : {
          "entry" : {
            "$ref" : "#/components/schemas/ActivitiErrorMessage"
          }
        }
      },
      "UpdateTaskPayload" : {
        "title" : "UpdateTaskPayload",
        "type" : "object",
        "properties" : {
          "id" : {
            "type" : "string"
          },
          "taskId" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "description" : {
            "type" : "string"
          },
          "dueDate" : {
            "type" : "string",
            "format" : "date-time"
          },
          "priority" : {
            "type" : "integer",
            "format" : "int32"
          },
          "assignee" : {
            "type" : "string"
          },
          "parentTaskId" : {
            "type" : "string"
          },
          "formKey" : {
            "type" : "string"
          },
          "payloadType" : {
            "type" : "string",
            "enum" : [ "UpdateTaskPayload" ]
          }
        }
      },
      "CloudTask" : {
        "title" : "CloudTask",
        "type" : "object",
        "properties" : {
          "appName" : {
            "type" : "string"
          },
          "serviceName" : {
            "type" : "string"
          },
          "serviceFullName" : {
            "type" : "string"
          },
          "serviceType" : {
            "type" : "string"
          },
          "serviceVersion" : {
            "type" : "string"
          },
          "appVersion" : {
            "type" : "string"
          },
          "duration" : {
            "type" : "integer",
            "format" : "int64"
          },
          "standalone" : {
            "type" : "boolean"
          },
          "description" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "priority" : {
            "type" : "integer",
            "format" : "int32"
          },
          "id" : {
            "type" : "string"
          },
          "owner" : {
            "type" : "string"
          },
          "status" : {
            "type" : "string",
            "enum" : [ "CREATED", "ASSIGNED", "SUSPENDED", "COMPLETED", "CANCELLED", "DELETED" ]
          },
          "businessKey" : {
            "type" : "string"
          },
          "processDefinitionId" : {
            "type" : "string"
          },
          "processInstanceId" : {
            "type" : "string"
          },
          "parentTaskId" : {
            "type" : "string"
          },
          "candidateUsers" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            }
          },
          "candidateGroups" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            }
          },
          "processDefinitionVersion" : {
            "type" : "integer",
            "format" : "int32"
          },
          "assignee" : {
            "type" : "string"
          },
          "dueDate" : {
            "type" : "string",
            "format" : "date-time"
          },
          "formKey" : {
            "type" : "string"
          },
          "taskDefinitionKey" : {
            "type" : "string"
          },
          "completedDate" : {
            "type" : "string",
            "format" : "date-time"
          },
          "createdDate" : {
            "type" : "string",
            "format" : "date-time"
          },
          "claimedDate" : {
            "type" : "string",
            "format" : "date-time"
          },
          "completedBy" : {
            "type" : "string"
          }
        }
      },
      "EntryResponseContentCloudTask" : {
        "title" : "EntryResponseContentCloudTask",
        "type" : "object",
        "properties" : {
          "entry" : {
            "$ref" : "#/components/schemas/CloudTask"
          }
        }
      },
      "UpdateTaskVariablePayload" : {
        "title" : "UpdateTaskVariablePayload",
        "type" : "object",
        "properties" : {
          "id" : {
            "type" : "string"
          },
          "taskId" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "value" : {
            "type" : "object"
          },
          "payloadType" : {
            "type" : "string",
            "enum" : [ "UpdateTaskVariablePayload" ]
          }
        }
      },
      "UpdateProcessPayload" : {
        "title" : "UpdateProcessPayload",
        "type" : "object",
        "properties" : {
          "id" : {
            "type" : "string"
          },
          "processInstanceId" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "description" : {
            "type" : "string"
          },
          "businessKey" : {
            "type" : "string"
          },
          "payloadType" : {
            "type" : "string",
            "enum" : [ "UpdateProcessPayload" ]
          }
        }
      },
      "CloudProcessInstance" : {
        "title" : "CloudProcessInstance",
        "type" : "object",
        "properties" : {
          "appName" : {
            "type" : "string"
          },
          "serviceName" : {
            "type" : "string"
          },
          "serviceFullName" : {
            "type" : "string"
          },
          "serviceType" : {
            "type" : "string"
          },
          "serviceVersion" : {
            "type" : "string"
          },
          "appVersion" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "id" : {
            "type" : "string"
          },
          "status" : {
            "type" : "string",
            "enum" : [ "CREATED", "RUNNING", "SUSPENDED", "CANCELLED", "COMPLETED" ]
          },
          "parentId" : {
            "type" : "string"
          },
          "businessKey" : {
            "type" : "string"
          },
          "processDefinitionId" : {
            "type" : "string"
          },
          "processDefinitionKey" : {
            "type" : "string"
          },
          "initiator" : {
            "type" : "string"
          },
          "processDefinitionVersion" : {
            "type" : "integer",
            "format" : "int32"
          },
          "processDefinitionName" : {
            "type" : "string"
          },
          "startDate" : {
            "type" : "string",
            "format" : "date-time"
          },
          "completedDate" : {
            "type" : "string",
            "format" : "date-time"
          }
        }
      },
      "EntryResponseContentCloudProcessInstance" : {
        "title" : "EntryResponseContentCloudProcessInstance",
        "type" : "object",
        "properties" : {
          "entry" : {
            "$ref" : "#/components/schemas/CloudProcessInstance"
          }
        }
      },
      "ReceiveMessagePayload" : {
        "title" : "ReceiveMessagePayload",
        "type" : "object",
        "properties" : {
          "id" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "correlationKey" : {
            "type" : "string"
          },
          "variables" : {
            "type" : "object",
            "additionalProperties" : {
              "type" : "object"
            }
          }
        }
      },
      "SetProcessVariablesPayload" : {
        "title" : "SetProcessVariablesPayload",
        "type" : "object",
        "properties" : {
          "id" : {
            "type" : "string"
          },
          "processInstanceId" : {
            "type" : "string"
          },
          "variables" : {
            "type" : "object",
            "additionalProperties" : {
              "type" : "object"
            }
          },
          "payloadType" : {
            "type" : "string",
            "enum" : [ "SetProcessVariablesPayload" ]
          }
        }
      },
      "CreateTaskPayload" : {
        "title" : "CreateTaskPayload",
        "type" : "object",
        "properties" : {
          "id" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "description" : {
            "type" : "string"
          },
          "dueDate" : {
            "type" : "string",
            "format" : "date-time"
          },
          "priority" : {
            "type" : "integer",
            "format" : "int32"
          },
          "assignee" : {
            "type" : "string"
          },
          "candidateGroups" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            }
          },
          "candidateUsers" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            }
          },
          "parentTaskId" : {
            "type" : "string"
          },
          "formKey" : {
            "type" : "string"
          },
          "payloadType" : {
            "type" : "string",
            "enum" : [ "CreateTaskPayload" ]
          }
        }
      },
      "CreateTaskVariablePayload" : {
        "title" : "CreateTaskVariablePayload",
        "type" : "object",
        "properties" : {
          "id" : {
            "type" : "string"
          },
          "taskId" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "value" : {
            "type" : "object"
          },
          "payloadType" : {
            "type" : "string",
            "enum" : [ "CreateTaskVariablePayload" ]
          }
        }
      },
      "SaveTaskPayload" : {
        "title" : "SaveTaskPayload",
        "type" : "object",
        "properties" : {
          "id" : {
            "type" : "string"
          },
          "taskId" : {
            "type" : "string"
          },
          "variables" : {
            "type" : "object",
            "additionalProperties" : {
              "type" : "object"
            }
          },
          "payloadType" : {
            "type" : "string",
            "enum" : [ "SaveTaskPayload" ]
          }
        }
      },
      "CompleteTaskPayload" : {
        "title" : "CompleteTaskPayload",
        "type" : "object",
        "properties" : {
          "id" : {
            "type" : "string"
          },
          "taskId" : {
            "type" : "string"
          },
          "variables" : {
            "type" : "object",
            "additionalProperties" : {
              "type" : "object"
            }
          },
          "payloadType" : {
            "type" : "string",
            "enum" : [ "CompleteTaskPayload" ]
          }
        }
      },
      "CandidateUsersPayload" : {
        "title" : "CandidateUsersPayload",
        "type" : "object",
        "properties" : {
          "id" : {
            "type" : "string"
          },
          "taskId" : {
            "type" : "string"
          },
          "candidateUsers" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            }
          },
          "payloadType" : {
            "type" : "string",
            "enum" : [ "CandidateUsersPayload" ]
          }
        }
      },
      "CandidateGroupsPayload" : {
        "title" : "CandidateGroupsPayload",
        "type" : "object",
        "properties" : {
          "id" : {
            "type" : "string"
          },
          "taskId" : {
            "type" : "string"
          },
          "candidateGroups" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            }
          },
          "payloadType" : {
            "type" : "string",
            "enum" : [ "CandidateGroupsPayload" ]
          }
        }
      },
      "AssignTaskPayload" : {
        "title" : "AssignTaskPayload",
        "type" : "object",
        "properties" : {
          "id" : {
            "type" : "string"
          },
          "taskId" : {
            "type" : "string"
          },
          "assignee" : {
            "type" : "string"
          },
          "payloadType" : {
            "type" : "string",
            "enum" : [ "AssignTaskPayload" ]
          }
        }
      },
      "StartProcessPayload" : {
        "title" : "StartProcessPayload",
        "type" : "object",
        "properties" : {
          "id" : {
            "type" : "string"
          },
          "processDefinitionId" : {
            "type" : "string"
          },
          "processDefinitionKey" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "businessKey" : {
            "type" : "string"
          },
          "variables" : {
            "type" : "object",
            "additionalProperties" : {
              "type" : "object"
            }
          },
          "payloadType" : {
            "type" : "string",
            "enum" : [ "StartProcessPayload" ]
          }
        }
      },
      "SignalPayload" : {
        "title" : "SignalPayload",
        "type" : "object",
        "properties" : {
          "id" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "variables" : {
            "type" : "object",
            "additionalProperties" : {
              "type" : "object"
            }
          },
          "payloadType" : {
            "type" : "string",
            "enum" : [ "SignalPayload" ]
          }
        }
      },
      "StartMessagePayload" : {
        "title" : "StartMessagePayload",
        "type" : "object",
        "properties" : {
          "id" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "businessKey" : {
            "type" : "string"
          },
          "variables" : {
            "type" : "object",
            "additionalProperties" : {
              "type" : "object"
            }
          }
        }
      },
      "CreateProcessInstancePayload" : {
        "title" : "CreateProcessInstancePayload",
        "type" : "object",
        "properties" : {
          "id" : {
            "type" : "string"
          },
          "processDefinitionId" : {
            "type" : "string"
          },
          "processDefinitionKey" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "businessKey" : {
            "type" : "string"
          },
          "payloadType" : {
            "type" : "string",
            "enum" : [ "CreateProcessInstancePayload" ]
          }
        }
      },
      "EntryResponseContentHomeResource" : {
        "title" : "EntryResponseContentHomeResource",
        "type" : "object",
        "properties" : {
          "entry" : {
            "$ref" : "#/components/schemas/HomeResource"
          }
        }
      },
      "HomeResource" : {
        "title" : "HomeResource",
        "type" : "object",
        "properties" : {
          "welcome" : {
            "type" : "string"
          }
        }
      },
      "EntriesResponseContentCloudTask" : {
        "title" : "EntriesResponseContentCloudTask",
        "type" : "object",
        "properties" : {
          "entries" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/EntryResponseContentCloudTask"
            }
          },
          "pagination" : {
            "$ref" : "#/components/schemas/PaginationMetadata"
          }
        }
      },
      "ListResponseContentCloudTask" : {
        "title" : "ListResponseContentCloudTask",
        "type" : "object",
        "properties" : {
          "list" : {
            "$ref" : "#/components/schemas/EntriesResponseContentCloudTask"
          }
        }
      },
      "PaginationMetadata" : {
        "title" : "PaginationMetadata",
        "type" : "object",
        "properties" : {
          "skipCount" : {
            "type" : "integer",
            "format" : "int64"
          },
          "maxItems" : {
            "type" : "integer",
            "format" : "int64"
          },
          "count" : {
            "type" : "integer",
            "format" : "int64"
          },
          "hasMoreItems" : {
            "type" : "boolean"
          },
          "totalItems" : {
            "type" : "integer",
            "format" : "int64"
          }
        }
      },
      "CloudVariableInstance" : {
        "title" : "CloudVariableInstance",
        "type" : "object",
        "properties" : {
          "appName" : {
            "type" : "string"
          },
          "serviceName" : {
            "type" : "string"
          },
          "serviceFullName" : {
            "type" : "string"
          },
          "serviceType" : {
            "type" : "string"
          },
          "serviceVersion" : {
            "type" : "string"
          },
          "appVersion" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "value" : {
            "type" : "object"
          },
          "type" : {
            "type" : "string"
          },
          "processInstanceId" : {
            "type" : "string"
          },
          "taskId" : {
            "type" : "string"
          },
          "taskVariable" : {
            "type" : "boolean"
          }
        }
      },
      "EntriesResponseContentCloudVariableInstance" : {
        "title" : "EntriesResponseContentCloudVariableInstance",
        "type" : "object",
        "properties" : {
          "entries" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/EntryResponseContentCloudVariableInstance"
            }
          },
          "pagination" : {
            "$ref" : "#/components/schemas/PaginationMetadata"
          }
        }
      },
      "EntryResponseContentCloudVariableInstance" : {
        "title" : "EntryResponseContentCloudVariableInstance",
        "type" : "object",
        "properties" : {
          "entry" : {
            "$ref" : "#/components/schemas/CloudVariableInstance"
          }
        }
      },
      "ListResponseContentCloudVariableInstance" : {
        "title" : "ListResponseContentCloudVariableInstance",
        "type" : "object",
        "properties" : {
          "list" : {
            "$ref" : "#/components/schemas/EntriesResponseContentCloudVariableInstance"
          }
        }
      },
      "CandidateUser" : {
        "title" : "CandidateUser",
        "type" : "object",
        "properties" : {
          "user" : {
            "type" : "string"
          }
        }
      },
      "EntriesResponseContentCandidateUser" : {
        "title" : "EntriesResponseContentCandidateUser",
        "type" : "object",
        "properties" : {
          "entries" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/EntryResponseContentCandidateUser"
            }
          },
          "pagination" : {
            "$ref" : "#/components/schemas/PaginationMetadata"
          }
        }
      },
      "EntryResponseContentCandidateUser" : {
        "title" : "EntryResponseContentCandidateUser",
        "type" : "object",
        "properties" : {
          "entry" : {
            "$ref" : "#/components/schemas/CandidateUser"
          }
        }
      },
      "ListResponseContentCandidateUser" : {
        "title" : "ListResponseContentCandidateUser",
        "type" : "object",
        "properties" : {
          "list" : {
            "$ref" : "#/components/schemas/EntriesResponseContentCandidateUser"
          }
        }
      },
      "CandidateGroup" : {
        "title" : "CandidateGroup",
        "type" : "object",
        "properties" : {
          "group" : {
            "type" : "string"
          }
        }
      },
      "EntriesResponseContentCandidateGroup" : {
        "title" : "EntriesResponseContentCandidateGroup",
        "type" : "object",
        "properties" : {
          "entries" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/EntryResponseContentCandidateGroup"
            }
          },
          "pagination" : {
            "$ref" : "#/components/schemas/PaginationMetadata"
          }
        }
      },
      "EntryResponseContentCandidateGroup" : {
        "title" : "EntryResponseContentCandidateGroup",
        "type" : "object",
        "properties" : {
          "entry" : {
            "$ref" : "#/components/schemas/CandidateGroup"
          }
        }
      },
      "ListResponseContentCandidateGroup" : {
        "title" : "ListResponseContentCandidateGroup",
        "type" : "object",
        "properties" : {
          "list" : {
            "$ref" : "#/components/schemas/EntriesResponseContentCandidateGroup"
          }
        }
      },
      "EntriesResponseContentCloudProcessInstance" : {
        "title" : "EntriesResponseContentCloudProcessInstance",
        "type" : "object",
        "properties" : {
          "entries" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance"
            }
          },
          "pagination" : {
            "$ref" : "#/components/schemas/PaginationMetadata"
          }
        }
      },
      "ListResponseContentCloudProcessInstance" : {
        "title" : "ListResponseContentCloudProcessInstance",
        "type" : "object",
        "properties" : {
          "list" : {
            "$ref" : "#/components/schemas/EntriesResponseContentCloudProcessInstance"
          }
        }
      },
      "EntriesResponseContentExtendedCloudProcessDefinition" : {
        "title" : "EntriesResponseContentExtendedCloudProcessDefinition",
        "type" : "object",
        "properties" : {
          "entries" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/EntryResponseContentExtendedCloudProcessDefinition"
            }
          },
          "pagination" : {
            "$ref" : "#/components/schemas/PaginationMetadata"
          }
        }
      },
      "EntryResponseContentExtendedCloudProcessDefinition" : {
        "title" : "EntryResponseContentExtendedCloudProcessDefinition",
        "type" : "object",
        "properties" : {
          "entry" : {
            "$ref" : "#/components/schemas/ExtendedCloudProcessDefinition"
          }
        }
      },
      "ExtendedCloudProcessDefinition" : {
        "title" : "ExtendedCloudProcessDefinition",
        "type" : "object",
        "properties" : {
          "variableDefinitions" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/VariableDefinition"
            }
          },
          "appName" : {
            "type" : "string"
          },
          "serviceName" : {
            "type" : "string"
          },
          "serviceFullName" : {
            "type" : "string"
          },
          "serviceType" : {
            "type" : "string"
          },
          "serviceVersion" : {
            "type" : "string"
          },
          "appVersion" : {
            "type" : "string"
          },
          "version" : {
            "type" : "integer",
            "format" : "int32"
          },
          "description" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "key" : {
            "type" : "string"
          },
          "id" : {
            "type" : "string"
          },
          "category" : {
            "type" : "string"
          },
          "formKey" : {
            "type" : "string"
          }
        }
      },
      "ListResponseContentExtendedCloudProcessDefinition" : {
        "title" : "ListResponseContentExtendedCloudProcessDefinition",
        "type" : "object",
        "properties" : {
          "list" : {
            "$ref" : "#/components/schemas/EntriesResponseContentExtendedCloudProcessDefinition"
          }
        }
      },
      "VariableDefinition" : {
        "title" : "VariableDefinition",
        "type" : "object",
        "properties" : {
          "displayName" : {
            "type" : "string"
          },
          "description" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "id" : {
            "type" : "string"
          },
          "type" : {
            "type" : "string"
          },
          "required" : {
            "type" : "boolean"
          },
          "display" : {
            "type" : "boolean"
          }
        }
      },
      "CloudProcessDefinition" : {
        "title" : "CloudProcessDefinition",
        "type" : "object",
        "properties" : {
          "appName" : {
            "type" : "string"
          },
          "serviceName" : {
            "type" : "string"
          },
          "serviceFullName" : {
            "type" : "string"
          },
          "serviceType" : {
            "type" : "string"
          },
          "serviceVersion" : {
            "type" : "string"
          },
          "appVersion" : {
            "type" : "string"
          },
          "version" : {
            "type" : "integer",
            "format" : "int32"
          },
          "description" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "key" : {
            "type" : "string"
          },
          "id" : {
            "type" : "string"
          },
          "category" : {
            "type" : "string"
          },
          "formKey" : {
            "type" : "string"
          }
        }
      },
      "EntryResponseContentCloudProcessDefinition" : {
        "title" : "EntryResponseContentCloudProcessDefinition",
        "type" : "object",
        "properties" : {
          "entry" : {
            "$ref" : "#/components/schemas/CloudProcessDefinition"
          }
        }
      },
      "ActionDefinition" : {
        "title" : "ActionDefinition",
        "type" : "object",
        "properties" : {
          "id" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "description" : {
            "type" : "string"
          },
          "inputs" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/VariableDefinition"
            }
          },
          "outputs" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/VariableDefinition"
            }
          }
        }
      },
      "ConnectorDefinition" : {
        "title" : "ConnectorDefinition",
        "type" : "object",
        "properties" : {
          "id" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "description" : {
            "type" : "string"
          },
          "actions" : {
            "type" : "object",
            "additionalProperties" : {
              "$ref" : "#/components/schemas/ActionDefinition"
            }
          }
        }
      },
      "EntriesResponseContentConnectorDefinition" : {
        "title" : "EntriesResponseContentConnectorDefinition",
        "type" : "object",
        "properties" : {
          "entries" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/EntryResponseContentConnectorDefinition"
            }
          },
          "pagination" : {
            "$ref" : "#/components/schemas/PaginationMetadata"
          }
        }
      },
      "EntryResponseContentConnectorDefinition" : {
        "title" : "EntryResponseContentConnectorDefinition",
        "type" : "object",
        "properties" : {
          "entry" : {
            "$ref" : "#/components/schemas/ConnectorDefinition"
          }
        }
      },
      "ListResponseContentConnectorDefinition" : {
        "title" : "ListResponseContentConnectorDefinition",
        "type" : "object",
        "properties" : {
          "list" : {
            "$ref" : "#/components/schemas/EntriesResponseContentConnectorDefinition"
          }
        }
      },
      "EntriesResponseContentCloudProcessDefinition" : {
        "title" : "EntriesResponseContentCloudProcessDefinition",
        "type" : "object",
        "properties" : {
          "entries" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/EntryResponseContentCloudProcessDefinition"
            }
          },
          "pagination" : {
            "$ref" : "#/components/schemas/PaginationMetadata"
          }
        }
      },
      "ListResponseContentCloudProcessDefinition" : {
        "title" : "ListResponseContentCloudProcessDefinition",
        "type" : "object",
        "properties" : {
          "list" : {
            "$ref" : "#/components/schemas/EntriesResponseContentCloudProcessDefinition"
          }
        }
      },
      "RemoveProcessVariablesPayload" : {
        "title" : "RemoveProcessVariablesPayload",
        "type" : "object",
        "properties" : {
          "id" : {
            "type" : "string"
          },
          "processInstanceId" : {
            "type" : "string"
          },
          "variableNames" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            }
          },
          "payloadType" : {
            "type" : "string",
            "enum" : [ "RemoveProcessVariablesPayload" ]
          }
        }
      }
    }
  },
  "x-service-url-prefix" : ""
}