Skip to content

Instantly share code, notes, and snippets.

@heymichaelp
Last active August 29, 2015 14:03
Show Gist options
  • Save heymichaelp/2b22f25bc453afe790c4 to your computer and use it in GitHub Desktop.
Save heymichaelp/2b22f25bc453afe790c4 to your computer and use it in GitHub Desktop.
Query Objects: JSON Response Example
{
"room": "A1",
"grade": 6,
"teacher": {
"firstName": "Jane",
"lastName": "Smith",
"gender": "f"
},
"students": [
{
"person": {
"firstName": "Billy",
"lastName": "Smith",
"gender": "m"
},
"grade": "b"
},
{
"person": {
"firstName": "Billy",
"lastName": "Smith",
"gender": "m"
},
"grade": "c"
},
...
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment