-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
34 lines (34 loc) · 568 Bytes
/
db.json
File metadata and controls
34 lines (34 loc) · 568 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
{
"posts": [
{
"id": 1,
"title": "Harry Potter and the Sorcerer's Stone",
"author": "J. K. Rowling"
},
{
"id": 2,
"title": "The Hobbit",
"author": "J. R. R. Tolkien"
},
{
"id": 3,
"title": "The Fellowship of the Ring",
"author": "J. R. R. Tolkien"
},
{
"title": "Catching Fire",
"author": "Suzanne Collins",
"id": 4
}
],
"comments": [
{
"id": 1,
"body": "some comment",
"postId": 1
}
],
"profile": {
"name": "typicode"
}
}