You are viewing the documentation for Blueriq 17. Documentation for other versions is available in our documentation directory.

SofiNumberValidator


This type checks whether a social security number is valid. You can use this validation on attributes that have base type string.

The validator performs the "Elfproef" (11-check), and checks that the number has exactly 9 digits and does not start with '00'.

Syntax

<locale>
  • locale - Specify the country code for which you want to validate the social security number, e.g. NL for the Netherlands.

Examples

Assume you have added the validation type SofiNumberValidator with parameter <NL> to the attribute Client.SocialSecurityNr, then

  • Client.SocialSecurityNr = “123456782” is valid;

  • Client.SocialSecurityNr = “123456789” is invalid.

Back to Top