Skip to content

Instantly share code, notes, and snippets.

@jclay
Created May 9, 2012 04:11
Show Gist options
  • Save jclay/2641733 to your computer and use it in GitHub Desktop.
Save jclay/2641733 to your computer and use it in GitHub Desktop.
JSON Mockup Kabob
{
"restaurant": {
"id": "143",
"name": "Jim N' Nicks",
"location": "1908 11th Avenue South Birmingham",
"menu": [
{
"name": "The Pulled Pork Plate",
"description": "Classic pork shoulder gently covered in our signature rub, slowly smoked, then hand-pulled.",
"includes": "barbeque sauce, big blood, raspberries",
"category": "Sandwiches",
"img_64x64": "http://upload.wikimedia.org/wikipedia/commons/thumb/d/df/Salami_sandwich.jpg/220px-Salami_sandwich.jpg",
"img_large": "http://upload.wikimedia.org/wikipedia/commons/thumb/d/df/Salami_sandwich.jpg/220px-Salami_sandwich.jpg",
"prices": [
{
"0": "$12.29"
}
]
},
{
"name": "Beef Brisket Plate",
"description": "Perfectly marbled and lightly seasoned then cooked real, real slow for maximum flavor",
"includes": "barbeque sauce, onions, peanuts, apeCum",
"category": "Sandwiches",
"img_64x64": "http://upload.wikimedia.org/wikipedia/commons/thumb/d/df/Salami_sandwich.jpg/220px-Salami_sandwich.jpg",
"img_large": "http://upload.wikimedia.org/wikipedia/commons/thumb/d/df/Salami_sandwich.jpg/220px-Salami_sandwich.jpg",
"prices": [
{
"small": "$10.29"
},
{
"medium": "$11.29"
},
{
"large": "$12.30"
}
]
}
]
}
}
@jclay
Copy link
Author

jclay commented May 9, 2012

All JSON is valid using : http://jsonlint.com/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment