-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.json
86 lines (86 loc) · 1.78 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"restaurants": [
{
"id": "1",
"name": "KFC",
"image": "https://i.imgur.com/sZ1Jye3.png"
},
{
"id": "2",
"name": "McDonald's",
"image": "https://i.imgur.com/su4iB3p.png"
},
{
"id": "3",
"name": "Outback",
"image": "https://i.imgur.com/jg3GJVN.png"
},
{
"id": "4",
"name": "Sushi Dev",
"image": "https://i.imgur.com/ffYWFBX.png"
},
{
"id": "5",
"name": "Burguer Grill",
"image": "https://i.imgur.com/kmQvG2T.png"
},
{
"id": "6",
"name": "Marmitas express",
"image": "https://i.imgur.com/uXRuDFD.png"
}
],
"foods": [
{
"id": "1",
"name": "Frango assado",
"price": 39.9,
"time": "50-60 min",
"delivery": 5.99,
"rating": 4.8,
"image": "https://i.imgur.com/CEVUdju.png",
"restaurantId": "1"
},
{
"id": "2",
"name": "Marmita fit",
"price": 29,
"time": "30-40 min",
"delivery": 2.99,
"rating": 4.9,
"image": "https://i.imgur.com/uXRuDFD.png",
"restaurantId": "6"
},
{
"id": "3",
"name": "Burguer Dev",
"price": 40,
"time": "50-60 min",
"delivery": 5.99,
"rating": 4.5,
"image": "https://i.imgur.com/O5c3lyU.png",
"restaurantId": "5"
},
{
"id": "4",
"name": "Picanha Grill",
"price": 36,
"time": "50-60 min",
"delivery": 5.99,
"rating": 4.4,
"image": "https://i.imgur.com/0UjG3wk.png",
"restaurantId": "3"
},
{
"id": "5",
"name": "Açai 300ml",
"price": 20,
"time": "20-30 min",
"delivery": 2.99,
"rating": 4.4,
"image": "https://i.imgur.com/BaUUCkc.png",
"restaurantId": "3"
}
]
}