Skip to content

Commit 7f94711

Browse files
authored
Update 1.4.0.md
1 parent 129aef8 commit 7f94711

File tree

1 file changed

+14
-11
lines changed

1 file changed

+14
-11
lines changed

ReleaseNotes/1.4.0.md

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,15 @@ The JSON format defines the steps within the workflow by referencing the fully q
2020

2121
| Field | Description |
2222
| ----------------------- | --------------------------- |
23-
| Id | Workflow Definition ID |
24-
| Version | Workflow Definition Version |
25-
| DataType | Fully qualified assembly class name of the custom data object |
26-
| Steps[].Id | Step ID (required unique key for each step) |
27-
| Steps[].StepStepType | Fully qualified assembly class name of the step |
28-
| Steps[].NextStepId | Step ID of the next step after this one completes |
23+
| Id | Workflow Definition ID |
24+
| Version | Workflow Definition Version |
25+
| DataType | Fully qualified assembly class name of the custom data object |
26+
| Steps[].Id | Step ID (required unique key for each step) |
27+
| Steps[].StepStepType | Fully qualified assembly class name of the step |
28+
| Steps[].NextStepId | Step ID of the next step after this one completes |
29+
| Steps[].Inputs | Optional Key/value pair of step inputs |
30+
| Steps[].Outputs | Optional Key/value pair of step outputs |
31+
| Steps[].CancelCondition | Optional cancel condition |
2932

3033
```json
3134
{
@@ -69,12 +72,12 @@ Full details of the capabilities of expression language can be found [here](htt
6972
"StepType": "MyApp.AddNumbers, MyApp",
7073
"NextStepId": "Bye",
7174
"Inputs": {
72-
"Value1": "data.Value1",
73-
"Value2": "data.Value2"
74-
},
75+
"Value1": "data.Value1",
76+
"Value2": "data.Value2"
77+
},
7578
"Outputs": {
76-
"Answer": "step.Result"
77-
}
79+
"Answer": "step.Result"
80+
}
7881
},
7982
{
8083
"Id": "Bye",

0 commit comments

Comments
 (0)