-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathschema.json
More file actions
114 lines (113 loc) · 4.09 KB
/
Copy pathschema.json
File metadata and controls
114 lines (113 loc) · 4.09 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"@context": [
"https://incf.github.io/neuroshapes/contexts/schema.json",
{
"this": "https://neuroshapes.org/commons/minds/shapes/"
}
],
"@id": "https://neuroshapes.org/commons/minds",
"@type": "nxv:Schema",
"imports": [
"https://neuroshapes.org/commons/subject",
"https://neuroshapes.org/commons/brainlocation",
"https://neuroshapes.org/commons/distribution",
"https://neuroshapes.org/commons/typedlabeledontologyterm",
"https://neuroshapes.org/commons/entity",
"https://neuroshapes.org/commons/annotation"
],
"shapes": [
{
"@id": "this:MINDSShape",
"@type": "sh:NodeShape",
"label": "Minimum Information about a Neuroscience DataSet",
"nodeKind": "sh:IRI",
"seeAlso": [
"https://www.w3.org/TR/vocab-dcat",
"https://schema.org",
"https://www.w3.org/TR/prov-o"
],
"and": [
{
"node": "https://neuroshapes.org/commons/entity/shapes/EntityShape"
},
{
"property": [
{
"path": "schema:releaseDate",
"name": "Release date",
"description": "The dataset release date.",
"datatype": "xsd:dateTime",
"maxCount": 1
},
{
"path": "rdf:type",
"name": "Type",
"description": "The dataset type.",
"nodeKind": "sh:IRI",
"minCount": 1
},
{
"path": "nsg:subject",
"name": "Subject",
"description": "The subject of the study. This data represent an observation of this subject.",
"class": "nsg:Subject",
"minCount": 1,
"seeAlso": "https://neuroshapes.org/commons/subject/shapes/SubjectShape",
"editorialNote": "Asserted subject entity. It may differ from the subject from the provenance."
},
{
"path": "nsg:brainLocation",
"name": "Brain Location",
"description": "The Brain location object.",
"class": "nsg:BrainLocation",
"node": "https://neuroshapes.org/commons/brainlocation/shapes/BrainLocationShape",
"minCount": 1
},
{
"path": "nsg:isRegisteredIn",
"class": "nsg:BrainAtlasSpatialReferenceSystem",
"maxCount": 1
},
{
"path": "nsg:atlasRelease",
"nodeKind": "sh:IRI",
"maxCount": 1
},
{
"path": "nsg:objectOfStudy",
"name": "Object of Study",
"description": "Object of Study",
"editorialNote": "The object of study ",
"class": "nsg:ObjectOfStudy",
"node": "https://neuroshapes.org/commons/typedlabeledontologyterm/shapes/ObjectOfStudyOntologyTermShape"
},
{
"path": "nsg:contribution",
"name": "Qualified Contribution",
"description": "Information about the contribution of an agent during the generation of this dataset.",
"nodeKind": "sh:BlankNodeOrIRI",
"class": "nsg:Contribution",
"seeAlso": "https://neuroshapes.org/commons/contribution/shapes/ContributionShape",
"minCount": 1
},
{
"path": "schema:distribution",
"name": "Distribution",
"description": "A dataset in downloadable form. The downloadable form has a specific format and is located at a specific location.",
"class": "schema:DataDownload",
"node": "https://neuroshapes.org/commons/distribution/shapes/DistributionShape",
"minCount": 1
},
{
"path": "nsg:annotation",
"name": "Annotation",
"description": "Annotations of the dataset.",
"class": "nsg:Annotation",
"node": "https://neuroshapes.org/commons/annotation/shapes/AnnotationShape"
}
]
}
]
}
]
}