Closed Danny02 closed 1 year ago
I noticed that you merge the schemas of maps in lists.
So that for example the document
{ "list": [ {"a": "some value"}, {"b": "other value"}, ] }
creates an inner schema where a and b are optional.
a
b
I noticed with some of my data that this is not done recursivly, for example this document does not work currently
{ "list": [ {"inner": {"a": "some value"}}, {"inner": {"b": "other value"}}, ] }
This PR "fixes" this.
I noticed that you merge the schemas of maps in lists.
So that for example the document
creates an inner schema where
a
andb
are optional.I noticed with some of my data that this is not done recursivly, for example this document does not work currently
This PR "fixes" this.