Skip to content

Commit 7eeb70a

Browse files
committed
reparent file specific fields from SchemaBase to Parameter
1 parent 272aefa commit 7eeb70a

File tree

2 files changed

+23
-24
lines changed

2 files changed

+23
-24
lines changed

draft-4/Process.yml

+22-23
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,29 @@ $graph:
141141
- name: SchemaBase
142142
type: record
143143
abstract: true
144+
145+
146+
- name: Parameter
147+
type: record
148+
extends: "#SchemaBase"
149+
abstract: true
150+
doc: |
151+
Define an input or output parameter to a process.
152+
144153
fields:
154+
- name: label
155+
type:
156+
- "null"
157+
- string
158+
jsonldPredicate: "rdfs:label"
159+
doc: "A short, human-readable label of this parameter object."
160+
161+
- name: description
162+
type:
163+
- "null"
164+
- string
165+
jsonldPredicate: "rdfs:comment"
166+
doc: "A long, human-readable description of this parameter object."
145167
- name: secondaryFiles
146168
type:
147169
- "null"
@@ -200,29 +222,6 @@ $graph:
200222
pipe. Default: `false`.
201223
202224
203-
- name: Parameter
204-
type: record
205-
extends: "#SchemaBase"
206-
abstract: true
207-
doc: |
208-
Define an input or output parameter to a process.
209-
210-
fields:
211-
- name: label
212-
type:
213-
- "null"
214-
- string
215-
jsonldPredicate: "rdfs:label"
216-
doc: "A short, human-readable label of this parameter object."
217-
218-
- name: description
219-
type:
220-
- "null"
221-
- string
222-
jsonldPredicate: "rdfs:comment"
223-
doc: "A long, human-readable description of this parameter object."
224-
225-
226225
- type: enum
227226
name: Expression
228227
doc: |

draft-4/Workflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ $graph:
502502
extends: ProcessRequirement
503503
doc: |
504504
Indicates that the workflow platform must support nested workflows in
505-
the `run` field of (WorkflowStep)(#WorkflowStep).
505+
the `run` field of [WorkflowStep](#WorkflowStep).
506506
507507
- name: ScatterFeatureRequirement
508508
type: record

0 commit comments

Comments
 (0)