-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMonetaryGrant.json
83 lines (83 loc) · 2.48 KB
/
MonetaryGrant.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
74
75
76
77
78
79
80
81
82
83
{
"@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:MonetaryGrant",
"@type": "rdfs:Class",
"rdfs:comment": "Funding that supports (sponsors) the collection of this dataset or computational tool through some kind of financial contribution",
"rdfs:label": "MonetaryGrant",
"rdfs:subClassOf": {
"@id": "schema:MonetaryGrant"
},
"schema:isPartOf": {
"@id": "https://discovery.biothings.io/view/niaid/"
},
"$validation": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"funder": {
"description": "An organization associated with a creator or funder of a dataset",
"oneOf": [{
"$ref": "#/definitions/funder"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/funder"
}
}
]
},
"description": {
"type": "string",
"description": "description about the funding award / grant"
},
"url": {
"type": "string",
"description": "award / grant URL"
},
"identifier": {
"type": "string",
"description": "Unique identifier(s) for the grant(s) used to fund the Dataset"
}
},
"required": [
"funder",
"identifier"
],
"recommended": [
"description",
"url"
],
"definitions": {
"funder": {
"type": "object",
"@type": "Organization",
"description": "Information about a single funder",
"properties": {
"name": {
"type": "string",
"description": "An organization associated with a creator or funder of a dataset"
},
"parentOrganization": {
"type": "string",
"description": "name of the parent funding organization"
}
},
"required": [
"name"
]
}
}
}
}
]
}