Created
April 4, 2025 16:36
-
-
Save colintsteele/3b02a4a80a4ec73bc3ae668b10c722cb to your computer and use it in GitHub Desktop.
Popmenu coding exercise 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
{ | |
"restaurants": [ | |
{ | |
"name": "Poppo's Cafe", | |
"menus": [ | |
{ | |
"name": "lunch", | |
"menu_items": [ | |
{ | |
"name": "Burger", | |
"price": 9.00 | |
}, | |
{ | |
"name": "Small Salad", | |
"price": 5.00 | |
} | |
] | |
}, | |
{ | |
"name": "dinner", | |
"menu_items": [ | |
{ | |
"name": "Burger", | |
"price": 15.00 | |
}, | |
{ | |
"name": "Large Salad", | |
"price": 8.00 | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"name": "Casa del Poppo", | |
"menus": [ | |
{ | |
"name": "lunch", | |
"dishes": [ | |
{ | |
"name": "Chicken Wings", | |
"price": 9.00 | |
}, | |
{ | |
"name": "Burger", | |
"price": 9.00 | |
}, | |
{ | |
"name": "Chicken Wings", | |
"price": 9.00 | |
} | |
] | |
}, | |
{ | |
"name": "dinner", | |
"dishes": [ | |
{ | |
"name": "Mega \"Burger\"", | |
"price": 22.00 | |
}, | |
{ | |
"name": "Lobster Mac & Cheese", | |
"price": 31.00 | |
} | |
] | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment