Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 58 additions & 0 deletions schemas/data/rasterImage.schema.tpl.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
{
"_type": "core:RasterImage",
"required": [
"coordinateFramework",
"dataLocation",
"dimension",
"pixelSize"
],
"properties": {
"additionalRemarks": {
"_instruction": "Enter any additional remarks concerning this digital representation.",
"type": "string"
},
"capturedWith": {
"_instruction": "Add the device used to capture this digital representation.",
"_linkedCategories": [
"deviceUsage"
]
},
"coordinateFramework": {
"_instruction": "Add the coordinate space in which this digital representation exists.",
"_linkedTypes": [
"sands:CommonCoordinateFrameworkVersion",
"sands:CustomCoordinateFramework"

]
},
"dataLocation": {
"_instruction": "Add the location of the file or file bundle in which the digital representation is stored.",
"_linkedTypes": [
"core:File"
]
},
"dimension": {
"_instruction": "Enter the dimension of this image in pixels.",
"items": {
"type": "integer"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"name": {
"_instruction": "Enter a descriptive name of this digital representation preferably matching the filename.",
"type": "string"
},
"pixelSize": {
"_embeddedTypes": [
"core:QuantitativeValue"
],
"_instruction": "Enter the physical pixel size for this image (in x,y order).",
"maxItems": 2,
"minItems": 2,
"type": "array"
}
}
}

69 changes: 69 additions & 0 deletions schemas/data/rasterImageSequence.shema.tpl.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
{
"_type": "core:RasterImageSequence",
"required": [
"coordinateFramework",
"dataLocation",
"dimension",
"pixelSize",
"temporalSamplingFrequency"
],
"properties": {
"additionalRemarks": {
"_instruction": "Enter any additional remarks concerning this digital representation.",
"type": "string"
},
"capturedWith": {
"_instruction": "Add the device used to capture this digital representation.",
"_linkedCategories": [
"deviceUsage"
]
},
"coordinateFramework": {
"_instruction": "Add the coordinate space in which this digital representation exists.",
"_linkedTypes": [
"sands:CommonCoordinateFrameworkVersion",
"sands:CustomCoordinateFramework"
]
},
"dataLocation": {
"_instruction": "Add the location of the file or file bundle in which the digital representation is stored.",
"_linkedTypes": [
"core:File"
]
},
"dimension": {
"_instruction": "Enter the common dimension of the consecutive images (frames) in pixels.",
"items": {
"type": "integer"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"name": {
"_instruction": "Enter a descriptive name of this digital representation preferably matching the filename.",
"type": "string"
},
"numberOfImages": {
"_instruction": "Enter the total number of images in this sequence (at least two).",
"minimum": 2,
"type": "integer"
},
"pixelSize": {
"_embeddedTypes": [
"core:QuantitativeValue"
],
"_instruction": "Enter the common physical pixel size for the consecutive images (frames) (in x,y order).",
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"temporalSamplingFrequency": {
"_embeddedTypes": [
"core:QuantitativeValue"
],
"_instruction": "Enter the rate at which consecutive images (frames) are captured in a sequence, preferably measured in Hertz (Hz)."
}
}
}

69 changes: 69 additions & 0 deletions schemas/data/rasterImageStack.schema.tpl.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
{
"_type": "core:RasterImageStack",
"required": [
"coordinateFramework",
"dataLocation",
"dimension",
"pixelSize",
"z-stepSize"
],
"properties": {
"additionalRemarks": {
"_instruction": "Enter any additional remarks concerning this digital representation.",
"type": "string"
},
"capturedWith": {
"_instruction": "Add the device used to capture this digital representation.",
"_linkedCategories": [
"deviceUsage"
]
},
"coordinateFramework": {
"_instruction": "Add the coordinate space in which this digital representation exists.",
"_linkedTypes": [
"sands:CommonCoordinateFrameworkVersion",
"sands:CustomCoordinateFramework"
]
},
"dataLocation": {
"_instruction": "Add the location of the file or file bundle in which the digital representation is stored.",
"_linkedTypes": [
"core:File"
]
},
"dimension": {
"_instruction": "Enter the common dimension of the consecutive image planes (optical sections) in pixels.",
"items": {
"type": "integer"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"name": {
"_instruction": "Enter a descriptive name of this digital representation preferably matching the filename.",
"type": "string"
},
"numberOfImages": {
"_instruction": "Enter the total number of consecutive image planes (optical sections) in this stack (at least two).",
"minimum": 2,
"type": "integer"
},
"pixelSize": {
"_embeddedTypes": [
"core:QuantitativeValue"
],
"_instruction": "Enter the common physical pixel size for the consecutive image planes (optical sections) (in x,y order).",
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"z-stepSize": {
"_embeddedTypes": [
"core:QuantitativeValue"
],
"_instruction": "Enter the physical axial distance between consecutive image planes (optical sections) within this image stack."
}
}
}

61 changes: 61 additions & 0 deletions schemas/data/rasterVolume.schema.tpl.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
{
"_type": "core:RasterVolume",
"required": [
"coordinateFramework",
"dataLocation",
"dimension",
"voxelSize"
],
"properties": {
"additionalRemarks": {
"_instruction": "Enter any additional remarks concerning this digital representation.",
"type": "string"
},
"capturedWith": {
"_instruction": "Add the device used to capture this digital representation.",
"_linkedCategories": [
"deviceUsage"
]
},
"coordinateFramework": {
"_instruction": "Add the coordinate space in which this digital representation exists.",
"_linkedTypes": [
"sands:CommonCoordinateFrameworkVersion",
"sands:CustomCoordinateFramework"
]
},
"dataLocation": {
"_instruction": "Add the location of the file or file bundle in which the digital representation is stored.",
"_linkedTypes": [
"core:File"
]
},
"dimension": {
"_instruction": "Enter the dimension of this volume.",
"items": {
"type": "integer"
},
"maxItems": 3,
"minItems": 3,
"type": "array"
},
"name": {
"_instruction": "Enter a descriptive name of this digital representation preferably matching the filename.",
"type": "string"
},
"numberOfPlanes": {
"_instruction": "Enter number of planes in this volume.",
"type": "integer"
},
"voxelSize": {
"_embeddedTypes": [
"core:QuantitativeValue"
],
"_instruction": "Enter the physical voxel size for this image (in x,y,z order).",
"maxItems": 3,
"minItems": 3,
"type": "array"
}
}
}

73 changes: 73 additions & 0 deletions schemas/data/rasterVolumeSequence.schema.tpl.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
{
"_type": "core:RasterVolumeSequence",
"required": [
"coordinateFramework",
"dataLocation",
"dimension",
"temporalSamplingFrequency",
"voxelSize"
],
"properties": {
"additionalRemarks": {
"_instruction": "Enter any additional remarks concerning this digital representation.",
"type": "string"
},
"capturedWith": {
"_instruction": "Add the device used to capture this digital representation.",
"_linkedCategories": [
"deviceUsage"
]
},
"coordinateFramework": {
"_instruction": "Add the coordinate space in which this digital representation exists.",
"_linkedTypes": [
"sands:CommonCoordinateFrameworkVersion",
"sands:CustomCoordinateFramework"
]
},
"dataLocation": {
"_instruction": "Add the location of the file or file bundle in which the digital representation is stored.",
"_linkedTypes": [
"core:File"
]
},
"dimension": {
"_instruction": "Enter the dimension of this volume.",
"items": {
"type": "integer"
},
"maxItems": 3,
"minItems": 3,
"type": "array"
},
"name": {
"_instruction": "Enter a descriptive name of this digital representation preferably matching the filename.",
"type": "string"
},
"numberOfPlanes": {
"_instruction": "Enter number of planes in this volume.",
"type": "integer"
},
"numberOfVolumes": {
"_instruction": "Enter the total number of volumes in this volume sequence (at least two).",
"minimum": 2,
"type": "integer"
},
"temporalSamplingFrequency": {
"_embeddedTypes": [
"core:QuantitativeValue"
],
"_instruction": "Enter the rate at which consecutive images (frames) are captured in a sequence, preferably measured in Hertz (Hz)."
},
"voxelSize": {
"_embeddedTypes": [
"core:QuantitativeValue"
],
"_instruction": "Enter the physical voxel size for this image (in x,y,z order).",
"maxItems": 3,
"minItems": 3,
"type": "array"
}
}
}

Loading