I use the following schema to validate data:
class UserSchema(db_schema.Schema):
email = data_fields.Email(required = True,
error_messages={
'required': 'Email is mandatory field.',
'type': 'The manager email is not valid.'
})
But the ValidationError.messages.items has the following message:
"Not a valid email address."
How to make it show my custom message? Is there anywhere a comprehensive list of possible values for error_messages dictionary because I suspect I will need to override other messages too.
I found the error_messages dictionary is wrong, the key should be "invalid":