Files
kanban/sample-board.json
2025-10-22 15:57:46 +08:00

37 lines
1019 B
JSON

{
"categories": [
{ "uuid": "c-urgent", "title": "Urgent", "color": "ff3b30" },
{ "uuid": "c-normal", "title": "Normal", "color": "34c759" }
],
"stages": [
{ "uuid": "s-todo", "title": "Todo", "tasks": ["t-sample-1"] },
{ "uuid": "s-doing", "title": "Doing", "tasks": [] },
{ "uuid": "s-done", "title": "Done", "tasks": ["t-sample-2"] }
],
"tasks": [
{
"uuid": "t-sample-1",
"title": "Example: Set up project",
"description": "Try adding a stage, a task, and drag it.",
"category": "c-normal",
"steps": [
{ "details": "Create repository", "done": true },
{ "details": "Add README", "done": false }
]
},
{
"uuid": "t-sample-2",
"title": "Example: Celebrate",
"description": "Mark a task done to see step stats.",
"category": "c-urgent",
"steps": [
{ "details": "Share with team", "done": true }
]
}
],
"layout": {
"columns": [["s-todo"], ["s-doing"], ["s-done"]]
}
}