-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
47 lines (47 loc) · 895 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": "Changed network card in server 007",
"attention": true,
"tech": "John Doe",
"date": "2021-03-15T01:15:46.795Z"
},
{
"id": 2,
"message": "Fixed hard drive on workstation 002",
"attention": false,
"tech": "John Doe",
"date": "2019-05-31T16:18:04.245Z"
},
{
"id": 5,
"message": "Changed network card on Server 648",
"attention": false,
"tech": "Sara Wilson",
"date": "2021-03-16T01:52:09.640Z"
}
],
"techs": [
{
"id": 1,
"firstName": "John",
"lastName": "Doe"
},
{
"id": 2,
"firstName": "Sam",
"lastName": "Smith"
},
{
"id": 3,
"firstName": "Sara",
"lastName": "Wilson"
},
{
"firstName": "Margaret",
"lastName": "Thatcher",
"id": 6
}
]
}