Connection Validation
{
"file type": "connection validation",
"username": "flyem",
"software": "NeuTu",
"file version": 1,
"points": [
[
1117,
982,
1024
],
[
1117,
974,
1023
]
]
}{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"date": {
"type": "string"
},
"file type": {
"type": "string",
"const": "connection validation"
},
"username": {
"type": "string"
},
"software": {
"type": "string"
},
"coordinate system": {
"type": "string"
},
"file version": {
"description": "Version of protocol file. Only 1 is supported for now",
"type": "integer",
"const": 1
},
"points": {
"descriptions": "Positions of the synapses to validate",
"type": "array",
"items": {
"type": "array",
"items": [
{
"type": "integer"
},
{
"type": "integer"
},
{
"type": "integer"
}
]
}
}
},
"required": [
"file type",
"file version",
"points"
]
}
Last updated