-
Simon Wittl authoredSimon Wittl authored
image.json 534 B
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "THD Projection Image File Schema",
"type": "object",
"version": 0.6,
"date": "19.11.2024",
"properties": {
"header": {
"$ref": "../header/header.json"
},
"image_path": {
"type": "string",
"description": "Path to TIFF file.",
"pattern": "^.*\\.(tif|tiff)$"
}
},
"required": [
"header",
"image_path"
],
"additionalProperties": false
}