-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdb.json
More file actions
114 lines (114 loc) · 2.37 KB
/
db.json
File metadata and controls
114 lines (114 loc) · 2.37 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
{
"users": [
{
"username": "Srihitha",
"password": "Srihitha@123",
"role": "user",
"id": 1
},
{
"username": "Divya",
"password": "Divya@1234",
"role": "admin",
"id": 2
},
{
"username": "Suchi",
"password": "Suchi@123",
"role": "user",
"id": 3
}
],
"leaves": [
{
"id": 1,
"username": "Srihitha",
"fromDate": "2023-11-15",
"toDate": "2023-11-16",
"numberOfDays": "2",
"leaveType": "Earned Leave",
"status": "Approved"
},
{
"username": "Srihitha",
"fromDate": "2023-11-24",
"toDate": "2023-11-27",
"numberOfDays": "4",
"leaveType": "Earned Leave",
"status": "Approved",
"id": 2
},
{
"username": "Srihitha",
"fromDate": "2023-11-18",
"toDate": "2023-11-18",
"numberOfDays": "1",
"leaveType": "Sick leave",
"status": "Approved",
"id": 3
},
{
"username": "Suchi",
"fromDate": "2023-11-10",
"toDate": "2023-11-13",
"numberOfDays": "4",
"leaveType": "Earned Leave",
"status": "Approved",
"id": 4
},
{
"username": "Divya",
"fromDate": "2023-11-14",
"toDate": "2023-11-14",
"numberOfDays": "1",
"leaveType": "Sick leave",
"status": "Approved",
"id": 5
},
{
"username": "Divya",
"fromDate": "2023-11-22",
"toDate": "2023-11-23",
"numberOfDays": "2",
"leaveType": "Earned Leave",
"status": "Pending",
"id": 6
},
{
"username": "Divya",
"fromDate": "2023-11-21",
"toDate": "2023-11-25",
"numberOfDays": "4",
"leaveType": "Earned Leave",
"status": "Pending",
"id": 7
},
{
"username": "Suchi",
"fromDate": "2023-11-10",
"toDate": "2023-11-16",
"numberOfDays": "7",
"leaveType": "Earned Leave",
"status": "Pending",
"id": 8
},
{
"username": "Srihitha",
"fromDate": "2023-12-30",
"toDate": "2023-12-31",
"numberOfDays": "2",
"leaveType": "Sick leave",
"status": "Pending",
"id": 9
},
{
"username": "Srihitha",
"fromDate": "2024-01-11",
"toDate": "2024-01-12",
"numberOfDays": "2",
"leaveType": "Sick leave",
"status": "Pending",
"id": 10
}
]
}