-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathScholarlyArticle.json
101 lines (101 loc) · 2.78 KB
/
ScholarlyArticle.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"@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:ScholarlyArticle",
"@type": "rdfs:Class",
"rdfs:comment": "A scholarly article in which the dataset or computational tool is cited.",
"rdfs:label": "ScholarlyArticle",
"rdfs:subClassOf": {
"@id": "schema:ScholarlyArticle"
},
"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 scholarly article",
"type": "string"
},
"doi": {
"description": "Digital Object Identifier (DOI) for the article",
"type": "string"
},
"pmid": {
"description": "PubMed ID (PMID) for the article",
"type": "string"
},
"pmcid": {
"description": "PubMed Central (PMC) ID for the article",
"type": "string"
},
"name": {
"description": "Name of the article",
"type": "string"
},
"url": {
"description": "URL where the article can be found",
"type": "string",
"format": "uri"
}
},
"required": [
"url"
],
"recommended": [
"name",
"doi",
"pmid",
"pmcid"
]
}
},
{
"@id": "niaid:doi",
"@type": "rdf:Property",
"rdfs:comment": "Digital Object Identifier (DOI) for the article",
"rdfs:label": "doi",
"schema:domainIncludes": [{
"@id": "niaid:ScholarlyArticle"
}],
"schema:rangeIncludes": [{
"@id": "schema:Text"
}]
},
{
"@id": "niaid:pmid",
"@type": "rdf:Property",
"rdfs:comment": "PubMed ID (PMID) for the article",
"rdfs:label": "pmid",
"schema:domainIncludes": [{
"@id": "niaid:ScholarlyArticle"
}],
"schema:rangeIncludes": [{
"@id": "schema:Number",
"@id": "schema:Text"
}]
},
{
"@id": "niaid:pmcid",
"@type": "rdf:Property",
"rdfs:comment": "PubMed Central (PMC) ID for the article",
"rdfs:label": "pmcid",
"schema:domainIncludes": [{
"@id": "niaid:ScholarlyArticle"
}],
"schema:rangeIncludes": [{
"@id": "schema:Number",
"@id": "schema:Text"
}]
}
]
}