-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
99 lines (99 loc) · 2.59 KB
/
db.json
File metadata and controls
99 lines (99 loc) · 2.59 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"products": [
{
"id": 1,
"name": "Hoodie",
"description": "Descr1",
"imageUrl": "https://www.pasnormalstudios.com/shared/16/615/pas-normal-studios-logo-hoodie-black_1180w.jpg",
"price": 1500
},
{
"id": 2,
"name": "T-shirt",
"description": "Descr2",
"imageUrl": "https://www.jackjones.com/dw/image/v2/ABBT_PRD/on/demandware.static/-/Sites-pim-catalog/default/dw54431423/pim-static/large/12059219_OPTWHITE_002_ProductLarge.jpg?sw=685",
"price": 500
},
{
"id": 3,
"name": "Pants",
"description": "Descr3",
"imageUrl": "https://ufpro.com/storage/app/media/Product%20Images/Pants/P-40%20Urban/Product%20images/Kangaroo/p40-urban-pants-kangaroo-hero-2019-610.jpg",
"price": 800
},
{
"id": 4,
"name": "Shoes",
"description": "Descr4",
"imageUrl": "https://assets.ajio.com/medias/sys_master/root/h0e/h57/14092954894366/-473Wx593H-460455972-black-MODEL.jpg",
"price": 1100
}
],
"posts": [
{
"id": 1,
"title": "json-server",
"author": "typicode"
}
],
"comments": [
{
"id": 1,
"body": "some comment",
"postId": 1
}
],
"profile": {
"name": "typicode"
},
"wishlist": [
{
"id": 1
},
{
"id": 2
}
],
"cart": [
{
"product": {
"id": 4,
"name": "Shoes",
"description": "Descr4",
"imageUrl": "https://assets.ajio.com/medias/sys_master/root/h0e/h57/14092954894366/-473Wx593H-460455972-black-MODEL.jpg",
"price": 1100
},
"id": 7
},
{
"product": {
"id": 2,
"name": "T-shirt",
"description": "Descr2",
"imageUrl": "https://www.jackjones.com/dw/image/v2/ABBT_PRD/on/demandware.static/-/Sites-pim-catalog/default/dw54431423/pim-static/large/12059219_OPTWHITE_002_ProductLarge.jpg?sw=685",
"price": 500
},
"id": 17
},
{
"product": {
"id": 2,
"name": "T-shirt",
"description": "Descr2",
"imageUrl": "https://www.jackjones.com/dw/image/v2/ABBT_PRD/on/demandware.static/-/Sites-pim-catalog/default/dw54431423/pim-static/large/12059219_OPTWHITE_002_ProductLarge.jpg?sw=685",
"price": 500
},
"id": 18
},
{
"product": {
"id": 3,
"name": "Pants",
"description": "Descr3",
"imageUrl": "https://ufpro.com/storage/app/media/Product%20Images/Pants/P-40%20Urban/Product%20images/Kangaroo/p40-urban-pants-kangaroo-hero-2019-610.jpg",
"price": 800
},
"id": 22
}
]
}