-
Notifications
You must be signed in to change notification settings - Fork 3
/
schemas.go
50 lines (42 loc) · 1.7 KB
/
schemas.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package cwl
type InputRecord struct {
Label string `json:"label,omitempty"`
Fields []InputField `json:"fields,omitempty"`
}
type InputField struct {
Name string `json:"name,omitempty"`
Doc string `json:"doc,omitempty"`
Label string `json:"label,omitempty"`
Type []InputType `json:"type,omitempty"`
InputBinding *CommandLineBinding `json:"inputBinding,omitempty"`
}
type InputEnum struct {
Label string `json:"label,omitempty"`
Symbols []string `json:"symbols,omitempty"`
InputBinding *CommandLineBinding `json:"inputBinding,omitempty"`
}
type InputArray struct {
Label string `json:"label,omitempty"`
Items []InputType `json:"items,omitempty"`
InputBinding *CommandLineBinding `json:"inputBinding,omitempty"`
}
type OutputRecord struct {
Label string `json:"label,omitempty"`
Fields []OutputField `json:"fields,omitempty"`
}
type OutputField struct {
Name string `json:"name,omitempty"`
Doc string `json:"doc,omitempty"`
Type []OutputType `json:"type,omitempty"`
OutputBinding *CommandOutputBinding `json:"outputBinding,omitempty"`
}
type OutputEnum struct {
Label string `json:"label,omitempty"`
Symbols []string `json:"symbols,omitempty"`
OutputBinding *CommandOutputBinding `json:"outputBinding,omitempty"`
}
type OutputArray struct {
Label string `json:"label,omitempty"`
Items []OutputType `json:"items,omitempty"`
OutputBinding *CommandOutputBinding `json:"outputBinding,omitempty"`
}