Bracket notation with two literals separated by dot

Setup

Selector: $['two'.'some']

{
    "one": {"key": "value"},
    "two": {"some": "more", "key": "other value"},
    "two.some": "42",
    "two'.'some": "43"
}

Results

Consensus

Not supported

Other responses

Bash (JSONPath.sh)

[
  "more"
]

C (json-glib)

[
  {
    "key": "other value",
    "some": "more"
  }
]

Elixir (jaxon)

[]

Golang (github.com-spyzhov-ajson)

[]

JavaScript (Goessner) ²

[
  "43"
]

JavaScript (jsonpath-plus)

[
  "43"
]

PHP (Goessner) ²

[
  "43"
]

PHP (galbar-jsonpath)

[
  "43"
]

PHP (softcreatr-jsonpath)

[
  "43"
]

Perl (JSON-Path)

[]

Python (jsonpath) ²

[
  "more"
]

Ruby (jsonpath)

[
  "43"
]

dotNET (JsonPathLib)

[
  "more"
]

Errors

Clojure (json-path) ¹

java.lang.Exception object must be an array.

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

path: invalid character at 7

Golang (github.com-oliveagle-jsonpath) ¹

strconv.Atoi: parsing "'two'.'some'": invalid syntax

Rust (jsonpath_plus)

Error Parsing JSON Path:
$['two'.'some']
panic occurred

Footnotes