Example:
Let’s say there is a property on the object. We don’t want to show it in the json, but when we parse it or get node data at certain position, we need that property.
There is an option to match it by index or path in the original extended data object.
E.g.
someProp.0.someObject.somePropWhichIsHiddenInJson
So we would check in json editor the path to this property, we check initial data. However, it means parsing json to a tree and matching by index is not quite reliable.
Is there a good way to preserve the data, but not show it in the json editor?