-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathschema.json
More file actions
77 lines (76 loc) · 2.8 KB
/
Copy pathschema.json
File metadata and controls
77 lines (76 loc) · 2.8 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
{
"@context": [
"https://incf.github.io/neuroshapes/contexts/schema.json",
{
"this": "https://neuroshapes.org/dash/reconstruction/shapes/"
}
],
"@id": "https://neuroshapes.org/dash/reconstruction",
"@type": "nxv:Schema",
"imports": [
"https://neuroshapes.org/commons/activity",
"https://neuroshapes.org/commons/typedlabeledontologyterm"
],
"prov:wasDerivedFrom": "https://github.com/INCF/neuroshapes/blob/v0.3.15/modules/morphology/src/main/resources/schemas/neurosciencegraph/morphology/reconstruction/v0.1.1.json",
"shapes": [
{
"@id": "this:ReconstructionShape",
"@type": "sh:NodeShape",
"label": "Reconstruction activities description.",
"targetClass": ["nsg:Reconstruction", "nsg:NeuronMorphologyReconstruction"],
"nodeKind": "sh:BlankNodeOrIRI",
"and": [
{
"node": "https://neuroshapes.org/commons/activity/shapes/ActivityShape"
},
{
"property": [
{
"path": "nsg:objectiveType",
"name": "Objective type",
"description": "Type of objective that was used for the reconstruction such as dry, oil or water.",
"node": "https://neuroshapes.org/commons/typedlabeledontologyterm/shapes/ObjectiveTypeOntologyTermShape",
"maxCount": 1
},
{
"path": "nsg:objectiveMagnification",
"name": "Objective magnification",
"description": "Objective magnification.",
"datatype": "xsd:string",
"maxCount": 1
},
{
"path": "nsg:compressionCorrection",
"name": "Reconstruction compression correction",
"description": "Reconstruction compression corrected refers to the correction applied to the cell reconstruction, expected value: x1.25 in Z.",
"datatype": "xsd:string",
"maxCount": 1
},
{
"path": "prov:used",
"description": "The labeled cell used for the reconstruction activity",
"class": "nsg:LabeledCell",
"minCount": 1,
"maxCount": 1
},
{
"path": "prov:generated",
"description": "The reconstructed cell generated",
"class": "nsg:ReconstructedCell",
"minCount": 1,
"maxCount": 1
},
{
"path": "nsg:lowMagnificationImage",
"name": "Low Magnification Image",
"description": "Image taken at low magnification for anatomical context.",
"datatype": "xsd:string",
"maxCount": 1,
"comment": "File path or URL to the low magnification image."
}
]
}
]
}
]
}