schema
(object, default: {}
): The JSON schema to validate the data against. It should follow the JSON Schema specification.data
(object, default: {}
): The data object to be validated against the provided schema.result
(boolean): Indicates whether the validation was successful. Returns true
if the data is valid according to the schema, and false
otherwise.errors
(array): If the validation fails, this output provides an array of validation error messages describing the specific issues encountered.schema
input. This schema should define the expected structure and constraints of the data you want to validate.data
input.result
output will indicate whether the validation was successful or not.errors
output will provide an array of error messages detailing the validation issues.schema
input of the Validate node.
data
input of the Validate node.
result
output will be true
if the user data is valid according to the schema, and false
otherwise.
errors
output will provide an array of error messages, such as:
result
is true
, proceed with the registration process. If result
is false
, handle the validation errors (e.g., display error messages to the user).
schema
input is a valid JSON schema object. Incorrect schema syntax can lead to unexpected validation results.data
input is not a valid JSON object, the validation may fail with a parsing error.