JSONPath
                                
                                 JSONPath copied to clipboard
                                
                                    JSONPath copied to clipboard
                            
                            
                            
                        Dot Notation With Key Root Literal
Test Data:
{
   "key":"value",
   "another key":{
      "complex":"string",
      "primitives":[
         0,
         1
      ]
   }
}
Selector:
$..[*]
Result:
Unable to parse token $ in expression: .$
Expected result (Proposal A):
[
  "value"
]
https://cburgmer.github.io/json-path-comparison/results/dot_notation_with_key_root_literal.html