From cd8cb658e7cddf0a7e25f8564ec998fdb7e973e6 Mon Sep 17 00:00:00 2001 From: serversdwn Date: Fri, 21 Nov 2025 08:03:46 +0000 Subject: [PATCH] Made a little json schema template --- import-template.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 import-template.json diff --git a/import-template.json b/import-template.json new file mode 100644 index 0000000..a2bd50f --- /dev/null +++ b/import-template.json @@ -0,0 +1,24 @@ +{ + "project": { + "name": "New Project", + "description": "Describe the project here." + }, + "tasks": [ + { + "title": "Root Task Example", + "description": "Optional description.", + "status": "backlog", + "estimated_minutes": 60, + "tags": ["example"], + "flag_color": "orange", + "subtasks": [ + { + "title": "Subtask Example", + "status": "backlog", + "estimated_minutes": 30, + "tags": [] + } + ] + } + ] +}