-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdb.json
More file actions
124 lines (124 loc) · 3.32 KB
/
db.json
File metadata and controls
124 lines (124 loc) · 3.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"Project": [
{
"id": "22c054b7-4078-4d02-9034-e4b186bcb81f",
"name": "Project Alpha",
"active": true
},
{
"id": "3a6f2a73-1220-4f4e-93f9-9a5a0b1a2c11",
"name": "Project Beta",
"active": true
},
{
"id": "7c2e9b5d-8f5a-46f5-9f5e-0f2b9a1c3d77",
"name": "Project Gamma",
"active": true
},
{
"id": "1b3e5a7c-2d4f-4a6b-8c9d-0e1f2a3b4c5d",
"name": "Project Delta",
"active": true
},
{
"id": "5e8a1c2d-3b4f-4a6e-9d0c-1a2b3c4d5e6f",
"name": "Project Epsilon",
"active": true
},
{
"id": "900f5f86-ebdd-4a3a-a7e7-34c6f36cba9f",
"name": "Project Rho",
"active": true
}
],
"Issue": [
{
"id": "fa48263b-a110-4f25-a774-2fcf03f35d78",
"title": "Issue 1 for Project Alpha",
"priority": "2",
"dueDate": "2025-12-31",
"done": false,
"projectId": "22c054b7-4078-4d02-9034-e4b186bcb81f"
},
{
"id": "b1e2c3d4-5f6a-4b7c-8d9e-0a1b2c3d4e5f",
"title": "Issue 2 for Project Alpha",
"priority": "1",
"dueDate": "2026-01-15",
"done": true,
"projectId": "22c054b7-4078-4d02-9034-e4b186bcb81f"
},
{
"id": "c2d3e4f5-6a7b-4c8d-9e0f-1a2b3c4d5e60",
"title": "Issue 1 for Project Beta",
"priority": "3",
"dueDate": "2026-02-20",
"done": false,
"projectId": "3a6f2a73-1220-4f4e-93f9-9a5a0b1a2c11"
},
{
"id": "d3e4f5a6-7b8c-4d9e-8f0a-2b3c4d5e6f70",
"title": "Issue 2 for Project Beta",
"priority": "1",
"dueDate": "2026-03-05",
"done": true,
"projectId": "3a6f2a73-1220-4f4e-93f9-9a5a0b1a2c11"
},
{
"id": "e4f5a6b7-8c9d-4e0f-9a1b-3c4d5e6f7081",
"title": "Issue 1 for Project Gamma",
"priority": "2",
"dueDate": "2026-04-10",
"done": false,
"projectId": "7c2e9b5d-8f5a-46f5-9f5e-0f2b9a1c3d77"
},
{
"id": "f5a6b7c8-9d0e-4f1a-8b2c-4d5e6f708192",
"title": "Issue 2 for Project Gamma",
"priority": "3",
"dueDate": "2026-05-22",
"done": false,
"projectId": "7c2e9b5d-8f5a-46f5-9f5e-0f2b9a1c3d77"
},
{
"id": "0a1b2c3d-4e5f-4a6b-9c8d-5e6f708192a3",
"title": "Issue 1 for Project Delta",
"priority": "1",
"dueDate": "2026-06-30",
"done": true,
"projectId": "1b3e5a7c-2d4f-4a6b-8c9d-0e1f2a3b4c5d"
},
{
"id": "1a2b3c4d-5e6f-4b7c-8d9e-6f708192a3b4",
"title": "Issue 2 for Project Delta",
"priority": "2",
"dueDate": "2026-07-15",
"done": false,
"projectId": "1b3e5a7c-2d4f-4a6b-8c9d-0e1f2a3b4c5d"
},
{
"id": "2b3c4d5e-6f70-4c8d-9e0f-708192a3b4c5",
"title": "Issue 1 for Project Epsilon",
"priority": "2",
"dueDate": "2026-08-20",
"done": false,
"projectId": "5e8a1c2d-3b4f-4a6e-9d0c-1a2b3c4d5e6f"
},
{
"id": "3c4d5e6f-7081-4d9e-8f0a-8192a3b4c5d6",
"title": "Issue 2 for Project Epsilon",
"priority": "1",
"dueDate": "2026-09-05",
"done": true,
"projectId": "5e8a1c2d-3b4f-4a6e-9d0c-1a2b3c4d5e6f"
},
{
"id": "0454fbeb-2fdf-49cd-8d01-a316a6bdf598",
"title": "Issue 1 for Project Rho",
"priority": "1",
"dueDate": "2025-09-04",
"done": false,
"projectId": "900f5f86-ebdd-4a3a-a7e7-34c6f36cba9f"
}
]
}