Community Forum

Ask a Question
Back to All

Custom messages on component validators

Is it possible to set a custom message for a validator on a component? Something like:
`

{
"key": "some_field",
"type": "text",
"label": "Some Field",
"validators": [
{
"validation": {
"type": "required",
"message": "Please enter this value as it is of utmost importance!!!"
}
}
]
}

`

If yes, is there documentation for this? Joi validation when the whole page is submitted is a bit clunky for large pages.

Thanks