Last active
December 11, 2019 00:58
-
-
Save lesstif/4d13f827d7b47eff1c5c733d9e08f78b to your computer and use it in GitHub Desktop.
sample json data for jsonpath study
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"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