Last active
December 11, 2019 00:48
-
-
Save lesstif/66a855e392b65d2c3f9c487e7082c63a to your computer and use it in GitHub Desktop.
example 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
{ | |
"string": "foo", | |
"number": 5, | |
"array": [ | |
1, | |
2, | |
3 | |
], | |
"object": { | |
"property": "value", | |
"subobj": { | |
"arr": [ | |
"foo", | |
"ha" | |
], | |
"numero": 1 | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment