Skip to content

Commit 51368db

Browse files
authored
Merge pull request #812 from Maslino/fix_contextAttributes_example
fix contextAttributes examples as they should be of object/map type
2 parents 68d7472 + 0b41737 commit 51368db

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

specification.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5084,9 +5084,9 @@ before the workflow execution is stopped, and continued as a new workflow instan
50845084
{
50855085
"eventRef": "provisioning-complete-event",
50865086
"data": "${ .provisionedOrders }",
5087-
"contextAttributes": [{
5087+
"contextAttributes": {
50885088
"buyerId": "${ .buyerId }"
5089-
}]
5089+
}
50905090
}
50915091
```
50925092

@@ -5097,7 +5097,7 @@ before the workflow execution is stopped, and continued as a new workflow instan
50975097
eventRef: provisioning-complete-event
50985098
data: "${ .provisionedOrders }"
50995099
contextAttributes:
5100-
- buyerId: "${ .buyerId }"
5100+
buyerId: "${ .buyerId }"
51015101
```
51025102

51035103
</td>

0 commit comments

Comments
 (0)