-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathparameters_meta_schema.json
295 lines (295 loc) · 9 KB
/
parameters_meta_schema.json
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://nextflow.io",
"title": "Nextflow Schema Meta-schema",
"description": "Meta-schema to validate Nextflow parameter schema files",
"type": "object",
"properties": {
"$schema": {
"title": "schema",
"type": "string",
"minLength": 1
},
"$id": {
"title": "ID URI",
"type": "string",
"minLength": 1
},
"title": {
"title": "Title",
"type": "string",
"minLength": 1
},
"description": {
"title": "Description",
"type": "string",
"minLength": 1
},
"type": {
"title": "Top level type",
"type": "string",
"const": "object"
},
"$defs": {
"title": "Parameter groups",
"type": "object",
"patternProperties": {
"^.*$": {
"type": "object",
"required": ["title", "type", "properties"],
"properties": {
"title": {
"type": "string",
"minLength": 1
},
"type": {
"const": "object"
},
"fa_icon": {
"type": "string",
"pattern": "^fa"
},
"description": {
"type": "string"
},
"required": {
"type": "array"
},
"properties": {
"$ref": "#/$defs/parameterOptions"
},
"dependentRequired": {
"type": "object",
"additionalProperties": {
"type": "array",
"items": {
"type": "string"
},
"uniqueItems": true,
"default": []
}
}
}
}
}
},
"properties": {
"$ref": "#/$defs/parameterOptions"
},
"dependentRequired": {
"type": "object",
"additionalProperties": {
"type": "array",
"items": {
"type": "string"
},
"uniqueItems": true,
"default": []
}
},
"allOf": {
"title": "Combine definition groups",
"type": "array",
"items": {
"type": "object",
"required": ["$ref"],
"properties": {
"$ref": {
"type": "string",
"pattern": "^#/\\$defs/[^/]+$"
}
}
}
}
},
"required": ["$schema", "$id", "title", "description", "type"],
"$defs": {
"typeAnnotation": {
"type": "string",
"enum": ["string", "boolean", "integer", "number", "null"]
},
"allTypes": {
"type": ["integer", "boolean", "string", "number", "null"]
},
"nonNegativeInteger": {
"type": "integer",
"minimum": 0
},
"parameterOptions": {
"type": "object",
"patternProperties": {
"^.*$": {
"type": "object",
"allOf": [
{ "$ref": "#/$defs/standardKeywords" },
{ "$ref": "#/$defs/customKeywords" }
],
"required": ["type", "description"],
"unevaluatedProperties": false
}
}
},
"standardKeywords": {
"type": "object",
"description": "Allowed standard JSON Schema properties.",
"properties": {
"type": {
"description": "The type of the parameter value. Can be one or more of these: `['integer', 'boolean', 'number', 'string', 'null']`",
"anyOf": [
{ "$ref": "#/$defs/typeAnnotation" },
{
"type": "array",
"items": { "$ref": "#/$defs/typeAnnotation" }
}
]
},
"format": {
"type": "string",
"description": "The format of a parameter value with the 'string' type. This is used for additional validation on the structure of the value.",
"enum": [
"file-path",
"directory-path",
"path",
"file-path-pattern",
"date-time",
"date",
"time",
"email",
"uri",
"regex"
]
},
"pattern": {
"type": "string",
"format": "regex",
"minLength": 1,
"description": "Check a parameter value of 'string' type against a regex pattern"
},
"description": {
"type": "string",
"description": "The description of the current parameter"
},
"default": {
"$ref": "#/$defs/allTypes",
"description": "Specifies a default value to use for this parameter"
},
"examples": {
"type": "array",
"items": {
"$ref": "#/$defs/allTypes"
},
"description": "A list of examples for the current parameter"
},
"deprecated": {
"type": "boolean",
"description": "States that the parameter is deprecated. Please provide a nice deprecation message using 'errorMessage'"
},
"minLength": {
"$ref": "#/$defs/nonNegativeInteger",
"description": "The minimum length a 'string' parameter value should be"
},
"maxLength": {
"$ref": "#/$defs/nonNegativeInteger",
"description": "The maximum length a 'string' parameter value should be"
},
"minimum": {
"type": "number",
"description": "The mimimum value an 'integer' or 'number' parameter value should be"
},
"exclusiveMinimum": {
"type": "number",
"description": "The exclusive mimimum value an 'integer' or 'number' parameter value should be"
},
"maximum": {
"type": "number",
"description": "The maximum value an 'integer' or 'number' parameter value should be"
},
"exclusiveMaximum": {
"type": "number",
"description": "The exclusive maximum value an 'integer' or 'number' parameter value should be"
},
"multipleOf": {
"type": "number",
"description": "The 'integer' or 'number' parameter value should be a multiple of this value"
},
"enum": {
"type": "array",
"uniqueItems": true,
"items": {
"$ref": "#/$defs/allTypes"
},
"description": "The parameter value should be one of the values specified in this enum array"
},
"const": {
"$ref": "#/$defs/allTypes",
"description": "The parameter value should be equal to this value"
}
}
},
"customKeywords": {
"type": "object",
"description": "Additional custom JSON Schema properties.",
"properties": {
"errorMessage": {
"type": "string",
"minLength": 1,
"description": "NON STANDARD OPTION: The custom error message to display in case validation against this parameter fails. Can also be used as a deprecation message if 'deprecated' is true"
},
"exists": {
"type": "boolean",
"description": "NON STANDARD OPTION: Check if a file exists. This parameter value needs to be a `string` type with one of these formats: `['path', 'file-path', 'directory-path', 'file-path-pattern']`"
},
"schema": {
"type": "string",
"minLength": 1,
"pattern": "\\.json$",
"description": "NON STANDARD OPTION: Check the given file against a schema passed to this keyword. Will only work when type is `string` and format is `path` or `file-path`"
},
"help_text": {
"type": "string",
"description": "NON STANDARD OPTION: A more detailed help text"
},
"fa_icon": {
"type": "string",
"pattern": "^fa",
"description": "NON STANDARD OPTION: A font awesome icon to use in the nf-core parameter documentation"
},
"hidden": {
"type": "boolean",
"description": "NON STANDARD OPTION: Hide this parameter from the help message and documentation"
},
"mimetype": {
"type": "string",
"description": "NON STANDARD OPTION: The MIME type of the parameter value",
"deprecated": true,
"errorMessage": "The 'mimetype' keyword is deprecated. Use 'pattern' or 'format' instead."
}
},
"dependentSchemas": {
"exists": {
"$comment": "This checks if the type is a 'string' and the format corresponds to a file or directory when 'exists' is used.",
"properties": {
"type": { "const": "string" },
"format": {
"enum": [
"path",
"file-path",
"file-path-pattern",
"directory-path"
]
}
}
},
"schema": {
"$comment": "This checks if the type is a 'string' and the format is 'path' or 'file-path'",
"properties": {
"type": { "const": "string" },
"format": {
"enum": ["path", "file-path"]
}
}
}
}
}
}
}