Instantly share code, notes, and snippets.
-
Star
0
(0)
You must be signed in to star a gist -
Fork
0
(0)
You must be signed in to fork a gist
-
Save digi0ps/5d2290b1abd4b3da63bb5415c15cba1a to your computer and use it in GitHub Desktop.
Menu JSON
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"cuisines": [ | |
{ | |
"name": "North Indian", | |
"combos": [ | |
{ | |
"name": "Non Veg Meals", | |
"description": "3 Chapati+ Rice+ Chicken curry+2 Non Veg items (Dry+Gravy)+Salad+Sweet", | |
"price": 150, | |
"persons": 2, | |
"diet_type": "non_veg", | |
"items": [ | |
{ | |
"name": "Bread", | |
"options": [ | |
{ | |
"option": "3 Roti", | |
"qty": 1 | |
}, | |
{ | |
"option": "4 Puri", | |
"qty": 1 | |
}, | |
{ | |
"option": "2 Plain Paratha", | |
"qty": 1 | |
}, | |
{ | |
"option": "2 Kerala Paratha", | |
"qty": 1 | |
} | |
] | |
}, | |
{ | |
"name": "Rice", | |
"description": "300-350gm", | |
"options": [ | |
{ | |
"option": "Plain Rice", | |
"qty": 1 | |
}, | |
{ | |
"option": "Jeera Rice", | |
"qty": 1 | |
}, | |
{ | |
"option": "Veg Pulao", | |
"qty": 1 | |
} | |
] | |
}, | |
{ | |
"name": "Non Veg Curry", | |
"description": "300-350gm", | |
"options": [ | |
{ | |
"option": "Butter Chicken Masala", | |
"qty": 1 | |
}, | |
{ | |
"option": "Chicken Chettinad", | |
"qty": 1 | |
}, | |
{ | |
"option": "Fish Curry", | |
"qty": 1 | |
}, | |
{ | |
"option": "Mutton Curry", | |
"qty": 1 | |
}, | |
{ | |
"option": "2 Egg Curry", | |
"qty": 1 | |
} | |
] | |
}, | |
{ | |
"name": "Veg Dry", | |
"description": "100-150gm", | |
"options": [ | |
{ | |
"option": "Cabbage Fry", | |
"qty": 1 | |
}, | |
{ | |
"option": "Aloo Fry", | |
"qty": 1 | |
}, | |
{ | |
"option": "Cauliflower Fry", | |
"qty": 1 | |
}, | |
{ | |
"option": "Bhindi Fry", | |
"qty": 1 | |
}, | |
{ | |
"option": "Onion Fry", | |
"qty": 1 | |
} | |
] | |
}, | |
{ | |
"name": "Sweet", | |
"options": [ | |
{ | |
"option": "Gulab Jamun", | |
"qty": 1 | |
}, | |
{ | |
"option": "Kheer", | |
"qty": 1 | |
} | |
] | |
}, | |
{ | |
"name": "Salad", | |
"options": [ | |
{ | |
"option": "Onion", | |
"qty": 1 | |
}, | |
{ | |
"option": "Carrot", | |
"qty": 1 | |
}, | |
{ | |
"option": "Cucumber", | |
"qty": 1 | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"name": "Veg Meals", | |
"description": "Chapati+ Rice+ daal+1 Veg items (Dry+Gravy)+Salad+Sweet", | |
"price": 120, | |
"persons": 2, | |
"diet_type": "veg", | |
"items": [ | |
{ | |
"name": "Bread", | |
"options": [ | |
{ | |
"option": "3 Roti", | |
"qty": 1 | |
}, | |
{ | |
"option": "4 Puri", | |
"qty": 1 | |
}, | |
{ | |
"option": "2 Plain Paratha", | |
"qty": 1 | |
}, | |
{ | |
"option": "2 Kerala Paratha", | |
"qty": 1 | |
} | |
] | |
}, | |
{ | |
"name": "Rice", | |
"description": "300 - 350gm", | |
"options": [ | |
{ | |
"option": "Plain Rice", | |
"qty": 1 | |
}, | |
{ | |
"option": "Jeera Rice", | |
"qty": 1 | |
}, | |
{ | |
"option": "Veg Pulao", | |
"qty": 1 | |
} | |
] | |
}, | |
{ | |
"name": "Daal", | |
"description": "150-200gm", | |
"options": [ | |
{ | |
"option": "Daal Makhani", | |
"qty": 1 | |
}, | |
{ | |
"option": "Palak Daal", | |
"qty": 1 | |
}, | |
{ | |
"option": "Daal Fry", | |
"qty": 1 | |
}, | |
{ | |
"option": "Kadhi Pakoda", | |
"qty": 1 | |
} | |
] | |
}, | |
{ | |
"name": "Veg Curry", | |
"description": "150-200gm", | |
"options": [ | |
{ | |
"option": "Paneer Butter Masala", | |
"qty": 1 | |
}, | |
{ | |
"option": "Black Channa Masala", | |
"qty": 1 | |
}, | |
{ | |
"option": "Rajma Masala", | |
"qty": 1 | |
}, | |
{ | |
"option": "Chole", | |
"qty": 1 | |
}, | |
{ | |
"option": "Aloo Dum", | |
"qty": 1 | |
} | |
] | |
}, | |
{ | |
"name": "Veg Dry", | |
"description": "100-150gm", | |
"options": [ | |
{ | |
"option": "Cabbage Fry", | |
"qty": 1 | |
}, | |
{ | |
"option": "Aloo Fry", | |
"qty": 1 | |
}, | |
{ | |
"option": "Cauliflower Fry", | |
"qty": 1 | |
}, | |
{ | |
"option": "Bhindi Fry", | |
"qty": 1 | |
}, | |
{ | |
"option": "Onion Fry", | |
"qty": 1 | |
} | |
] | |
}, | |
{ | |
"name": "Sweet", | |
"options": [ | |
{ | |
"option": "Gulab Jamun", | |
"qty": 1 | |
}, | |
{ | |
"option": "Kheer", | |
"qty": 1 | |
} | |
] | |
}, | |
{ | |
"name": "Salad", | |
"options": [ | |
{ | |
"option": "Onion", | |
"qty": 1 | |
}, | |
{ | |
"option": "Carrot", | |
"qty": 1 | |
}, | |
{ | |
"option": "Cucumber", | |
"qty": 1 | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"name": "South Indian", | |
"combos": [ | |
{ | |
"name": "Non Veg Meals", | |
"description": "Chapati+ Rice+ Chicken curry+1 Non Veg items (Dry+Gravy)+Salad+Sweet", | |
"price": 150, | |
"persons": 2, | |
"diet_type": "non_veg", | |
"items": [ | |
{ | |
"name": "Bread", | |
"options": [ | |
{ | |
"option": "3 Roti", | |
"qty": 1 | |
}, | |
{ | |
"option": "4 Puri", | |
"qty": 1 | |
}, | |
{ | |
"option": "2 Plain Paratha", | |
"qty": 1 | |
}, | |
{ | |
"option": "2 Kerala Paratha", | |
"qty": 1 | |
} | |
] | |
}, | |
{ | |
"name": "Rice", | |
"description": "300-350gm", | |
"options": [ | |
{ | |
"option": "Plain Rice", | |
"qty": 1 | |
}, | |
{ | |
"option": "Jeera Rice", | |
"qty": 1 | |
}, | |
{ | |
"option": "Veg Pulao", | |
"qty": 1 | |
} | |
] | |
}, | |
{ | |
"name": "Non Veg Curry", | |
"description": "300-350gm", | |
"options": [ | |
{ | |
"option": "Butter Chicken Masala", | |
"qty": 1 | |
}, | |
{ | |
"option": "Chicken Chettinad", | |
"qty": 1 | |
}, | |
{ | |
"option": "Fish Curry", | |
"qty": 1 | |
}, | |
{ | |
"option": "Mutton Curry", | |
"qty": 1 | |
}, | |
{ | |
"option": "2 Egg Curry", | |
"qty": 1 | |
} | |
] | |
}, | |
{ | |
"name": "Veg Dry", | |
"description": "100-150gm", | |
"options": [ | |
{ | |
"option": "Cabbage Fry", | |
"qty": 1 | |
}, | |
{ | |
"option": "Aloo Fry", | |
"qty": 1 | |
}, | |
{ | |
"option": "Cauliflower Fry", | |
"qty": 1 | |
}, | |
{ | |
"option": "Bhindi Fry", | |
"qty": 1 | |
}, | |
{ | |
"option": "Onion Fry", | |
"qty": 1 | |
} | |
] | |
}, | |
{ | |
"name": "Sweet", | |
"options": [ | |
{ | |
"option": "Gulab Jamun", | |
"qty": 1 | |
}, | |
{ | |
"option": "Kheer", | |
"qty": 1 | |
} | |
] | |
}, | |
{ | |
"name": "Salad", | |
"options": [ | |
{ | |
"option": "Onion", | |
"qty": 1 | |
}, | |
{ | |
"option": "Carrot", | |
"qty": 1 | |
}, | |
{ | |
"option": "Cucumber", | |
"qty": 1 | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"name": "Veg Meals", | |
"description": "Chapati+ Rice+ sambhar+Rasam+1 Veg items (Dry+Gravy)+Salad+Sweet", | |
"price": 120, | |
"persons": 2, | |
"diet_type": "veg", | |
"items": [ | |
{ | |
"name": "Bread", | |
"options": [ | |
{ | |
"option": "3 Roti", | |
"qty": 1 | |
}, | |
{ | |
"option": "4 Puri", | |
"qty": 1 | |
}, | |
{ | |
"option": "2 Plain Paratha", | |
"qty": 1 | |
}, | |
{ | |
"option": "2 Kerala Paratha", | |
"qty": 1 | |
} | |
] | |
}, | |
{ | |
"name": "Rice", | |
"description": "300 - 350gm", | |
"options": [ | |
{ | |
"option": "Plain Rice", | |
"qty": 1 | |
}, | |
{ | |
"option": "Jeera Rice", | |
"qty": 1 | |
}, | |
{ | |
"option": "Veg Pulao", | |
"qty": 1 | |
} | |
] | |
}, | |
{ | |
"name": "Daal", | |
"description": "150-200gm", | |
"options": [ | |
{ | |
"option": "Sambhar + Rasam", | |
"qty": 1 | |
}, | |
{ | |
"option": "Palak Daal", | |
"qty": 1 | |
} | |
] | |
}, | |
{ | |
"name": "Veg Curry", | |
"description": "150-200gm", | |
"options": [ | |
{ | |
"option": "Paneer Butter Masala", | |
"qty": 1 | |
}, | |
{ | |
"option": "Black Channa Masala", | |
"qty": 1 | |
}, | |
{ | |
"option": "Rajma Masala", | |
"qty": 1 | |
}, | |
{ | |
"option": "Chole", | |
"qty": 1 | |
}, | |
{ | |
"option": "Aloo Dum", | |
"qty": 1 | |
} | |
] | |
}, | |
{ | |
"name": "Veg Dry", | |
"description": "100-150gm", | |
"options": [ | |
{ | |
"option": "Cabbage Fry", | |
"qty": 1 | |
}, | |
{ | |
"option": "Aloo Fry", | |
"qty": 1 | |
}, | |
{ | |
"option": "Cauliflower Fry", | |
"qty": 1 | |
}, | |
{ | |
"option": "Bhindi Fry", | |
"qty": 1 | |
}, | |
{ | |
"option": "Onion Fry", | |
"qty": 1 | |
} | |
] | |
}, | |
{ | |
"name": "Sweet", | |
"options": [ | |
{ | |
"option": "Gulab Jamun", | |
"qty": 1 | |
}, | |
{ | |
"option": "Kheer", | |
"qty": 1 | |
} | |
] | |
}, | |
{ | |
"name": "Salad", | |
"options": [ | |
{ | |
"option": "Onion", | |
"qty": 1 | |
}, | |
{ | |
"option": "Carrot", | |
"qty": 1 | |
}, | |
{ | |
"option": "Cucumber", | |
"qty": 1 | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"name": "Biriyani", | |
"combos": [ | |
{ | |
"name": "Chicken Biriyani", | |
"description": "750 gm Biryani (2 piece + 1 Egg) + Raita(onion Curd raita/Brinjal masala/ curry masala) + 1sweet+salad", | |
"price": 150, | |
"persons": 2, | |
"diet_type": "non_veg", | |
"items": [ | |
{ | |
"name": "Biriyani", | |
"type": "single", | |
"options": [ | |
{ | |
"option": "3 piece Chicken + 1 egg", | |
"qty": 1 | |
}, | |
{ | |
"option": "2 piece Fish + 1 egg", | |
"qty": 1 | |
}, | |
{ | |
"option": "2 piece Mutton + 1 egg", | |
"qty": 1 | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"name": "Veg Biryani", | |
"description": "750 gm Biryani + Raita (onion Curd raita/Brinjal masala/ curry masala)+1sweet+salad", | |
"price": 120, | |
"persons": 2, | |
"diet_type": "veg", | |
"items": [ | |
{ | |
"name": "Biriyani", | |
"type": "single", | |
"options": [ | |
{ | |
"option": "Paneer", | |
"qty": 1 | |
}, | |
{ | |
"option": "Mix Veg", | |
"qty": 1 | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"name": "Egg Biriyani", | |
"description": "750 gm Biryani (2 piece Egg) + Raita(onion Curd raita/Brinjal masala/ curry masala) + 1 sweet+salad", | |
"price": 120, | |
"persons": 2, | |
"diet_type": "egg", | |
"items": [ | |
{ | |
"name": "Biriyani", | |
"type": "single", | |
"options": [ | |
{ | |
"option": "2 Eggs Biriyani", | |
"qty": 1 | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment