webtest/kanban_data.json
2025-08-08 08:30:20 +02:00

139 lines
3.8 KiB
JSON

{
"title": "Project Management Board",
"description": "Track project progress with this kanban board",
"columns": [
{
"id": "todo",
"title": "To Do",
"description": "Tasks that need to be started",
"cards": [
{
"id": "card-1",
"title": "Design User Interface",
"description": "Create wireframes and mockups for the new feature",
"priority": "high",
"assignee": "Alice Johnson",
"tags": ["design", "ui/ux"],
"dueDate": "2024-01-15",
"attachments": 2,
"comments": 3,
"checklist": {
"completed": 1,
"total": 4
}
},
{
"id": "card-2",
"title": "Research Market Trends",
"description": "Analyze current market trends and competitor analysis",
"priority": "medium",
"assignee": "Bob Smith",
"tags": ["research", "analysis"],
"dueDate": "2024-01-20",
"attachments": 0,
"comments": 1,
"checklist": {
"completed": 0,
"total": 3
}
}
]
},
{
"id": "in-progress",
"title": "In Progress",
"description": "Tasks currently being worked on",
"cards": [
{
"id": "card-3",
"title": "Implement Authentication",
"description": "Set up user authentication system with JWT tokens and secure password handling",
"priority": "high",
"assignee": "Charlie Brown",
"tags": ["backend", "security"],
"dueDate": "2024-01-12",
"attachments": 1,
"comments": 5,
"checklist": {
"completed": 2,
"total": 5
}
},
{
"id": "card-4",
"title": "Database Migration",
"description": "Migrate existing data to new database schema",
"priority": "medium",
"assignee": "Diana Prince",
"tags": ["database", "migration"],
"dueDate": "2024-01-18",
"attachments": 3,
"comments": 2,
"checklist": {
"completed": 3,
"total": 6
}
}
]
},
{
"id": "review",
"title": "Review",
"description": "Tasks pending review and approval",
"cards": [
{
"id": "card-5",
"title": "API Documentation",
"description": "Complete API documentation with examples and usage guidelines",
"priority": "low",
"assignee": "Eve Wilson",
"tags": ["documentation", "api"],
"dueDate": "2024-01-10",
"attachments": 2,
"comments": 4,
"checklist": {
"completed": 4,
"total": 4
}
}
]
},
{
"id": "done",
"title": "Done",
"description": "Completed tasks",
"cards": [
{
"id": "card-6",
"title": "Setup Development Environment",
"description": "Configure development tools and environment for the team",
"priority": "high",
"assignee": "Frank Miller",
"tags": ["setup", "devops"],
"dueDate": "2024-01-05",
"attachments": 1,
"comments": 2,
"checklist": {
"completed": 3,
"total": 3
}
},
{
"id": "card-7",
"title": "Initial Project Planning",
"description": "Define project scope, timeline, and resource allocation",
"priority": "high",
"assignee": "Grace Lee",
"tags": ["planning", "management"],
"dueDate": "2024-01-03",
"attachments": 4,
"comments": 8,
"checklist": {
"completed": 5,
"total": 5
}
}
]
}
]
}