You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to build up a JSON document hash starting from {}. I keep ending up here when I add a nested path. I see the problem -- you can't know whether applying the patch {"op": "add", "path": "/foo/0", "value": "bar"} to {} should yield
{"foo": {"0": "bar"}}
or
{"foo": ["bar"]}
However, for paths with all non-numeric segments there should be no confusion.
Is there a way to add a nested element with Hana that I can't see? Is it reasonable to think of adding support for this?
The text was updated successfully, but these errors were encountered:
I'm trying to build up a JSON document hash starting from
{}
. I keep ending up here when Iadd
a nested path. I see the problem -- you can't know whether applying the patch{"op": "add", "path": "/foo/0", "value": "bar"}
to{}
should yieldor
However, for paths with all non-numeric segments there should be no confusion.
Is there a way to add a nested element with Hana that I can't see? Is it reasonable to think of adding support for this?
The text was updated successfully, but these errors were encountered: