Skip to content

Commit

Permalink
Merge pull request #812 from Maslino/fix_contextAttributes_example
Browse files Browse the repository at this point in the history
fix contextAttributes examples as they should be of object/map type
  • Loading branch information
cdavernas authored Jan 17, 2024
2 parents 68d7472 + 0b41737 commit 51368db
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 51368db

Please sign in to comment.