Union with keys after bracket notation

Setup

Selector: $[0]['c','d']

[{"c":"cc1","d":"dd1","e":"ee1"},{"c":"cc2","d":"dd2","e":"ee2"}]

Results

Consensus

[
  "cc1",
  "dd1"
]

Other responses

C (json-glib)

[
  "cc1"
]

Elixir (jaxon)

[]

JavaScript (jsonpath-plus)

[]

Java (com.jayway.jsonpath) ¹ ³

{
  "c": "cc1",
  "d": "dd1"
}

Objective-C (SMJJSONPath) ¹ ³

{
  "c": "cc1",
  "d": "dd1"
}

Perl (JSON-Path)

[]

Python (jsonpath2)

Not supported

line 1:5 token recognition error at: '''
ValueError("line 1:5 token recognition error at: '''")

Raku (JSON-Path)

Not supported

JSON path parse error at position 4

Rust (jsonpath)

Not supported

parsing error

dotNET (Manatee.Json)

Not supported

Expected close bracket. Path up to error: '$[0]'

Errors

Clojure (json-path) ¹

java.lang.Exception object must be an array.

Golang (github.com-oliveagle-jsonpath) ¹

strconv.Atoi: parsing "'c'": invalid syntax

Footnotes