-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
36 lines (36 loc) · 684 Bytes
/
Copy pathdb.json
File metadata and controls
36 lines (36 loc) · 684 Bytes
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
{
"posts": [
{
"id": 1,
"title": "Lorem Ipsum",
"description": "Lorem Ipsum - description",
"views": 254,
"user_id": 123
},
{
"id": 2,
"title": "Sic Dolor amet",
"description": "Sic Dolor amet - description",
"views": 65,
"user_id": 456
}
],
"users": [
{ "id": 123, "name": "John Doe" },
{ "id": 456, "name": "Jane Doe" }
],
"comments": [
{
"id": 987,
"post_id": 1,
"body": "Consectetur adipiscing elit",
"date": "2017-07-03"
},
{
"id": 995,
"post_id": 1,
"body": "Nam molestie pellentesque dui",
"date": "2017-07-05"
}
]
}