File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ $graph:
50
50
51
51
## Changelog
52
52
53
+ * Added optional name and doc fields to CommandOutputRecordSchema
53
54
* Clarify behavior around `ENTRYPOINT` and `CMD` in containers
54
55
* Clarify documentation around `valueFrom` and `null` inputs.
55
56
* Default values for some fields are now expressed in the schema.
Original file line number Diff line number Diff line change @@ -591,7 +591,7 @@ $graph:
591
591
"contents" field of the file object for use by expressions.
592
592
593
593
594
- - name : InputSchema
594
+ - name : IOSchema
595
595
extends : [Labeled, sld:Documented]
596
596
type : record
597
597
abstract : true
@@ -601,9 +601,13 @@ $graph:
601
601
jsonldPredicate : " @id"
602
602
doc : " The identifier for this type"
603
603
604
+ - name : InputSchema
605
+ extends : [IOSchema]
606
+ type : record
607
+ abstract : true
604
608
605
609
- name : OutputSchema
606
- extends : [Labeled ]
610
+ extends : [IOSchema ]
607
611
type : record
608
612
abstract : true
609
613
Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ $graph:
49
49
## Changelog
50
50
51
51
* Document explicitly that CWL allows pass-through of workflow inputs to outputs
52
+ * Added optional name and doc fields to OutputRecordSchema
52
53
* Default values for some fields are now expressed in the schema
53
54
* When defining record types, fields of type `File` may now include
54
55
`format`, `secondaryFiles`, and `streamable`.
You can’t perform that action at this time.
0 commit comments