-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.json
60 lines (60 loc) · 1.99 KB
/
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
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
{
"supermarkets": [
{
"id": 1,
"name": "Supermercato1",
"street": "Via Roma 1",
"city": "Milano",
"pickup_available": true,
"working_hours": "8:00 - 20:00",
"products": [
{
"id": 1,
"full_name": "Pasta Spaghetti Barilla 500g",
"img_url": "http://esempio.com/img/pasta.jpg",
"description": "Pasta di semola di grano duro.",
"quantity": 1,
"price": 1.5,
"discounted_price": null
},
{
"id": 2,
"full_name": "Latte Intero 1L",
"img_url": "http://esempio.com/img/latte.jpg",
"description": "Latte intero fresco.",
"quantity": 1,
"price": 1.2,
"discounted_price": 1.0
}
]
},
{
"id": 2,
"name": "Supermercato2",
"street": "Corso Venezia 10",
"city": "Milano",
"pickup_available": false,
"working_hours": "9:00 - 21:00",
"products": [
{
"id": 1,
"full_name": "Tonno in scatola 3x80g",
"img_url": "http://esempio.com/img/tonno.jpg",
"description": "Tonno al naturale.",
"quantity": 1,
"price": 2.0,
"discounted_price": 1.8
},
{
"id": 2,
"full_name": "Pane Integrale 500g",
"img_url": "http://esempio.com/img/pane.jpg",
"description": "Pane integrale fresco.",
"quantity": 1,
"price": 1.0,
"discounted_price": null
}
]
}
]
}