-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.json
104 lines (104 loc) · 3.11 KB
/
server.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"foods": [
{
"id": 1,
"name": "Ao molho",
"description": "Macarrão ao molho branco, fughi e cheiro verde das montanhas.",
"price": 19.9,
"category": 1,
"image_url": "https://storage.googleapis.com/golden-wind/bootcamp-gostack/desafio-food/food1.png",
"thumbnail_url": "https://storage.googleapis.com/golden-wind/bootcamp-gostack/desafio-gorestaurant-mobile/ao_molho.png",
"extras": [
{
"id": 1,
"name": "Bacon",
"value": 1.5
},
{
"id": 2,
"name": "Frango",
"value": 2
}
]
},
{
"id": 2,
"name": "Veggie",
"description": "Macarrão com pimentão, ervilha e ervas finas colhidas no himalaia.",
"price": "21.90",
"category": 2,
"image_url": "https://storage.googleapis.com/golden-wind/bootcamp-gostack/desafio-food/food2.png",
"thumbnail_url": "https://storage.googleapis.com/golden-wind/bootcamp-gostack/desafio-gorestaurant-mobile/veggie.png",
"extras": [
{
"id": 3,
"name": "Bacon",
"value": 1.5
}
]
},
{
"id": 3,
"name": "A la Camarón",
"description": "Macarrão com vegetais de primeira linha e camarão dos 7 mares.",
"price": "25.90",
"category": 3,
"image_url": "https://storage.googleapis.com/golden-wind/bootcamp-gostack/desafio-food/food3.png",
"thumbnail_url": "https://storage.googleapis.com/golden-wind/bootcamp-gostack/desafio-gorestaurant-mobile/camarao.png",
"extras": [
{
"id": 4,
"name": "Bacon",
"value": 1.5
}
]
}
],
"categories": [
{
"id": 1,
"title": "Massas",
"image_url": "https://storage.googleapis.com/golden-wind/bootcamp-gostack/desafio-gorestaurant-mobile/massas.png"
},
{
"id": 2,
"title": "Pizzas",
"image_url": "https://storage.googleapis.com/golden-wind/bootcamp-gostack/desafio-gorestaurant-mobile/pizzas.png"
},
{
"id": 3,
"title": "Carnes",
"image_url": "https://storage.googleapis.com/golden-wind/bootcamp-gostack/desafio-gorestaurant-mobile/carnes.png"
}
],
"orders": [
{
"id": 1,
"product_id": 1,
"name": "Ao molho",
"description": "Macarrão ao molho branco, fughi e cheiro verde das montanhas.",
"price": 19.9,
"category": 1,
"thumbnail_url": "https://storage.googleapis.com/golden-wind/bootcamp-gostack/desafio-gorestaurant-mobile/ao_molho.png",
"extras": [
{
"id": 4,
"name": "Bacon",
"value": 1.5,
"quantity": 1
}
]
}
],
"favorites": [
{
"id": 2,
"name": "Veggie",
"description": "Macarrão com pimentão, ervilha e ervas finas colhidas no himalaia.",
"price": "21.90",
"category": 2,
"image_url": "https://storage.googleapis.com/golden-wind/bootcamp-gostack/desafio-food/food2.png",
"thumbnail_url": "https://storage.googleapis.com/golden-wind/bootcamp-gostack/desafio-gorestaurant-mobile/veggie.png"
}
]
}