From 3157fcd9f36eab414232d2fc88982c80b4602582 Mon Sep 17 00:00:00 2001 From: Ulrike Schlegel <54898984+UlrikeS91@users.noreply.github.com> Date: Tue, 3 Dec 2024 14:38:25 +0100 Subject: [PATCH] Create vectorBasedImage.schema.tpl.json --- .../dataType/vectorBasedImage.schema.tpl.json | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 schemas/dataType/vectorBasedImage.schema.tpl.json diff --git a/schemas/dataType/vectorBasedImage.schema.tpl.json b/schemas/dataType/vectorBasedImage.schema.tpl.json new file mode 100644 index 00000000..fbd11e99 --- /dev/null +++ b/schemas/dataType/vectorBasedImage.schema.tpl.json @@ -0,0 +1,26 @@ +{ + "required": [ + "dataLocation", + "dimension" + ], + "properties": { + "dataLocation": { + "_instruction": "Add the location of the file in which this vector-based image is stored.", + "_linkedTypes": [ + "core:File" + ] + }, + "dimension": { + "type": "integer", + "maximum": 3, + "minimum": 2, + "_instruction": "Enter the dimensions of this vector-based image for two-dimensional spaces as [x, y] or for three-dimensional space as [x, y, z]." + }, + "software": { + "_instruction": "Add the software version that was used to create this vector-based image.", + "_embeddedTypes": [ + "core:SoftwareVersion" + ] + } + } +}