-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathdb.json
More file actions
61 lines (61 loc) · 1.42 KB
/
db.json
File metadata and controls
61 lines (61 loc) · 1.42 KB
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
{
"posts": [
{
"_id": 1,
"title": "json-server",
"author": "typicode"
}
],
"contacts": [
{
"_id": 1,
"name": "Dale Cooper",
"occupation": "FBI Agent",
"avatar": "https://upload.wikimedia.org/wikipedia/en/5/50/Agentdalecooper.jpg"
},
{
"_id": 2,
"name": "Spike Spiegel",
"occupation": "Bounty Hunter",
"avatar": "http://vignette4.wikia.nocookie.net/deadliestfiction/images/d/de/Spike_Spiegel_by_aleztron.jpg/revision/latest?cb=20130920231337"
},
{
"_id": 3,
"name": "Wirt",
"occupation": "adventurer",
"avatar": "http://66.media.tumblr.com/5ea59634756e3d7c162da2ef80655a39/tumblr_nvasf1WvQ61ufbniio1_400.jpg"
},
{
"_id": 4,
"name": "Michael Myers",
"occupation": "Loving little brother",
"avatar": "http://vignette2.wikia.nocookie.net/villains/images/e/e3/MMH.jpg/revision/latest?cb=20150810215746"
},
{
"_id": 5,
"name": "Dana Scully",
"occupation": "FBI Agent",
"avatar": "https://pbs.twimg.com/profile_images/718881904834056192/WnMTb__R.jpg"
},
{
"name": "Dale Cooper",
"occupation": "FBI Agent",
"_id": 6
}
],
"comments": [
{
"_id": 1,
"body": "ACA is great!",
"postId": 1
},
{
"_id": 2,
"body": "I love promises!",
"postId": 1
}
],
"profile": {
"name": "typicode"
}
}