Filter expression with bracket notation with number on object
Setup
Selector: $[?(@[1]=='b')]
{"1": ["a", "b"], "2": ["x", "y"]}
Results
Other responses
Bash (JSONPath.sh)
[]
C (json-glib)
Not supported
Unable to compile selector `$[?(@[1]=='b')]': Invalid array index definition “?(@[1]=='b')]”
Clojure (json-path)
¹
[
null,
null
]
Cpp (jsoncons)
[
[
"a",
"b"
]
]
Dart (json_path)
[
[
"a",
"b"
]
]
Elixir (ExJsonPath)
[
[
"a",
"b"
]
]
Elixir (jaxon)
[]
Elixir (warpath)
¹
[]
Erlang (ejsonpath)
[
[
"a",
"b"
]
]
[
[
"a",
"b"
]
]
[]
[
[
"a",
"b"
]
]
[
[
"a",
"b"
]
]
[]
Haskell (jsonpath)
[
[
"a",
"b"
]
]
JavaScript (Goessner)
²
Not found
jsonpath returned false, this might indicate an error
JavaScript (brunerd)
[]
JavaScript (jsonpath)
[
[
"a",
"b"
]
]
JavaScript (jsonpath-plus)
[
[
"a",
"b"
]
]
Java (com.github.jsurfer)
[
[
"a",
"b"
]
]
Java (com.jayway.jsonpath)
¹
³
[]
Kotlin (com.nfeld.jsonpathkt)
¹
Not supported
Unexpected char, char=?, index=2
Objective-C (SMJJSONPath)
¹
³
[]
PHP (galbar-jsonpath)
[
[
"a",
"b"
]
]
PHP (remorhaz-jsonpath)
[]
PHP (softcreatr-jsonpath)
[
[
"a",
"b"
]
]
Python (jsonpath)
²
[
[
"a",
"b"
]
]
Python (jsonpath-ng)
Not supported
JsonPathLexerError('Error on line 1, col 2: Unexpected character: ? ')
Python (jsonpath-rw)
Not supported
JsonPathLexerError('Error on line 1, col 2: Unexpected character: ? ')
Python (jsonpath2)
Not supported
line 1:10 token recognition error at: '''
ValueError("line 1:10 token recognition error at: '''")
Raku (JSON-Path)
Not supported
Evaluation of embedded Perl 6 code not allowed (construct with :allow-eval)
Rust (jsonpath)
[]
Rust (jsonpath_lib)
[
"b"
]
Rust (jsonpath_plus)
[
[
"a",
"b"
]
]
Scala (jsonpath)
[]
Swift (Sextant)
[]
dotNET (Json.NET)
[]
dotNET (JsonCons.JsonPath)
[
[
"a",
"b"
]
]
dotNET (JsonPath.Net)
[
[
"a",
"b"
]
]
dotNET (JsonPathLib)
[]
dotNET (Manatee.Json)
[
[
"a",
"b"
]
]
JSON (Path_Reference_Implementation)
Not supported
--> 1:3
|
1 | $[?(@[1]=='b')]
| ^---
|
= expected unionChild, unionArrayIndex, or sliceStart
Proposal (A)
[
[
"a",
"b"
]
]
Errors
key error: not found in object
PHP (Goessner)
²
ArgumentCountError
Perl (JSON-Path)
non-safe evaluation, died at main.pl line 11.
Ruby (jsonpath)
Node does not appear to be an array.
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.