-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: suggest multilevel parameters (#155)
* chore: suggest multilevel parameters * Update versions/1.0.0.md Co-authored-by: Frank Kilcommins <[email protected]> * Update examples/1.0.0/ExtendedParametersExample.workflow.yaml Co-authored-by: Frank Kilcommins <[email protected]> * Update versions/1.0.0.md Co-authored-by: Frank Kilcommins <[email protected]> --------- Co-authored-by: Frank Kilcommins <[email protected]>
- Loading branch information
1 parent
3ec4dc0
commit 6e2769f
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
workflowsSpec: 1.0.0 | ||
info: | ||
title: Public Zoo API | ||
version: '1.0' | ||
sourceDescriptions: | ||
- name: animals | ||
type: openapi | ||
url: ./animals.yaml | ||
workflows: | ||
- workflowId: animal-workflow | ||
parameters: | ||
- in: cookie | ||
name: workflowLevelParamOne | ||
value: someValue | ||
- in: header | ||
name: workflowLevelParamTwo | ||
value: someValue | ||
steps: | ||
- stepId: post-step | ||
parameters: | ||
- in: cookie | ||
name: authentication | ||
value: SUPER_SECRET | ||
operationId: animals.postAnimal | ||
- stepId: get-step | ||
operationId: animals.getRandomAnimal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters