Skip to content

Commit

Permalink
fix contextAttributes example as they should be of object/map type
Browse files Browse the repository at this point in the history
Signed-off-by: liuxiong <[email protected]>
  • Loading branch information
Maslino committed Jan 17, 2024
1 parent 68d7472 commit 0b41737
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions specification.md
Original file line number Diff line number Diff line change
Expand Up @@ -5084,9 +5084,9 @@ before the workflow execution is stopped, and continued as a new workflow instan
{
"eventRef": "provisioning-complete-event",
"data": "${ .provisionedOrders }",
"contextAttributes": [{
"contextAttributes": {
"buyerId": "${ .buyerId }"
}]
}
}
```

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

</td>
Expand Down

0 comments on commit 0b41737

Please sign in to comment.