Skip to content

Commit

Permalink
fix eType again (#281)
Browse files Browse the repository at this point in the history
  • Loading branch information
genric authored Dec 6, 2018
1 parent da2b105 commit 75806b8
Show file tree
Hide file tree
Showing 2 changed files with 108 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
}
],
"@type": "nxv:Schema",
"owl:deprecated": true,
"imports": [
"{{base}}/schemas/neurosciencegraph/commons/entity/v1.0.0",
"{{base}}/schemas/neurosciencegraph/commons/typedlabeledontologyterm/v0.1.2"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
{
"@context": [
"{{base}}/contexts/neurosciencegraph/core/schema/v0.1.0",
{
"this": "{{base}}/schemas/neurosciencegraph/simulation/bluepyefeconfiguration/v0.1.6/shapes/"
}
],
"@type": "nxv:Schema",
"imports": [
"{{base}}/schemas/neurosciencegraph/commons/entity/v1.0.0",
"{{base}}/schemas/neurosciencegraph/commons/typedlabeledontologyterm/v0.1.2"
],
"shapes": [
{
"@id": "this:BluePyEfeConfigurationShape",
"@type": "sh:NodeShape",
"label": "BluePyEfe configuration shape",
"comment": "BluePyEfe features extraction configuration shape.",
"targetClass": "nsg:Configuration",
"nodekind": "sh:BlankNodeOrIRI",
"and": [
{
"node": "{{base}}/schemas/neurosciencegraph/commons/entity/v1.0.0/shapes/EntityShape"
},
{
"property": [
{
"path": "nsg:species",
"name": "Species",
"description": "Species",
"node": "{{base}}/schemas/neurosciencegraph/commons/typedlabeledontologyterm/v0.1.4/shapes/SpeciesOntologyTermShape",
"minCount": 1,
"maxCount": 1
},
{
"path": "nsg:brainRegion",
"name": "Brain region",
"description": "Brain region",
"node": "{{base}}/schemas/neurosciencegraph/commons/typedlabeledontologyterm/v0.1.4/shapes/BrainRegionOntologyTermShape",
"minCount": 1,
"maxCount": 1
},
{
"path": "nsg:mType",
"description": "Morphological cell type",
"minCount": 1,
"maxCount": 1,
"node": "{{base}}/schemas/neurosciencegraph/commons/typedlabeledontologyterm/v0.1.4/shapes/MorphologicalCellTypeOntologyTermShape"
},
{
"path": "nsg:eType",
"description": "Electrical cell type",
"node": "{{base}}/schemas/neurosciencegraph/commons/typedlabeledontologyterm/v0.1.4/shapes/ElectricalCellTypeOntologyTermShape",
"minCount": 1,
"maxCount": 1
},
{
"path": "nsg:experimentalCell",
"description": "Optional list of experimental cells for this cell type",
"node": "this:ExperimentalCellShape"
},
{
"path": "nsg:featureExtractionConfiguration",
"description": "Configuration dictionary for features extraction",
"nodeKind": "sh:BlankNode",
"minCount": 1,
"maxCount": 1
},
{
"path": "nsg:stimuliToExperimentMap",
"description": "Stimuli to experiment mapping",
"nodeKind": "sh:BlankNode",
"maxCount": 1
}
]
}
]
},
{
"@id": "this:ExperimentalCellShape",
"@type": "sh:NodeShape",
"label": "Shape specifies cell list ",
"nodekind": "sh:BlankNodeOrIRI",
"property": [
{
"path": "schema:name",
"description": "Name of the cell",
"minCount": 1,
"maxCount": 1
},
{
"path": "schema:description",
"description": "Comments about the cell",
"maxCount": 1
},
{
"path": "nsg:channel",
"name": "Channel",
"description": "Channel number",
"datatype": "xsd:integer",
"minCount": 1,
"maxCount": 1
}
]
}
]
}

0 comments on commit 75806b8

Please sign in to comment.