Skip to content

Commit df1154c

Browse files
authored
Merge pull request #150 from tsurdilo/updatefilters2
update data filter props
2 parents 32fae8e + 7b3115e commit df1154c

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

api/src/main/resources/schema/filters/actiondatafilter.json

+5
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@
1313
"toStateData": {
1414
"type": "string",
1515
"description": "Workflow expression that selects a state data element to which the action results should be added/merged into. If not specified, denote, the top-level state data element"
16+
},
17+
"useResults": {
18+
"type": "boolean",
19+
"description": "If set to false, action data results are not added/merged to state data. In this case 'results' and 'toStateData' should be ignored. Default is true.",
20+
"default": true
1621
}
1722
},
1823
"required": []

api/src/main/resources/schema/filters/eventdatafilter.json

+5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@
99
"toStateData": {
1010
"type": "string",
1111
"description": " Workflow expression that selects a state data element to which the event payload should be added/merged into. If not specified, denotes, the top-level state data element."
12+
},
13+
"useData": {
14+
"type": "boolean",
15+
"description": "If set to false, event payload is not added/merged to state data. In this case 'data' and 'toStateData' should be ignored. Default is true.",
16+
"default": true
1217
}
1318
},
1419
"required": []

0 commit comments

Comments
 (0)