-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproducts.json
49 lines (49 loc) · 1.27 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
{
"products":[
{
"id": 1001,
"title": "Cat Food, 25lb bag",
"description": "A 25 pound bag of <em>irresistible</em>, organic goodness for your cat.",
"price": 2000,
"image": "assets/images/product-fullsize.png",
"availableInventory": 10,
"rating": 1
},
{
"id": 1002,
"title": "Yarn",
"description": "Yarn your cat can play with for a very <strong>long</strong> time!",
"price": 299,
"image": "assets/images/yarn.jpg",
"availableInventory": 7,
"rating": 1
},
{
"id": 1003,
"title": "Kitty Litter",
"description": "Premium kitty litter for your cat.",
"price": 1100,
"image": "assets/images/cat-litter.jpg",
"availableInventory": 99,
"rating": 4
},
{
"id": 1004,
"title": "Cat House",
"description": "A place for your cat to play!",
"price": 799,
"image": "assets/images/cat-house.jpg",
"availableInventory": 11,
"rating": 5
},
{
"id": 1005,
"title": "Laser Pointer",
"description": "Drive your cat crazy with this <em>amazing</em> product.",
"price": 4999,
"image": "assets/images/laser-pointer.jpg",
"availableInventory": 25,
"rating": 1
}
]
}