Hello,
my specified form schema matches the properties of a model which is coming from a backend server.
A lot of the properties are not necessarily required and have therefore a 'null value'.
For example:
model = {name: null, id: 32}.
So my schema looks like this:
schema = {type: 'object', properties: {name: {type: 'string'}. id: {type: 'integer'}.
The problem is, that i can not validate the form because of null != string.
I really do not want to parse all of the models and properties beforehand....
I think it is related to #146 but there is no solution?
Thank you very much