Skip to content

Commit bad80ac

Browse files
committed
"type" is not optional
1 parent 09a97f5 commit bad80ac

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

CommandLineTool.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,8 @@ $graph:
101101
and [loadListing](#LoadContents) to control whether and how
102102
`Directory` listings should be loaded for use in expressions.
103103
* [Better explain](#map) the `map<…>` notation that has existing since v1.0.
104+
* Fixed schema error where the `type` field inside the `inputs` and
105+
`outputs` field was incorrectly listed as optional.
104106
105107
See also the [CWL Workflow Description, v1.1.0-dev1 changelog](Workflow.html#Changelog).
106108
@@ -437,7 +439,6 @@ $graph:
437439
fields:
438440
- name: type
439441
type:
440-
- "null"
441442
- CWLType
442443
- stdin
443444
- CommandInputRecordSchema
@@ -472,7 +473,6 @@ $graph:
472473
fields:
473474
- name: type
474475
type:
475-
- "null"
476476
- CWLType
477477
- stdout
478478
- stderr

Workflow.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,9 @@ $graph:
8888
and [loadListing](#LoadContents) to control whether and how
8989
`Directory` listings should be loaded for use in expressions.
9090
* [Better explain](#map) the `map<…>` notation that has existing since v1.0.
91+
* Fixed schema error where the `type` field inside the `inputs` and
92+
`outputs` fields for both `Workflow` and `ExpressionTool` was
93+
incorrectly listed as optional.
9194
9295
See also the [CWL Command Line Tool Description, v1.1.0-dev1 changelog](CommandLineTool.html#Changelog).
9396
@@ -110,7 +113,6 @@ $graph:
110113
fields:
111114
- name: type
112115
type:
113-
- "null"
114116
- CWLType
115117
- OutputRecordSchema
116118
- OutputEnumSchema
@@ -139,7 +141,6 @@ $graph:
139141
fields:
140142
- name: type
141143
type:
142-
- "null"
143144
- CWLType
144145
- InputRecordSchema
145146
- InputEnumSchema
@@ -235,7 +236,6 @@ $graph:
235236
If not specified, the default method is "merge_nested".
236237
- name: type
237238
type:
238-
- "null"
239239
- CWLType
240240
- OutputRecordSchema
241241
- OutputEnumSchema

0 commit comments

Comments
 (0)