Skip to content

Instantly share code, notes, and snippets.

@lesstif
Last active December 11, 2019 00:58
Show Gist options
  • Save lesstif/4d13f827d7b47eff1c5c733d9e08f78b to your computer and use it in GitHub Desktop.
Save lesstif/4d13f827d7b47eff1c5c733d9e08f78b to your computer and use it in GitHub Desktop.
sample json data for jsonpath study
[
{
"firstName": "John",
"lastName": "doe",
"age": 26,
"address": {
"streetAddress": "naist street",
"city": "Nara",
"postalCode": "630-0192"
},
"phoneNumbers": [
{
"type": "mobile",
"number": "0123-4567-8888"
},
{
"type": "home",
"number": "0123-4567-8910"
}
]
},
{
"firstName": "Foo",
"lastName": "Bar",
"age": 53,
"address": {
"streetAddress": "6, Dohwa-gil",
"city": "Seoul",
"postalCode": "123-456"
},
"phoneNumbers": [
{
"type": "mobile",
"number": "010-1234-5678"
},
{
"type": "home",
"number": "031-1234-5678"
}
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment