Recursive descent on nested arrays

Setup

Selector: $..*

[[0], [1]]

Results

Consensus

[
  [
    0
  ],
  [
    1
  ],
  0,
  1
]

Other responses

Bash (JSONPath.sh)

[
  0,
  1
]

C (json-glib)

[]

Elixir (ExJsonPath)

Not supported

syntax error before: '*'

Elixir (jaxon)

[
  [
    0
  ],
  [
    1
  ]
]

Golang (github.com-bhmj-jsonslice) ¹ ³

[
  [
    0
  ],
  0,
  [
    1
  ],
  1
]

Golang (github.com-ohler55-ojg)

[
  0,
  1,
  [
    0
  ],
  [
    1
  ]
]

Java (com.github.jsurfer)

[
  0,
  [
    0
  ],
  1,
  [
    1
  ]
]

PHP (remorhaz-jsonpath)

[
  [
    0
  ],
  0,
  [
    1
  ],
  1
]

Perl (JSON-Path)

[]

Python (jsonpath-ng)

[]

Python (jsonpath-rw)

[]

Raku (JSON-Path)

[
  0,
  1
]

Ruby (jsonpath)

[
  [
    [
      0
    ],
    [
      1
    ]
  ],
  [
    0
  ],
  0,
  [
    1
  ],
  1
]

Rust (jsonpath)

Not supported

parsing error

Scala (jsonpath)

[
  [
    [
      0
    ],
    [
      1
    ]
  ],
  [
    0
  ],
  0,
  [
    1
  ],
  1
]

dotNET (Json.NET)

[
  [
    [
      0
    ],
    [
      1
    ]
  ],
  [
    0
  ],
  0,
  [
    1
  ],
  1
]

dotNET (Manatee.Json)

[
  [
    0
  ],
  0,
  [
    1
  ],
  1
]

JSON (Path_Reference_Implementation)

Not supported

 --> 1:3
  |
1 | $..*
  |   ^---
  |
  = expected childName

Errors

Golang (github.com-oliveagle-jsonpath) ¹

expression don't support in filter

Footnotes