Dot notation with wildcard on object
Setup
Selector: $.*
{
"some": "string",
"int": 42,
"object": {
"key": "value"
},
"array": [0, 1]
}
Results
Consensus
[
"string",
42,
[
0,
1
],
{
"key": "value"
}
]
Other responses
Bash (JSONPath.sh)
[
"string",
"value",
0,
1,
42
]
Ruby (jsonpath)
[
{
"array": [
0,
1
],
"int": 42,
"object": {
"key": "value"
},
"some": "string"
}
]
Errors
expression don't support in filter
Footnotes
- ¹ This implementation returns a single value where only one match is possible (instead of an array of a single value).
- ² This implementation returns a specific not found value if no match exists.
- ³ This implementation returns a specific not found value if a query that would regularly return a single match results in no match.