From 9b340f2c5a7a1c43eb14ee3fe6a0b4f5c6557e23 Mon Sep 17 00:00:00 2001 From: Ulrike Schlegel <54898984+UlrikeS91@users.noreply.github.com> Date: Tue, 3 Dec 2024 15:00:30 +0100 Subject: [PATCH] Create VectorGraphic.schema.tpl.json --- schemas/dataTypes/VectorGraphic.schema.tpl.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 schemas/dataTypes/VectorGraphic.schema.tpl.json diff --git a/schemas/dataTypes/VectorGraphic.schema.tpl.json b/schemas/dataTypes/VectorGraphic.schema.tpl.json new file mode 100644 index 00000000..4e71548e --- /dev/null +++ b/schemas/dataTypes/VectorGraphic.schema.tpl.json @@ -0,0 +1,12 @@ +{ + "_type": "core:VectorGraphic", + "_extends": "dataTypes/vectorBasedImage.schema.tpl.json", + "properties": { + "dimension": { + "type": "integer", + "maximum": 2, + "minimum": 2, + "_instruction": "Enter the dimensions of this vector-based image as [x, y]." + } + } +}