{
  "openapi" : "3.0.1",
  "info" : {
    "title" : "OpenAPI definition",
    "version" : "v0"
  },
  "servers" : [ {
    "url" : "/"
  } ],
  "paths" : {
    "/v1/tasks" : {
      "get" : {
        "tags" : [ "task-controller" ],
        "summary" : "findAll",
        "operationId" : "findAll",
        "parameters" : [ {
          "name" : "rootTasksOnly",
          "in" : "query",
          "required" : false,
          "schema" : {
            "type" : "boolean",
            "default" : false
          }
        }, {
          "name" : "standalone",
          "in" : "query",
          "required" : false,
          "schema" : {
            "type" : "boolean",
            "default" : false
          }
        }, {
          "name" : "predicate",
          "in" : "query",
          "required" : true,
          "schema" : {
            "$ref" : "#/components/schemas/Predicate"
          }
        }, {
          "name" : "variables.name",
          "in" : "query",
          "required" : false,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "variables.value",
          "in" : "query",
          "required" : false,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "variables.type",
          "in" : "query",
          "required" : false,
          "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" : {
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentQueryCloudTask"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentQueryCloudTask"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          },
          "404" : {
            "description" : "Not Found"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/tasks/{taskId}" : {
      "get" : {
        "tags" : [ "task-controller" ],
        "summary" : "findById",
        "operationId" : "findById",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentQueryCloudTask"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentQueryCloudTask"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          },
          "404" : {
            "description" : "Not Found"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/tasks/{taskId}/variables" : {
      "get" : {
        "tags" : [ "task-variable-controller" ],
        "summary" : "getVariables",
        "operationId" : "getVariables",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "predicate",
          "in" : "query",
          "required" : true,
          "schema" : {
            "$ref" : "#/components/schemas/Predicate"
          }
        }, {
          "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" : {
          "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"
          },
          "404" : {
            "description" : "Not Found"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/tasks/{taskId}/candidate-users" : {
      "get" : {
        "tags" : [ "task-controller" ],
        "summary" : "getTaskCandidateUsers",
        "operationId" : "getTaskCandidateUsers",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "type" : "array",
                  "items" : {
                    "type" : "string"
                  }
                }
              },
              "application/json" : {
                "schema" : {
                  "type" : "array",
                  "items" : {
                    "type" : "string"
                  }
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          },
          "404" : {
            "description" : "Not Found"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/tasks/{taskId}/candidate-groups" : {
      "get" : {
        "tags" : [ "task-controller" ],
        "summary" : "getTaskCandidateGroups",
        "operationId" : "getTaskCandidateGroups",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "type" : "array",
                  "items" : {
                    "type" : "string"
                  }
                }
              },
              "application/json" : {
                "schema" : {
                  "type" : "array",
                  "items" : {
                    "type" : "string"
                  }
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          },
          "404" : {
            "description" : "Not Found"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/process-instances" : {
      "get" : {
        "tags" : [ "process-instance-controller" ],
        "summary" : "findAllWithVariables",
        "operationId" : "findAllWithVariables",
        "parameters" : [ {
          "name" : "predicate",
          "in" : "query",
          "required" : true,
          "schema" : {
            "$ref" : "#/components/schemas/Predicate_Variables"
          }
        }, {
          "name" : "variableDefinitions",
          "in" : "query",
          "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" : {
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "oneOf" : [ {
                    "$ref" : "#/components/schemas/ListResponseContentCloudProcessInstance_General"
                  }, {
                    "$ref" : "#/components/schemas/ListResponseContentCloudProcessInstance_Variables"
                  } ]
                }
              },
              "application/json" : {
                "schema" : {
                  "oneOf" : [ {
                    "$ref" : "#/components/schemas/ListResponseContentCloudProcessInstance_General"
                  }, {
                    "$ref" : "#/components/schemas/ListResponseContentCloudProcessInstance_Variables"
                  } ]
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          },
          "404" : {
            "description" : "Not Found"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        }, {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/process-instances/{processInstanceId}" : {
      "get" : {
        "tags" : [ "process-instance-controller" ],
        "summary" : "findById",
        "operationId" : "findById",
        "parameters" : [ {
          "name" : "processInstanceId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance_General"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance_General"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          },
          "404" : {
            "description" : "Not Found"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/process-instances/{processInstanceId}/variables" : {
      "get" : {
        "tags" : [ "process-instance-variable-controller" ],
        "summary" : "getVariables",
        "operationId" : "getVariables",
        "parameters" : [ {
          "name" : "processInstanceId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "predicate",
          "in" : "query",
          "required" : true,
          "schema" : {
            "$ref" : "#/components/schemas/Predicate"
          }
        }, {
          "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" : {
          "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"
          },
          "404" : {
            "description" : "Not Found"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/process-instances/{processInstanceId}/tasks" : {
      "get" : {
        "tags" : [ "process-instance-tasks-controller" ],
        "summary" : "getTasks",
        "operationId" : "getTasks",
        "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" : {
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentQueryCloudTask"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentQueryCloudTask"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          },
          "404" : {
            "description" : "Not Found"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/process-instances/{processInstanceId}/subprocesses" : {
      "get" : {
        "tags" : [ "process-instance-controller" ],
        "summary" : "subprocesses",
        "operationId" : "subprocesses",
        "parameters" : [ {
          "name" : "processInstanceId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "predicate",
          "in" : "query",
          "required" : true,
          "schema" : {
            "$ref" : "#/components/schemas/Predicate_General"
          }
        }, {
          "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" : {
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudProcessInstance_General"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudProcessInstance_General"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          },
          "404" : {
            "description" : "Not Found"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/process-instances/{processInstanceId}/diagram" : {
      "get" : {
        "tags" : [ "process-instance-diagram-controller" ],
        "summary" : "getProcessDiagram",
        "operationId" : "getProcessDiagram",
        "parameters" : [ {
          "name" : "processInstanceId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "image/svg+xml" : {
                "schema" : {
                  "type" : "string"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          },
          "404" : {
            "description" : "Not Found"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/process-definitions" : {
      "get" : {
        "tags" : [ "process-definition-controller" ],
        "summary" : "findAll",
        "operationId" : "findAll",
        "parameters" : [ {
          "name" : "predicate",
          "in" : "query",
          "required" : true,
          "schema" : {
            "$ref" : "#/components/schemas/Predicate"
          }
        }, {
          "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" : {
          "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"
          },
          "404" : {
            "description" : "Not Found"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/process-definitions/{processDefinitionId}/model" : {
      "get" : {
        "tags" : [ "process-model-controller" ],
        "summary" : "getProcessModel",
        "operationId" : "getProcessModel",
        "parameters" : [ {
          "name" : "processDefinitionId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/xml" : {
                "schema" : {
                  "type" : "string"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          },
          "404" : {
            "description" : "Not Found"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/v1/applications" : {
      "get" : {
        "tags" : [ "application-controller" ],
        "summary" : "findAll",
        "operationId" : "findAll",
        "parameters" : [ {
          "name" : "predicate",
          "in" : "query",
          "required" : true,
          "schema" : {
            "$ref" : "#/components/schemas/Predicate"
          }
        }, {
          "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" : {
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudApplication"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudApplication"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          },
          "404" : {
            "description" : "Not Found"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/admin/v1/tasks" : {
      "get" : {
        "tags" : [ "task-admin-controller" ],
        "summary" : "findAll",
        "operationId" : "findAll",
        "parameters" : [ {
          "name" : "rootTasksOnly",
          "in" : "query",
          "required" : false,
          "schema" : {
            "type" : "boolean",
            "default" : false
          }
        }, {
          "name" : "standalone",
          "in" : "query",
          "required" : false,
          "schema" : {
            "type" : "boolean",
            "default" : false
          }
        }, {
          "name" : "predicate",
          "in" : "query",
          "required" : true,
          "schema" : {
            "$ref" : "#/components/schemas/Predicate"
          }
        }, {
          "name" : "variables.name",
          "in" : "query",
          "required" : false,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "variables.value",
          "in" : "query",
          "required" : false,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "variables.type",
          "in" : "query",
          "required" : false,
          "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" : {
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentQueryCloudTask"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentQueryCloudTask"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          },
          "404" : {
            "description" : "Not Found"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      },
      "delete" : {
        "tags" : [ "task-delete-controller" ],
        "summary" : "deleteTasks",
        "operationId" : "deleteTasks",
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/Predicate"
              }
            }
          }
        },
        "responses" : {
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentQueryCloudTask"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentQueryCloudTask"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          },
          "404" : {
            "description" : "Not Found"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/admin/v1/tasks/{taskId}" : {
      "get" : {
        "tags" : [ "task-admin-controller" ],
        "summary" : "findById",
        "operationId" : "findById",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentQueryCloudTask"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentQueryCloudTask"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          },
          "404" : {
            "description" : "Not Found"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/admin/v1/tasks/{taskId}/variables" : {
      "get" : {
        "tags" : [ "task-variable-admin-controller" ],
        "summary" : "getVariables",
        "operationId" : "getVariables",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "predicate",
          "in" : "query",
          "required" : true,
          "schema" : {
            "$ref" : "#/components/schemas/Predicate"
          }
        }, {
          "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" : {
          "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"
          },
          "404" : {
            "description" : "Not Found"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/admin/v1/tasks/{taskId}/candidate-users" : {
      "get" : {
        "tags" : [ "task-admin-controller" ],
        "summary" : "getTaskCandidateUsers",
        "operationId" : "getTaskCandidateUsers",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "type" : "array",
                  "items" : {
                    "type" : "string"
                  }
                }
              },
              "application/json" : {
                "schema" : {
                  "type" : "array",
                  "items" : {
                    "type" : "string"
                  }
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          },
          "404" : {
            "description" : "Not Found"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/admin/v1/tasks/{taskId}/candidate-groups" : {
      "get" : {
        "tags" : [ "task-admin-controller" ],
        "summary" : "getTaskCandidateGroups",
        "operationId" : "getTaskCandidateGroups",
        "parameters" : [ {
          "name" : "taskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "type" : "array",
                  "items" : {
                    "type" : "string"
                  }
                }
              },
              "application/json" : {
                "schema" : {
                  "type" : "array",
                  "items" : {
                    "type" : "string"
                  }
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          },
          "404" : {
            "description" : "Not Found"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/admin/v1/service-tasks" : {
      "get" : {
        "tags" : [ "service-task-admin-controller" ],
        "summary" : "findAll",
        "operationId" : "findAll",
        "parameters" : [ {
          "name" : "predicate",
          "in" : "query",
          "required" : true,
          "schema" : {
            "$ref" : "#/components/schemas/Predicate"
          }
        }, {
          "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" : {
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudServiceTask"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudServiceTask"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          },
          "404" : {
            "description" : "Not Found"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/admin/v1/service-tasks/{serviceTaskId}" : {
      "get" : {
        "tags" : [ "service-task-admin-controller" ],
        "summary" : "findById",
        "operationId" : "findById",
        "parameters" : [ {
          "name" : "serviceTaskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudServiceTask"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudServiceTask"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          },
          "404" : {
            "description" : "Not Found"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/admin/v1/service-tasks/{serviceTaskId}/integration-context" : {
      "get" : {
        "tags" : [ "service-task-integration-context-admin-controller" ],
        "summary" : "findById",
        "operationId" : "findById",
        "parameters" : [ {
          "name" : "serviceTaskId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudIntegrationContext"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudIntegrationContext"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          },
          "404" : {
            "description" : "Not Found"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/admin/v1/process-instances" : {
      "get" : {
        "tags" : [ "process-instance-admin-controller" ],
        "summary" : "findAll",
        "operationId" : "findAll",
        "parameters" : [ {
          "name" : "predicate",
          "in" : "query",
          "required" : true,
          "schema" : {
            "$ref" : "#/components/schemas/Predicate_General"
          }
        }, {
          "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" : {
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudProcessInstance_General"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudProcessInstance_General"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          },
          "404" : {
            "description" : "Not Found"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      },
      "delete" : {
        "tags" : [ "process-instance-delete-controller" ],
        "summary" : "deleteProcessInstances",
        "operationId" : "deleteProcessInstances",
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "#/components/schemas/Predicate_General"
              }
            }
          }
        },
        "responses" : {
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudProcessInstance_General"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudProcessInstance_General"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          },
          "404" : {
            "description" : "Not Found"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/admin/v1/process-instances/{processInstanceId}" : {
      "get" : {
        "tags" : [ "process-instance-admin-controller" ],
        "summary" : "findById",
        "operationId" : "findById",
        "parameters" : [ {
          "name" : "processInstanceId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance_General"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance_General"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          },
          "404" : {
            "description" : "Not Found"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/admin/v1/process-instances/{processInstanceId}/variables" : {
      "get" : {
        "tags" : [ "process-instance-variable-admin-controller" ],
        "summary" : "getVariables",
        "operationId" : "getVariables",
        "parameters" : [ {
          "name" : "processInstanceId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "predicate",
          "in" : "query",
          "required" : true,
          "schema" : {
            "$ref" : "#/components/schemas/Predicate"
          }
        }, {
          "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" : {
          "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"
          },
          "404" : {
            "description" : "Not Found"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/admin/v1/process-instances/{processInstanceId}/tasks" : {
      "get" : {
        "tags" : [ "process-instance-tasks-admin-controller" ],
        "summary" : "getTasks",
        "operationId" : "getTasks",
        "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" : {
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentQueryCloudTask"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentQueryCloudTask"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          },
          "404" : {
            "description" : "Not Found"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/admin/v1/process-instances/{processInstanceId}/service-tasks" : {
      "get" : {
        "tags" : [ "process-instance-service-tasks-admin-controller" ],
        "summary" : "getTasks",
        "operationId" : "getTasks",
        "parameters" : [ {
          "name" : "processInstanceId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "predicate",
          "in" : "query",
          "required" : true,
          "schema" : {
            "$ref" : "#/components/schemas/Predicate"
          }
        }, {
          "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" : {
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudServiceTask"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudServiceTask"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          },
          "404" : {
            "description" : "Not Found"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/admin/v1/process-instances/{processInstanceId}/diagram" : {
      "get" : {
        "tags" : [ "process-instance-diagram-admin-controller" ],
        "summary" : "getProcessDiagram",
        "operationId" : "getProcessDiagram",
        "parameters" : [ {
          "name" : "processInstanceId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "image/svg+xml" : {
                "schema" : {
                  "type" : "string"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          },
          "404" : {
            "description" : "Not Found"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/admin/v1/process-definitions" : {
      "get" : {
        "tags" : [ "process-definition-admin-controller" ],
        "summary" : "findAll",
        "operationId" : "findAll",
        "parameters" : [ {
          "name" : "predicate",
          "in" : "query",
          "required" : true,
          "schema" : {
            "$ref" : "#/components/schemas/Predicate"
          }
        }, {
          "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" : {
          "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"
          },
          "404" : {
            "description" : "Not Found"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/admin/v1/process-definitions/{processDefinitionId}/model" : {
      "get" : {
        "tags" : [ "process-model-admin-controller" ],
        "summary" : "getProcessModel",
        "operationId" : "getProcessModel",
        "parameters" : [ {
          "name" : "processDefinitionId",
          "in" : "path",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/xml" : {
                "schema" : {
                  "type" : "string"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          },
          "404" : {
            "description" : "Not Found"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    },
    "/admin/v1/applications" : {
      "get" : {
        "tags" : [ "application-admin-controller" ],
        "summary" : "findAll",
        "operationId" : "findAll",
        "parameters" : [ {
          "name" : "predicate",
          "in" : "query",
          "required" : true,
          "schema" : {
            "$ref" : "#/components/schemas/Predicate"
          }
        }, {
          "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" : {
          "403" : {
            "description" : "Forbidden",
            "content" : {
              "*/*" : {
                "schema" : {
                  "$ref" : "#/components/schemas/EntryResponseContentActivitiErrorMessage"
                }
              }
            }
          },
          "200" : {
            "description" : "OK",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudApplication"
                }
              },
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ListResponseContentCloudApplication"
                }
              }
            }
          },
          "401" : {
            "description" : "Unauthorized"
          },
          "404" : {
            "description" : "Not Found"
          }
        },
        "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"
          }
        }
      },
      "Predicate" : {
        "title" : "Predicate",
        "type" : "object"
      },
      "EntriesResponseContentQueryCloudTask" : {
        "title" : "EntriesResponseContentQueryCloudTask",
        "type" : "object",
        "properties" : {
          "entries" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/EntryResponseContentQueryCloudTask"
            }
          },
          "pagination" : {
            "$ref" : "#/components/schemas/PaginationMetadata"
          }
        }
      },
      "EntryResponseContentQueryCloudTask" : {
        "title" : "EntryResponseContentQueryCloudTask",
        "type" : "object",
        "properties" : {
          "entry" : {
            "$ref" : "#/components/schemas/QueryCloudTask"
          }
        }
      },
      "ListResponseContentQueryCloudTask" : {
        "title" : "ListResponseContentQueryCloudTask",
        "type" : "object",
        "properties" : {
          "list" : {
            "$ref" : "#/components/schemas/EntriesResponseContentQueryCloudTask"
          }
        }
      },
      "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"
          }
        }
      },
      "QueryCloudTask" : {
        "title" : "QueryCloudTask",
        "type" : "object",
        "properties" : {
          "permissions" : {
            "type" : "array",
            "items" : {
              "type" : "string",
              "enum" : [ "VIEW", "CLAIM", "RELEASE", "UPDATE" ]
            }
          },
          "processDefinitionName" : {
            "type" : "string"
          },
          "serviceName" : {
            "type" : "string"
          },
          "serviceFullName" : {
            "type" : "string"
          },
          "serviceVersion" : {
            "type" : "string"
          },
          "appName" : {
            "type" : "string"
          },
          "serviceType" : {
            "type" : "string"
          },
          "appVersion" : {
            "type" : "string"
          },
          "description" : {
            "type" : "string"
          },
          "standalone" : {
            "type" : "boolean"
          },
          "duration" : {
            "type" : "integer",
            "format" : "int64"
          },
          "name" : {
            "type" : "string"
          },
          "priority" : {
            "type" : "integer",
            "format" : "int32"
          },
          "id" : {
            "type" : "string"
          },
          "owner" : {
            "type" : "string"
          },
          "status" : {
            "type" : "string",
            "enum" : [ "CREATED", "ASSIGNED", "SUSPENDED", "COMPLETED", "CANCELLED", "DELETED" ]
          },
          "formKey" : {
            "type" : "string"
          },
          "assignee" : {
            "type" : "string"
          },
          "claimedDate" : {
            "type" : "string",
            "format" : "date-time"
          },
          "processDefinitionId" : {
            "type" : "string"
          },
          "businessKey" : {
            "type" : "string"
          },
          "processDefinitionVersion" : {
            "type" : "integer",
            "format" : "int32"
          },
          "processInstanceId" : {
            "type" : "string"
          },
          "completedBy" : {
            "type" : "string"
          },
          "completedDate" : {
            "type" : "string",
            "format" : "date-time"
          },
          "dueDate" : {
            "type" : "string",
            "format" : "date-time"
          },
          "parentTaskId" : {
            "type" : "string"
          },
          "createdDate" : {
            "type" : "string",
            "format" : "date-time"
          },
          "candidateUsers" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            }
          },
          "candidateGroups" : {
            "type" : "array",
            "items" : {
              "type" : "string"
            }
          },
          "taskDefinitionKey" : {
            "type" : "string"
          }
        }
      },
      "CloudVariableInstance" : {
        "title" : "CloudVariableInstance",
        "type" : "object",
        "properties" : {
          "serviceName" : {
            "type" : "string"
          },
          "serviceFullName" : {
            "type" : "string"
          },
          "serviceVersion" : {
            "type" : "string"
          },
          "appName" : {
            "type" : "string"
          },
          "serviceType" : {
            "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"
          }
        }
      },
      "Predicate_Variables" : {
        "title" : "Predicate_Variables",
        "type" : "object"
      },
      "CloudProcessInstance_Variables" : {
        "title" : "CloudProcessInstance_Variables",
        "type" : "object",
        "properties" : {
          "serviceName" : {
            "type" : "string"
          },
          "serviceFullName" : {
            "type" : "string"
          },
          "serviceVersion" : {
            "type" : "string"
          },
          "appName" : {
            "type" : "string"
          },
          "serviceType" : {
            "type" : "string"
          },
          "appVersion" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "id" : {
            "type" : "string"
          },
          "status" : {
            "type" : "string",
            "enum" : [ "CREATED", "RUNNING", "SUSPENDED", "CANCELLED", "COMPLETED" ]
          },
          "parentId" : {
            "type" : "string"
          },
          "processDefinitionId" : {
            "type" : "string"
          },
          "processDefinitionKey" : {
            "type" : "string"
          },
          "initiator" : {
            "type" : "string"
          },
          "businessKey" : {
            "type" : "string"
          },
          "startDate" : {
            "type" : "string",
            "format" : "date-time"
          },
          "processDefinitionVersion" : {
            "type" : "integer",
            "format" : "int32"
          },
          "processDefinitionName" : {
            "type" : "string"
          },
          "completedDate" : {
            "type" : "string",
            "format" : "date-time"
          }
        }
      },
      "EntriesResponseContentCloudProcessInstance_Variables" : {
        "title" : "EntriesResponseContentCloudProcessInstance_Variables",
        "type" : "object",
        "properties" : {
          "entries" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance_Variables"
            }
          },
          "pagination" : {
            "$ref" : "#/components/schemas/PaginationMetadata_Variables"
          }
        }
      },
      "EntryResponseContentCloudProcessInstance_Variables" : {
        "title" : "EntryResponseContentCloudProcessInstance_Variables",
        "type" : "object",
        "properties" : {
          "entry" : {
            "$ref" : "#/components/schemas/CloudProcessInstance_Variables"
          }
        }
      },
      "ListResponseContentCloudProcessInstance_Variables" : {
        "title" : "ListResponseContentCloudProcessInstance_Variables",
        "type" : "object",
        "properties" : {
          "list" : {
            "$ref" : "#/components/schemas/EntriesResponseContentCloudProcessInstance_Variables"
          }
        }
      },
      "PaginationMetadata_Variables" : {
        "title" : "PaginationMetadata_Variables",
        "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"
          }
        }
      },
      "Predicate_General" : {
        "title" : "Predicate_General",
        "type" : "object"
      },
      "CloudProcessInstance_General" : {
        "title" : "CloudProcessInstance_General",
        "type" : "object",
        "properties" : {
          "serviceName" : {
            "type" : "string"
          },
          "serviceFullName" : {
            "type" : "string"
          },
          "serviceVersion" : {
            "type" : "string"
          },
          "appName" : {
            "type" : "string"
          },
          "serviceType" : {
            "type" : "string"
          },
          "appVersion" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "id" : {
            "type" : "string"
          },
          "status" : {
            "type" : "string",
            "enum" : [ "CREATED", "RUNNING", "SUSPENDED", "CANCELLED", "COMPLETED" ]
          },
          "parentId" : {
            "type" : "string"
          },
          "processDefinitionId" : {
            "type" : "string"
          },
          "processDefinitionKey" : {
            "type" : "string"
          },
          "initiator" : {
            "type" : "string"
          },
          "businessKey" : {
            "type" : "string"
          },
          "startDate" : {
            "type" : "string",
            "format" : "date-time"
          },
          "processDefinitionVersion" : {
            "type" : "integer",
            "format" : "int32"
          },
          "processDefinitionName" : {
            "type" : "string"
          },
          "completedDate" : {
            "type" : "string",
            "format" : "date-time"
          }
        }
      },
      "EntriesResponseContentCloudProcessInstance_General" : {
        "title" : "EntriesResponseContentCloudProcessInstance_General",
        "type" : "object",
        "properties" : {
          "entries" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/EntryResponseContentCloudProcessInstance_General"
            }
          },
          "pagination" : {
            "$ref" : "#/components/schemas/PaginationMetadata_General"
          }
        }
      },
      "EntryResponseContentCloudProcessInstance_General" : {
        "title" : "EntryResponseContentCloudProcessInstance_General",
        "type" : "object",
        "properties" : {
          "entry" : {
            "$ref" : "#/components/schemas/CloudProcessInstance_General"
          }
        }
      },
      "ListResponseContentCloudProcessInstance_General" : {
        "title" : "ListResponseContentCloudProcessInstance_General",
        "type" : "object",
        "properties" : {
          "list" : {
            "$ref" : "#/components/schemas/EntriesResponseContentCloudProcessInstance_General"
          }
        }
      },
      "PaginationMetadata_General" : {
        "title" : "PaginationMetadata_General",
        "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"
          }
        }
      },
      "CloudProcessDefinition" : {
        "title" : "CloudProcessDefinition",
        "type" : "object",
        "properties" : {
          "serviceName" : {
            "type" : "string"
          },
          "serviceFullName" : {
            "type" : "string"
          },
          "serviceVersion" : {
            "type" : "string"
          },
          "appName" : {
            "type" : "string"
          },
          "serviceType" : {
            "type" : "string"
          },
          "appVersion" : {
            "type" : "string"
          },
          "description" : {
            "type" : "string"
          },
          "name" : {
            "type" : "string"
          },
          "key" : {
            "type" : "string"
          },
          "id" : {
            "type" : "string"
          },
          "version" : {
            "type" : "integer",
            "format" : "int32"
          },
          "formKey" : {
            "type" : "string"
          },
          "category" : {
            "type" : "string"
          }
        }
      },
      "EntriesResponseContentCloudProcessDefinition" : {
        "title" : "EntriesResponseContentCloudProcessDefinition",
        "type" : "object",
        "properties" : {
          "entries" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/EntryResponseContentCloudProcessDefinition"
            }
          },
          "pagination" : {
            "$ref" : "#/components/schemas/PaginationMetadata"
          }
        }
      },
      "EntryResponseContentCloudProcessDefinition" : {
        "title" : "EntryResponseContentCloudProcessDefinition",
        "type" : "object",
        "properties" : {
          "entry" : {
            "$ref" : "#/components/schemas/CloudProcessDefinition"
          }
        }
      },
      "ListResponseContentCloudProcessDefinition" : {
        "title" : "ListResponseContentCloudProcessDefinition",
        "type" : "object",
        "properties" : {
          "list" : {
            "$ref" : "#/components/schemas/EntriesResponseContentCloudProcessDefinition"
          }
        }
      },
      "CloudApplication" : {
        "title" : "CloudApplication",
        "type" : "object",
        "properties" : {
          "name" : {
            "type" : "string"
          },
          "id" : {
            "type" : "string"
          },
          "version" : {
            "type" : "string"
          }
        }
      },
      "EntriesResponseContentCloudApplication" : {
        "title" : "EntriesResponseContentCloudApplication",
        "type" : "object",
        "properties" : {
          "entries" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/EntryResponseContentCloudApplication"
            }
          },
          "pagination" : {
            "$ref" : "#/components/schemas/PaginationMetadata"
          }
        }
      },
      "EntryResponseContentCloudApplication" : {
        "title" : "EntryResponseContentCloudApplication",
        "type" : "object",
        "properties" : {
          "entry" : {
            "$ref" : "#/components/schemas/CloudApplication"
          }
        }
      },
      "ListResponseContentCloudApplication" : {
        "title" : "ListResponseContentCloudApplication",
        "type" : "object",
        "properties" : {
          "list" : {
            "$ref" : "#/components/schemas/EntriesResponseContentCloudApplication"
          }
        }
      },
      "CloudServiceTask" : {
        "title" : "CloudServiceTask",
        "type" : "object",
        "properties" : {
          "id" : {
            "type" : "string"
          },
          "status" : {
            "type" : "string",
            "enum" : [ "STARTED", "COMPLETED", "CANCELLED", "ERROR" ]
          },
          "processDefinitionKey" : {
            "type" : "string"
          },
          "businessKey" : {
            "type" : "string"
          },
          "processDefinitionVersion" : {
            "type" : "integer",
            "format" : "int32"
          },
          "completedDate" : {
            "type" : "string",
            "format" : "date-time"
          },
          "startedDate" : {
            "type" : "string",
            "format" : "date-time"
          },
          "cancelledDate" : {
            "type" : "string",
            "format" : "date-time"
          },
          "serviceName" : {
            "type" : "string"
          },
          "serviceFullName" : {
            "type" : "string"
          },
          "serviceVersion" : {
            "type" : "string"
          },
          "appName" : {
            "type" : "string"
          },
          "serviceType" : {
            "type" : "string"
          },
          "appVersion" : {
            "type" : "string"
          },
          "activityType" : {
            "type" : "string"
          },
          "activityName" : {
            "type" : "string"
          },
          "executionId" : {
            "type" : "string"
          },
          "processDefinitionId" : {
            "type" : "string"
          },
          "processInstanceId" : {
            "type" : "string"
          },
          "elementId" : {
            "type" : "string"
          }
        }
      },
      "EntriesResponseContentCloudServiceTask" : {
        "title" : "EntriesResponseContentCloudServiceTask",
        "type" : "object",
        "properties" : {
          "entries" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/EntryResponseContentCloudServiceTask"
            }
          },
          "pagination" : {
            "$ref" : "#/components/schemas/PaginationMetadata"
          }
        }
      },
      "EntryResponseContentCloudServiceTask" : {
        "title" : "EntryResponseContentCloudServiceTask",
        "type" : "object",
        "properties" : {
          "entry" : {
            "$ref" : "#/components/schemas/CloudServiceTask"
          }
        }
      },
      "ListResponseContentCloudServiceTask" : {
        "title" : "ListResponseContentCloudServiceTask",
        "type" : "object",
        "properties" : {
          "list" : {
            "$ref" : "#/components/schemas/EntriesResponseContentCloudServiceTask"
          }
        }
      },
      "CloudIntegrationContext" : {
        "title" : "CloudIntegrationContext",
        "type" : "object",
        "properties" : {
          "errorMessage" : {
            "type" : "string"
          },
          "status" : {
            "type" : "string",
            "enum" : [ "INTEGRATION_REQUESTED", "INTEGRATION_RESULT_RECEIVED", "INTEGRATION_ERROR_RECEIVED" ]
          },
          "errorCode" : {
            "type" : "string"
          },
          "errorClassName" : {
            "type" : "string"
          },
          "stackTraceElements" : {
            "type" : "array",
            "items" : {
              "type" : "object",
              "properties" : {
                "classLoaderName" : {
                  "type" : "string"
                },
                "moduleName" : {
                  "type" : "string"
                },
                "moduleVersion" : {
                  "type" : "string"
                },
                "methodName" : {
                  "type" : "string"
                },
                "fileName" : {
                  "type" : "string"
                },
                "lineNumber" : {
                  "type" : "integer",
                  "format" : "int32"
                },
                "className" : {
                  "type" : "string"
                },
                "nativeMethod" : {
                  "type" : "boolean"
                }
              }
            }
          },
          "requestDate" : {
            "type" : "string",
            "format" : "date-time"
          },
          "resultDate" : {
            "type" : "string",
            "format" : "date-time"
          },
          "errorDate" : {
            "type" : "string",
            "format" : "date-time"
          },
          "id" : {
            "type" : "string"
          },
          "clientId" : {
            "type" : "string"
          },
          "clientName" : {
            "type" : "string"
          },
          "appVersion" : {
            "type" : "string"
          },
          "processDefinitionId" : {
            "type" : "string"
          },
          "processDefinitionKey" : {
            "type" : "string"
          },
          "businessKey" : {
            "type" : "string"
          },
          "processDefinitionVersion" : {
            "type" : "integer",
            "format" : "int32"
          },
          "processInstanceId" : {
            "type" : "string"
          },
          "outBoundVariables" : {
            "type" : "object",
            "additionalProperties" : {
              "type" : "object"
            }
          },
          "clientType" : {
            "type" : "string"
          },
          "connectorType" : {
            "type" : "string"
          },
          "rootProcessInstanceId" : {
            "type" : "string"
          },
          "inBoundVariables" : {
            "type" : "object",
            "additionalProperties" : {
              "type" : "object"
            }
          },
          "executionId" : {
            "type" : "string"
          },
          "parentProcessInstanceId" : {
            "type" : "string"
          },
          "serviceName" : {
            "type" : "string"
          },
          "serviceFullName" : {
            "type" : "string"
          },
          "serviceVersion" : {
            "type" : "string"
          },
          "appName" : {
            "type" : "string"
          },
          "serviceType" : {
            "type" : "string"
          }
        }
      },
      "EntryResponseContentCloudIntegrationContext" : {
        "title" : "EntryResponseContentCloudIntegrationContext",
        "type" : "object",
        "properties" : {
          "entry" : {
            "$ref" : "#/components/schemas/CloudIntegrationContext"
          }
        }
      }
    }
  },
  "x-service-url-prefix" : ""
}