Made a little json schema template

This commit is contained in:
serversdwn
2025-11-21 08:03:46 +00:00
parent 6302ce4036
commit cd8cb658e7

24
import-template.json Normal file
View File

@@ -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": []
}
]
}
]
}