-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDataDownload.json
44 lines (44 loc) · 1.25 KB
/
DataDownload.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
{
"@context": {
"owl": "http://www.w3.org/2002/07/owl#",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"schema": "http://schema.org/",
"niaid": "https://discovery.biothings.io/view/niaid/"
},
"@id": "https://discovery.biothings.io/view/niaid/",
"@graph": [
{
"@id": "niaid:DataDownload",
"@type": "rdfs:Class",
"rdfs:comment": "A dataset in downloadable form.",
"rdfs:label": "DataDownload",
"rdfs:subClassOf": {
"@id": "schema:DataDownload"
},
"schema:isPartOf": {
"@id": "https://discovery.biothings.io/view/niaid/"
},
"$validation": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"dateModified": {
"description": "date when the data download / file has been modified",
"type": "string",
"format": "date"
},
"contentUrl": {
"description": "Location (URL) from which the data can be downloaded",
"type": "string",
"format": "uri"
}
},
"required": [
"dateModified",
"contentUrl"
]
}
}
]
}