-
Notifications
You must be signed in to change notification settings - Fork 1
/
db.json
81 lines (81 loc) · 2 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"authors": [
{
"id": 1,
"name": "Agatha Christie",
"isPseudonym": 0
},
{
"id": 2,
"name": "Sir Arthur Conan Doyle",
"isPseudonym": 0
},
{
"id": 3,
"name": "Edgar Allan Poe",
"isPseudonym": 0
}
],
"books": [
{
"id": 1,
"name": "Murder on the Orient Express",
"originalPublishingDate": "1934-01-01",
"authorID": 1,
"isbn": "9780671523688"
},
{
"id": 2,
"name": "The Mysterious Affair at Styles",
"originalPublishingDate": "1920-10-01",
"authorID": 1,
"isbn": "9780812977202"
},
{
"id": 3,
"name": "The Adventure of the Three Garridebs",
"originalPublishingDate": "1924-10-25",
"authorID": 2,
"isbn": "9788726586343"
},
{
"id": 4,
"name": "The Murders in the Rue Morge",
"originalPublishingDate": "1841-04-04",
"authorID": 3,
"isbn": "9781407021102"
}
],
"categories": [
{ "productId": 1, "name": "Fashion" },
{ "productId": 3, "name": "Fashion" },
{ "productId": 1, "name": "T-shirts" },
{ "productId": 3, "name": "Hats" },
{ "productId": 2, "name": "Pets" }
],
"products": [
{
"id": 1,
"name": "White T-shirt",
"price": 9.99,
"thumbnail": "https://images.pexels.com/photos/6311581/pexels-photo-6311581.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940"
},
{
"id": 2,
"name": "Dog Toy",
"price": 4.99,
"thumbnail": "https://images.pexels.com/photos/5732445/pexels-photo-5732445.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940"
},
{
"id": 3,
"name": "Baseball cap",
"price": 7.95,
"thumbnail": "https://images.pexels.com/photos/1124465/pexels-photo-1124465.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940"
}
],
"rating": [
{ "productId": 1, "count": 3, "average": 3 },
{ "productId": 2, "count": 23, "average": 4.5 },
{ "productId": 3, "count": 12, "average": 3.2 }
]
}