-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdb.json
32 lines (32 loc) · 837 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
{
"books": [
{
"id": 1,
"title": "Flowers for Algeron",
"author": "Author",
"coverImage": "https://books.google.com/books/content?id=64tuPwAACAAJ&printsec=frontcover&img=1&zoom=5&source=gbs_api",
"description": "describe",
"isbn": "1234567891234",
"pageCount": 5,
"age": 5,
"price": 6,
"latestMessage": "Heeeeeeey"
},
{
"id": 2,
"title": "Hello Humpback",
"author": "Author",
"coverImage": "https://cdn.shopify.com/s/files/1/0293/1615/3443/products/9781550177992.jpg?v=1620433160",
"description": "describe",
"isbn": "1234567891234",
"pageCount": 5,
"age": 5,
"price": 6,
"latestMessage": "Heeeeeeey"
}
],
"genres": [
{ "id": 1, "name": "mystery" },
{ "id": 2, "name": "romance" }
]
}