Skip to content

Commit

Permalink
Fix target values to be valid JSON Pointers
Browse files Browse the repository at this point in the history
  • Loading branch information
ndenny committed Feb 7, 2024
1 parent e021569 commit c237054
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/1.0.0/pet-coupons.workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -116,22 +116,22 @@ workflows:
parameters:
- name: pet_id
in: body
target: $request.body#/petId
target: /petId
value: $inputs.pet_id
- name: coupon_code
in: body
target: $request.body#/couponCode
target: /couponCode
value: $inputs.coupon_code
- name: quantity
in: body
value: $inputs.quantity
- name: status
in: body
target: $request.body#/status
target: /status
value: "placed"
- name: complete
in: body
target: $request.body#/complete
target: /complete
value: false
successCriteria:
- condition: $statusCode == 200
Expand Down

0 comments on commit c237054

Please sign in to comment.