Skip to content

Commit

Permalink
Merge pull request #68 from koblas/be_nn
Browse files Browse the repository at this point in the history
fix: updated BE NN comment
  • Loading branch information
koblas authored Jul 4, 2023
2 parents b052899 + af5ec8a commit 0123b1a
Showing 1 changed file with 18 additions and 7 deletions.
25 changes: 18 additions & 7 deletions src/be/nn.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,22 @@
/**
* The Belgian national number is a unique identifier consisting of 11 digits.
*
* Source
* https://fr.wikipedia.org/wiki/Numéro_de_registre_national
*
* PERSON
*/
* NN, NISS, RRN (Belgian national number).
*
* The national registration number (Rijksregisternummer, Numéro de registre
* national, Nationalregisternummer) is a unique identification number of
* natural persons who are registered in Belgium.
*
* The number consists of 11 digits and includes the person's date of birth and
* gender. It encodes the date of birth in the first 6 digits in the format
* YYMMDD. The following 3 digits represent a counter of people born on the same
* date, seperated by sex (odd for male and even for females respectively). The
* final 2 digits form a check number based on the 9 preceding digits.
*
* Source
* https://nl.wikipedia.org/wiki/Rijksregisternummer
* https://fr.wikipedia.org/wiki/Numéro_de_registre_national
*
* PERSON
*/

import * as exceptions from '../exceptions';
import { strings } from '../util';
Expand Down

0 comments on commit 0123b1a

Please sign in to comment.