Skip to content

Instantly share code, notes, and snippets.

@imyousuf
Created December 18, 2018 11:20
Show Gist options
  • Save imyousuf/ceace9f43e1e66ebc20be7529af337ef to your computer and use it in GitHub Desktop.
Save imyousuf/ceace9f43e1e66ebc20be7529af337ef to your computer and use it in GitHub Desktop.
JSONPath Samples
$.phoneNumbers[?(@.type=='home')].number
$.firstName
JSON Path Tested -
http://jsonpath.com/?
Java Impl -
https://github.com/json-path/JsonPath
{
"firstName": "John",
"lastName" : "doe",
"age" : 26,
"address" : {
"streetAddress": "naist street",
"city" : "Nara",
"postalCode" : "630-0192"
},
"phoneNumbers": [
{
"type" : "iPhone",
"number": "0123-4567-8888"
},
{
"type" : "home",
"number": "0123-4567-8910"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment