-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
50 lines (50 loc) · 1.05 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
{
"posts": [{
"id": 1,
"title": "json-server",
"author": "typicode"
}, {
"id": 2,
"title": "npm run json",
"author": "UnS"
}],
"comments": [{
"id": 1,
"body": "some comment",
"postId": 1
}],
"markers": [{
"id": 1,
"latitude": 10.625517,
"longitude": 19.533691
}, {
"id": 2,
"latitude": 19.069906,
"longitude": 12.533691
}, {
"id": 3,
"latitude": 15.625517,
"longitude": 16.533691
}],
"gridData": [{
"firstName": "Cox",
"lastName": "Carney",
"company": "Enormo",
"employed": true
}, {
"firstName": "Lorraine",
"lastName": "Wise",
"company": "Comveyer",
"employed": false
}, {
"firstName": "Nancy",
"lastName": "Waters",
"company": "Fuelton",
"employed": false
}, {
"firstName": "Rowena",
"lastName": "Pham",
"company": "Darling",
"employed": true
}]
}