-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
86 lines (86 loc) · 1.65 KB
/
db.json
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
{
"users": [
{
"username": "sadiq",
"password": "superadmin",
"role": "super_admin"
}
],
"employees": [
{
"firstName": "John",
"lastName": "Doe",
"email": "[email protected]",
"gender": "male",
"status": "Regular",
"id": 1
},
{
"firstName": "Jane",
"lastName": "Doe",
"email": "[email protected]",
"gender": "male",
"status": "Moderate",
"id": 2
},
{
"firstName": "Hulk",
"lastName": "the Incredible",
"email": "[email protected]",
"gender": "male",
"status": "never attended",
"id": 3
},
{
"firstName": "Thor",
"lastName": "son of Odin",
"email": "[email protected]",
"gender": "male",
"status": "never attended",
"id": 4
},
{
"firstName": "Captain",
"lastName": "Marvel",
"email": "[email protected]",
"gender": "female",
"status": "never attended",
"id": 5
},
{
"firstName": "Dr",
"lastName": "Strange",
"email": "[email protected]",
"gender": "male",
"status": "Moderate",
"id": 6
}
],
"meetings": [
{
"id": 1,
"title": "Meeting of all meetings",
"attendance": [
"John Doe",
"Captain Marvel"
]
},
{
"title": "Lets decide the strongest avenger",
"attendance": [
"Captain Marvel",
"Thor son of Odin",
"Hulk the Incredible"
],
"id": 2
},
{
"title": "meeting about salary",
"attendance": [
"Abdulqadr Abdullahi",
"sadiq sambo"
],
"id": 3
}
]
}