Array slice with start -2 and open end

Setup

Selector: $[-2:]

["first", "second", "third"]

Results

Consensus

[
  "second",
  "third"
]

Other responses

Bash (JSONPath.sh)

[
  "first",
  "second",
  "third"
]

Clojure (json-path) ¹

"second"

Elixir (jaxon)

[]

Java (com.github.jsurfer)

[
  "first",
  "second",
  "third"
]

Perl (JSON-Path)

[
  "second",
  "third",
  "first",
  "second",
  "third"
]

Rust (jsonpath)

Not supported

parsing error

Footnotes