Skip to content
This repository was archived by the owner on Feb 8, 2024. It is now read-only.

Commit

Permalink
[ACTIVITI-4914] Add changes to activiti-api
Browse files Browse the repository at this point in the history
  • Loading branch information
MichalKinas committed Sep 27, 2023
1 parent df636e1 commit 55e78b5
Showing 1 changed file with 47 additions and 8 deletions.
55 changes: 47 additions & 8 deletions definitions/activiti-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -2469,21 +2469,40 @@
],
"parameters": [
{
"in": "body",
"name": "content",
"description": "content that workflow was started with",
"name": "sourceId",
"in": "query",
"description": "sourceId",
"required": true,
"schema": {
"$ref": "#/definitions/RelatedContentRepresentation"
}
"type": "string"
},
{
"name": "source",
"in": "query",
"description": "source",
"required": true,
"type": "string"
},
{
"name": "size",
"in": "query",
"description": "size",
"required": false,
"type": "number"
},
{
"name": "page",
"in": "query",
"description": "page",
"required": false,
"type": "number"
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "array",
"$ref": "#/definitions/RelatedProcessTask"
"type": "object",
"$ref": "#/definitions/ResultListDataRepresentationRelatedProcessTask"
}
}
},
Expand Down Expand Up @@ -15042,6 +15061,26 @@
"type": "string"
}
}
},
"ResultListDataRepresentationRelatedProcessTask": {
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"$ref": "#/definitions/RelatedProcessTask"
}
},
"size": {
"type": "number"
},
"start": {
"type": "number"
},
"total": {
"type": "number"
}
}
}
}
}

0 comments on commit 55e78b5

Please sign in to comment.