Is there a way to get all nested field names of Python dictionary?
For example:
Dictionary:
{
   "a": [
      {
         "b": {
            "c": [
               "f",
               "g"
            ]
         }
      }
   ]
}
Result:
'a[0].b.c[0]'
'a[0].b.c[1]'
 
     
    