When you setup a field with "required: false" the ORM still verify if (for example) the email patterns is correct and it doesn't save when the field is empty or undefined.
[Error: no-pattern-match]
field: 'email',
value: undefined,
required: false
I dont know to solve it.