JSON Pointers uniquely describe a single item in a JSON document: https://datatracker.ietf.org/doc/html/rfc6901
e.g. for object
{
"some_key": [
{
"k": "v"
},
{"another_key": "value"}
]
}
the JSON Pointer /some_key/1/another_key would return "value". This allows deeper nesting than the current index/name strategy.
JSON Pointers uniquely describe a single item in a JSON document: https://datatracker.ietf.org/doc/html/rfc6901
e.g. for object
{ "some_key": [ { "k": "v" }, {"another_key": "value"} ] }the JSON Pointer
/some_key/1/another_keywould return"value". This allows deeper nesting than the current index/name strategy.