Lines Matching full:validate
36 …le JSON object against a provided schema file, returning 1 on success and 0 on failure to validate.
65 … single JSON object against a provided schema, returning 1 on success and 0 on failure to validate.
153 //Validate field with schema. in validate_field()
194 //If the schema contains a "oneOf" array, we need to validate the field against each of the in validate_field()
216 //Validate field with schema. in validate_field()
237 //Switch and validate each type in turn. in validate_field()
266 //Validate minimum. in validate_integer()
274 "Failed to validate integer field '%s'. Value was below minimum of %d.", in validate_integer()
280 //Validate maximum. in validate_integer()
288 "Failed to validate integer field '%s'. Value was above maximum of %d.", in validate_integer()
361 //Run through the "properties" object and validate each of those in turn. in validate_object()
374 //Validate against the schema. in validate_object()
381 //If additional properties are banned, validate that no additional properties exist. in validate_object()
409 //Iterate all items in the array, and validate according to the "items" schema. in validate_array()