-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathOrganization.json
44 lines (44 loc) · 1.24 KB
/
Organization.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:Organization",
"@type": "rdfs:Class",
"rdfs:comment": "An organization associated with a creator or funder of a dataset or computational tool",
"rdfs:label": "Organization",
"rdfs:subClassOf": {
"@id": "schema:Organization"
},
"schema:isPartOf": {
"@id": "https://discovery.biothings.io/view/niaid/"
},
"$validation": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"name": {
"description": "Name of the organization",
"type": "string"
},
"parentOrganization": {
"description": "Name of the parent organization",
"type": "string"
}
},
"required": [
"name"
],
"recommended": [
"parentOrganization"
]
}
}
]
}