We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70a076a commit 53cf86dCopy full SHA for 53cf86d
v1.0/Workflow.yml
@@ -39,6 +39,29 @@ $graph:
39
Since draft-3, this draft introduces the following changes and additions:
40
41
* The 'inputs' and 'outputs' fields have been renamed 'in' and 'out'.
42
+ * Syntax simplifcations: denoted by the map<> syntax. Example: `in`
43
+ contains a list of items, each with an id. Now one can specify
44
+ a mapping of that identifier to the corresponding
45
+ `InputParameter`.
46
+ ```
47
+ in:
48
+ - id: one
49
+ type: string
50
+ doc: First input parameter
51
+ - id: two
52
+ type: int
53
+ doc: Second input parameter
54
55
+ can be
56
57
58
+ one:
59
60
61
+ two:
62
63
64
65
66
## Purpose
67
0 commit comments