-
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.
Merge branch 'main' into requestBody-enhancement
- Loading branch information
Showing
5 changed files
with
59 additions
and
10 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
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,23 @@ | ||
# Workflows Specification Examples | ||
|
||
## Purpose | ||
|
||
This README will provide details on the examples found in this directory as well as examples to be added to cover a | ||
variety of use case scenarios. | ||
|
||
## Examples | ||
|
||
### FAPI | ||
*needs description* | ||
|
||
### OAuth | ||
*needs description* | ||
|
||
### Pet Coupons | ||
*needs description* | ||
|
||
## Examples to be added | ||
|
||
* An example where a workflow imports another workflow both of which have components defined to show that the entry/root | ||
workflow can not reference components defined in the imported workflow. Components are scoped to the workflow they | ||
are defined in. |
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
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