comparison env/lib/python3.7/site-packages/schema_salad/metaschema/map_res_schema.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 "$graph": [{
3 "name": "MappedType",
4 "type": "record",
5 "documentRoot": true,
6 "fields": [{
7 "name": "mapped",
8 "type": {
9 "type": "array",
10 "items": "ExampleRecord"
11 },
12 "jsonldPredicate": {
13 "mapSubject": "key",
14 "mapPredicate": "value"
15 }
16 }],
17 },
18 {
19 "name": "ExampleRecord",
20 "type": "record",
21 "fields": [{
22 "name": "key",
23 "type": "string"
24 }, {
25 "name": "value",
26 "type": "string"
27 }
28 ]
29 }]
30 }