-
Notifications
You must be signed in to change notification settings - Fork 137
Expand file tree
/
Copy pathproducts.json
More file actions
executable file
·34 lines (34 loc) · 883 Bytes
/
products.json
File metadata and controls
executable file
·34 lines (34 loc) · 883 Bytes
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
{
"products" : [
{
"name" : "Awesome T-shirt",
"price" : "35.99",
"options" : [
{ "Size" : "Small,Medium,Large" }
],
"image" : "http://upload.wikimedia.org/wikipedia/commons/c/c6/Grey_Tshirt.jpg",
"description" : "This is a very awesome grey T-shirt"
},
{
"name" : "Cool T-shirt",
"price" : "15.99",
"options" : [
{ "Size" : "Small,Medium,Large" },
{ "Color" : "Blue,Red" },
{ "OneOfAKind" : true }
],
"image" : "http://upload.wikimedia.org/wikipedia/commons/2/24/Blue_Tshirt.jpg",
"description" : "This is a really cool blue T-shirt",
"soldOut" : true
},
{
"name" : "Fun T-shirt",
"price" : "15.99",
"options" : [
{ "Size" : "Small,Medium,Large" }
],
"image" : "http://upload.wikimedia.org/wikipedia/commons/c/c6/Grey_Tshirt.jpg",
"description" : "This is another fun grey T-shirt"
}
]
}