-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.json
45 lines (45 loc) · 1.13 KB
/
menu.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
{
"menu": [
{
"item_id": "cb678161-f4be-4f50-8be7-23aea9e72ae1",
"item_name": "Chicken Biryani",
"item_price": 285,
"item_image": "https://picsum.photos/300/300",
"tags": ["new", "top-selling", "main-course"]
},
{
"item_id": "d84a591f-b91f-4d7b-a26e-54374533f516",
"item_name": "Mutton Biryani",
"item_price": 285,
"item_image": "https://picsum.photos/300/300",
"tags": ["main-course"]
},
{
"item_id": "acc17524-fe1c-4ea0-900e-6f1c6a4ea3db",
"item_name": "Chicken 65",
"item_price": 205,
"item_image": "https://picsum.photos/300/300",
"tags": ["new", "top-selling"]
}
],
"cart": [
{
"item_id": "cb678161-f4be-4f50-8be7-23aea9e72ae1",
"quantity": 2
},
{
"item_id": "d84a591f-b91f-4d7b-a26e-54374533f516",
"quantity": 1
},
{
"item_id": "acc17524-fe1c-4ea0-900e-6f1c6a4ea3db",
"quantity": 2
}
],
"order": {
"billing_name": "",
"phone_number": "",
"delivery_coordinates": "",
"order_data": " { ...cart }"
}
}