-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
28 lines (28 loc) · 894 Bytes
/
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
{
"data": [
{
"id": "GR1",
"name": "Green Tea",
"image": "https://github.com/klaryon/three_item_store/blob/develop/src/assets/images/greentea.jpg?raw=true",
"price": 3.11,
"unitdiscount": 3.11,
"description": "Buy one get one free!"
},
{
"id": "SR1",
"name": "Strawberries",
"image": "https://github.com/klaryon/three_item_store/blob/develop/src/assets/images/strawberries.jpg?raw=true",
"price": 5.0,
"unitdiscount": 0.5,
"description": "Buy 3 at original price, then get £0.50 discount per unit"
},
{
"id": "CF1",
"name": "Coffee",
"image": "https://github.com/klaryon/three_item_store/blob/develop/src/assets/images/coffee.jpg?raw=true",
"price": 11.23,
"unitdiscount": 3.74,
"description": "Buy 3, and all your items get £3.74 discount per unit"
}
]
}