-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
47 lines (47 loc) · 833 Bytes
/
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
{
"logs": [
{
"id": 1,
"message": "Debug log in of Admin ",
"attention": true,
"date": "01-08-2021",
"webDev": "John Smith"
},
{
"id": 2,
"message": "Page collapse... ",
"attention": true,
"date": "01-07-2021",
"webDev": "Albert Don"
},
{
"id": 3,
"message": "Create checkout page",
"attention": false,
"date": "01-09-2021",
"webDev": "Bari White"
}
],
"developers": [
{
"id": 1,
"firstName": "John",
"lastName": "Smith"
},
{
"id": 2,
"firstName": "Albert",
"lastName": "Don"
},
{
"id": 3,
"firstName": "Bari",
"lastName": "White"
},
{
"id": 4,
"firstName": "added Developer",
"lastName": "Dev added "
}
]
}