Bracket notation with two literals separated by dot without quotes

Setup

Selector: $[two.some]

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

Results

Consensus

Not supported

Other responses

Bash (JSONPath.sh)

[
  "more"
]

Elixir (jaxon)

[
  "42"
]

Golang (github.com-spyzhov-ajson)

[
  "42"
]

JavaScript (Goessner) ²

[
  "more"
]

JavaScript (jsonpath-plus)

[
  "42"
]

PHP (Goessner) ²

[
  "more"
]

Perl (JSON-Path)

[]

Python (jsonpath) ²

[
  "more"
]

dotNET (JsonPathLib)

[
  "more"
]

Errors

Clojure (json-path) ¹

java.lang.Exception object must be an array.

Golang (github.com-PaesslerAG-jsonpath) ¹

unknown key more

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

path: invalid character at 5

Golang (github.com-oliveagle-jsonpath) ¹

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

Ruby (jsonpath)

invalid value for Integer(): "two.some"

Rust (jsonpath_plus)

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

Footnotes