-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.json
49 lines (49 loc) · 970 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
48
49
{
"logs": [
{
"id": 1,
"message": "Changed network card in server 007",
"attention": false,
"tech": "Sam Smith",
"date": "2021-12-08T18:36:38.003Z"
},
{
"id": 2,
"message": "Fixed hard drive on workstation 002",
"attention": false,
"tech": "John Doe",
"date": "2021-12-08T18:36:42.346Z"
},
{
"id": 3,
"message": "1122 wireless down",
"attention": true,
"tech": "Sara Wilson",
"date": "2021-12-08T18:36:44.602Z"
},
{
"id": 4,
"message": "Workstation 026 is up and running",
"attention": false,
"tech": "Sara Wilson",
"date": "2021-12-08T18:36:47.204Z"
}
],
"techs": [
{
"id": 1,
"firstname": "John",
"lastname": "Doe"
},
{
"id": 2,
"firstname": "Sam",
"lastname": "Smith"
},
{
"id": 3,
"firstname": "Sara",
"lastname": "Wilson"
}
]
}