-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproducts.json
60 lines (60 loc) · 1.35 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
59
60
[
{
"name": "Dodecahedron",
"price": 2,
"description": "Description of dodecahedron 10",
"reviews": [
{
"stars": 5,
"body": "I Love this product",
"author": "svakhine@gmail.com"
},
{
"stars": 1,
"body": "This product sucks",
"author": "svakhine@adobe.com"
}
],
"canPurchase": true,
"soldOut": false,
"images": [
{
"full": "assets/gemd1.png",
"thumb": "assets/gemd1_thumb.png"
},
{
"full": "assets/gemd2.png",
"thumb": "assets/gemd2_thumb.png"
}
]
},
{
"name": "Pentahedron",
"price": 5.95,
"description": "Description of pentahedron 5",
"canPurchase": true,
"soldOut": false,
"reviews": [
{
"stars": 5,
"body": "I Love this gem",
"author": "svakhine@gmail.com"
},
{
"stars": 1,
"body": "This gem sucks",
"author": "svakhine@adobe.com"
}
],
"images": [
{
"full": "assets/p1.png",
"thumb": "assets/p1_thumb.png"
},
{
"full": "assets/p2.png",
"thumb": "assets/p2_thumb.png"
}
]
}
]