for example if i have an object like this and i want to add all of the `bar`s in the `foo` array to `sensitivePaths`: ```json { "foo": [{"bar": 1}, {"bar": 2}] } ``` i tried `"foo.bar"` and `"foo[].bar"` and neither of those worked.
for example if i have an object like this and i want to add all of the
bars in thefooarray tosensitivePaths:{ "foo": [{"bar": 1}, {"bar": 2}] }i tried
"foo.bar"and"foo[].bar"and neither of those worked.