The component uses the to connect and call two example client methods: c:validatePhone to validate a phone number against the BigDataCloud API. c:validateEmail to validate an email against the BigDataCloud API. The returned validation results are stored in a table called “out“, serialized and queued for a downstream component to process as needed. Modify the passed arguments to test it for yourself! For reference here is a sample json response for an email validation from the BigDataCloud API: {
"inputData": "test@gmail.com",
"isValid": true,
"isSyntaxValid": true,
"isMailServerDefined": true,
"isKnownSpammerDomain": false,
"isDisposable": false
}