comparison env/lib/python3.7/site-packages/schema_salad/metaschema/sfdsl_res.yml @ 0:26e78fe6e8c4 draft

"planemo upload commit c699937486c35866861690329de38ec1a5d9f783"
author shellac
date Sat, 02 May 2020 07:14:21 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:26e78fe6e8c4
1 - |
2 ## Domain Specific Language for secondary files
3
4 Fields may be tagged `secondaryFilesDSL: true` in `jsonldPredicate`. If so, the field is expanded using the
5 following micro-DSL for secondary files:
6
7 * If the value is a string, it is transformed to an object with two fields `pattern` and `required`
8 * By default, the value of `required` is `null` (this indicates default behavior, which may be based on the context)
9 * If the value ends with a question mark `?` the question mark is
10 stripped off and the value of the field `required` is set to `False`
11 * The remaining value is assigned to the field `pattern`
12
13 ### Type DSL example
14
15 Given the following schema:
16
17 ```
18 - $include: sfdsl_res_schema.yml
19 - |
20 ```
21
22 Process the following example:
23
24 ```
25 - $include: sfdsl_res_src.yml
26 - |
27 ```
28
29 This becomes:
30
31 ```
32 - $include: sfdsl_res_proc.yml
33 - |
34 ```