Considering two scenarios below (consider the below variables as nested fields in JSON stored inside the address field):
- variable name: city, updated path:
$.address.city, it works fine
- variable name: my_city, updated path:
$.address.my.city, it failed as updated path should be: $.address.my_city (underscore was replaced by a dot)