This is my schema which manage profile in our application :
var ProfileJsonSchema = {
properties: {
Profiles: {
optional: false,
items: {
optional: false,
properties: {
Email: {type: String},
FirstName: {type: String},
Zip: {type: String},
City: {type: String}
}}}};
and my data
[{}]
and the code to test
validation = Validate([{}], ProfileJsonSchema);
if (!validation.valid) {
return;
}
// do something...
Well the validation is ok. Why ? Is there a solution to handle this type of error?