Home | History | Annotate | Download | only in extensions

Lines Matching refs:prop

335     for (var prop in schema.properties) {
342 if (!$Object.hasOwnProperty(schema.properties, prop))
345 var propPath = path ? path + "." + prop : prop;
346 if (schema.properties[prop] == undefined) {
348 } else if (prop in instance && !isOptionalValue(instance[prop])) {
349 this.validate(instance[prop], schema.properties[prop], propPath);
350 } else if (!schema.properties[prop].optional) {
373 for (var prop in instance) {
374 if (schema.properties && prop in schema.properties)
378 if (!$Object.hasOwnProperty(instance, prop))
381 var propPath = path ? path + "." + prop : prop;
383 this.validate(instance[prop], schema.additionalProperties, propPath);