Skip to content

Instantly share code, notes, and snippets.

@juanarzola
Created October 15, 2011 18:23
Show Gist options
  • Save juanarzola/1289925 to your computer and use it in GitHub Desktop.
Save juanarzola/1289925 to your computer and use it in GitHub Desktop.
Common JSON data
{
"firstName": "John",
"middleName": "M",
"lastName": "Appleseed",
"age": 30,
"addresses":[
{
"streetAddress": "222 North Mountain Rd.",
"city": "Redwood City",
"state": "CA",
"zipCode": "22223"
}
],
"emails":[
{"label":"work", "address":"john.appleseed@gmail.com"},
{"label":"home","address":"john.appleseed@gmail.com"},
{"label":"other","address":"john.appleseed@gmail.com"}
],
"contacts":[
{"label":"work", "type":"twitter", "address":"@johnappleseed"},
{"label":"home", "type":"facebook", "address":"http://facebook.com/john.appleseed"},
{"label":"other", "type":"jabber", "address":"john.appleseed@gmail.com"}
],
"sites":[
{"label":"work", "type":"homepage", "address":"http://www.foo.com"}
],
"phoneNumbers":
[
{
"type": "home",
"number": "222-333-1234"
},
{
"type": "fax",
"number": "222-333-1234"
},
{
"type": "work",
"number": "222-333-1234"
}
]
}
{
"name":"A great item to buy",
"id":"12345-12345-12345-12345",
"thumbnailFilename":"superitem",
"description":"Buy this now, supplies are limited.",
"price":23.00
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment