Skip to content

Commit a5a7516

Browse files
committed
nope, use an enum instead
1 parent 24a611d commit a5a7516

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

draft-4/Process.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,9 @@ $graph:
138138
# type: ["null", long]
139139
# doc: Optional directory size.
140140

141-
- name: stdout
142-
type: record
141+
- name: CWLStdOut
142+
type: enum
143+
symbols: [ stdout ]
143144
doc: |
144145
Only valid as a `type` for an output.
145146
@@ -165,8 +166,9 @@ $graph:
165166
If there is no `stdout` name provided, a random filename will be created.
166167
167168
168-
- name: stderr
169-
type: record
169+
- name: CWLStdErr
170+
type: enum
171+
symbols: [ stderr ]
170172
doc: |
171173
Only valid as a `type` for an output.
172174
@@ -265,8 +267,8 @@ $graph:
265267
type:
266268
- "null"
267269
- "#CWLType"
268-
- "https://w3id.org/cwl/cwl#stdout"
269-
- "https://w3id.org/cwl/cwl#stderr"
270+
- "#CWLStdOut"
271+
- "#CWLStdErr"
270272
- "sld:RecordSchema"
271273
- "sld:EnumSchema"
272274
- "sld:ArraySchema"

0 commit comments

Comments
 (0)