-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.json
87 lines (86 loc) · 1.86 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
82
83
84
85
86
87
{
"stock": [
{
"productId": 1,
"amount": 30
},
{
"productId": 2,
"amount": 5
},
{
"productId": 3,
"amount": 2
},
{
"productId": 4,
"amount": 1
},
{
"productId": 5,
"amount": 5
}
],
"products":[
{
"productId": 1,
"productName": "SAPATO FLOATER PRETO",
"stars": 1,
"imageUrl": "https://corebiz-test.herokuapp.com/images/product-1.png",
"listPrice": null,
"price": 25990,
"installments": [
{
"quantity": 9,
"value": 2887
}
]
},
{
"productId": 2,
"productName": "SANDÁLIA LINHO BROWN",
"stars": 4,
"imageUrl": "https://corebiz-test.herokuapp.com/images/product-2.png",
"listPrice": 29900,
"price": 19900,
"installments": [
{
"quantity": 4,
"value": 4975
}
]
},
{
"productId": 3,
"productName": "BOTA MUSTANG PRETO",
"stars": 2,
"imageUrl": "https://corebiz-test.herokuapp.com/images/product-3.png",
"listPrice": 32900,
"price": 29900,
"installments": [
{
"quantity": 10,
"value": 2990
}
]
},
{
"productId": 4,
"productName": "CINTO SEMICROMO PRETO 40MM",
"stars": 3,
"imageUrl": "https://corebiz-test.herokuapp.com/images/product-4.png",
"listPrice": null,
"price": 7990,
"installments": []
},
{
"productId": 5,
"productName": "MEIA SPORTWEAR PRETA",
"stars": 5,
"imageUrl": "https://corebiz-test.herokuapp.com/images/product-5.png",
"listPrice": null,
"price": 1400,
"installments": []
}
]
}