sample_data.jsonโข3.28 kB
{
"tasks": [
{
"id": 1,
"title": "Implement user authentication",
"description": "Add JWT-based authentication to the API",
"status": "pending",
"priority": "high",
"assigned_to": "developer1",
"created_at": "2024-01-15T10:00:00Z",
"due_date": "2024-01-20T17:00:00Z"
},
{
"id": 2,
"title": "Design database schema",
"description": "Create ERD and implement database tables",
"status": "in_progress",
"priority": "medium",
"assigned_to": "developer2",
"created_at": "2024-01-14T09:30:00Z",
"due_date": "2024-01-18T17:00:00Z"
},
{
"id": 3,
"title": "Write API documentation",
"description": "Create comprehensive API docs with examples",
"status": "completed",
"priority": "low",
"assigned_to": "developer3",
"created_at": "2024-01-10T14:20:00Z",
"due_date": "2024-01-15T17:00:00Z"
},
{
"id": 4,
"title": "Setup CI/CD pipeline",
"description": "Configure GitHub Actions for automated testing and deployment",
"status": "pending",
"priority": "high",
"assigned_to": "devops1",
"created_at": "2024-01-16T11:15:00Z",
"due_date": "2024-01-22T17:00:00Z"
},
{
"id": 5,
"title": "Performance optimization",
"description": "Optimize database queries and API response times",
"status": "pending",
"priority": "medium",
"assigned_to": "developer1",
"created_at": "2024-01-17T08:45:00Z",
"due_date": "2024-01-25T17:00:00Z"
},
{
"id": 6,
"title": "Test Task",
"description": "Testing the MCP server",
"status": "pending",
"priority": "high",
"assigned_to": null,
"created_at": "2025-10-04T11:47:27.981503",
"due_date": null
}
],
"users": [
{
"id": "developer1",
"name": "Alice Johnson",
"email": "alice@company.com",
"role": "Senior Developer",
"department": "Engineering"
},
{
"id": "developer2",
"name": "Bob Smith",
"email": "bob@company.com",
"role": "Developer",
"department": "Engineering"
},
{
"id": "developer3",
"name": "Carol Davis",
"email": "carol@company.com",
"role": "Technical Writer",
"department": "Documentation"
},
{
"id": "devops1",
"name": "David Wilson",
"email": "david@company.com",
"role": "DevOps Engineer",
"department": "Infrastructure"
}
],
"projects": [
{
"id": "proj1",
"name": "Fast MCP Server",
"description": "Building a Model Context Protocol server with Gemini integration",
"status": "active",
"start_date": "2024-01-10T00:00:00Z",
"end_date": "2024-02-15T00:00:00Z",
"team_members": [
"developer1",
"developer2",
"devops1"
]
},
{
"id": "proj2",
"name": "API Documentation Portal",
"description": "Creating a comprehensive documentation portal for all APIs",
"status": "planning",
"start_date": "2024-01-20T00:00:00Z",
"end_date": "2024-03-01T00:00:00Z",
"team_members": [
"developer3",
"developer1"
]
}
]
}