-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproducts.json
58 lines (58 loc) · 1.24 KB
/
products.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
{
"Products": [
{
"id": "1",
"name": "Awesome Product 1",
"price": "28.4",
"priceAfterDiscount": "25",
"imageName": "product1",
"isNew": "TRUE",
"ratings": "3.2"
},
{
"id": "2",
"name": "Cool Product 2",
"price": "63.9",
"priceAfterDiscount": "40",
"imageName": "product2",
"isNew": "FALSE",
"ratings": "4.8"
},
{
"id": "3",
"name": "Amazing Product 3",
"price": "26.4",
"priceAfterDiscount": "19",
"imageName": "product3",
"isNew": "FALSE",
"ratings": "2.7"
},
{
"id": "4",
"name": "Huge Product 4",
"price": "58.1",
"priceAfterDiscount": "50",
"imageName": "product4",
"isNew": "TRUE",
"ratings": "4.1"
},
{
"id": "5",
"name": "Tiny Product 5",
"price": "58.3",
"priceAfterDiscount": "48",
"imageName": "product5",
"isNew": "FALSE",
"ratings": "5"
},
{
"id": "6",
"name": "Expensive Product 6",
"price": "82.4",
"priceAfterDiscount": "77",
"imageName": "product6",
"isNew": "TRUE",
"ratings": "4.4"
}
]
}