-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDSPdefined.json
73 lines (73 loc) · 1.55 KB
/
DSPdefined.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
{
"@context": "http://www.w3.org/ns/csvw",
"tables": [{
"url": "http://example.org/descriptionSet.csv",
"tableSchema": {
"columns": [{
"name": "descID",
"datatype": "string"
}, {
"name": "version",
"datatype": "string"
}, {
"name": "versionDate",
"datatype": "date"
}, {
"name": "topic",
"datatype": "string"
}, {
"name": "creator",
"datatype": "string"
}
],
"aboutUrl": "http://example.org/dsp.csv{#descID}",
"propertyUrl": "http://example.com/{_name}",
"primaryKey": "descID"
}
}, {
"url": "http://example.org/description.csv",
"tableSchema": {
"columns": [{
"name": "descSetID",
"valueUrl": "http://example.org/dsp.csv{#descSetID}"
}, {
"name": "descID",
"datatype": "string"
}, {
"name": "label",
"datatype": "string"
}, {
"name": "shortDescription",
"datatype": "string"
},
{
"name": "longDescription",
"datatype": "string"
},
{
"name": "minOccurs",
"datatype": "integer"
},
{
"name": "maxOccurs",
"datatype": "integer"
},
{
"name": "standalone",
"datatype": "string"
},
{
"name": "class",
"datatype": "string"
}
],
"foreignKeys": [{
"columnReference": "descSetID",
"reference": {
"resource": "http://example.org/description.csv",
"columnReference": "descSetID"
}
}]
}
}]
}