Hi. I have posted a question on [stackoverflow](http://stackoverflow.com/questions/35036463/how-to-validate-string-and-number-using-json-schema) because I am not able to make [my example](http://schemaform.io/examples/bootstrap-example.html#/cc9a172222514d43577d) work (being validated correctly). I have the form: ``` [ { "key":"foo", "title":"Test", "type":"string" } ] ``` The schema: ``` { "type": "object", "properties": { "foo": { "type": ["number","string"], "maxLength":2, "minLength":0, "minimum":3, "maximum":10 } } } ``` and the model: ``` { "foo": "bar" } ``` The problem is that the validation tells me that the model is valid, even though it is not according to the json-schema-validator. when I post my schema and model in the [json-schema-validator](http://json-schema-validator.herokuapp.com/), my example work. Why is that? Am I doing something wrong in the form?