Skip to content

Instantly share code, notes, and snippets.

@hdmdhr
Last active February 18, 2022 22:41
Show Gist options
  • Save hdmdhr/2c00548f8f97f92cd9671ec87cabbb87 to your computer and use it in GitHub Desktop.
Save hdmdhr/2c00548f8f97f92cd9671ec87cabbb87 to your computer and use it in GitHub Desktop.
A list of available products for our vending machine in JSON format
[
{
"ID": 1,
"Name": "Apple",
"Price": 1.0,
"Type": "Fruit"
},
{
"ID": 2,
"Name": "Banana",
"Price": 2.0,
"Type": "Fruit"
},
{
"ID": 3,
"Name": "Coke",
"Price": 3.0,
"Type": "Drink"
},
{
"ID": 4,
"Name": "Donut",
"Price": 4.0,
"Type": "Other"
},
{
"ID": 5,
"Name": "Eggnog",
"Price": 5.0,
"Type": "Drink"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment