MrzFieldTypeEnum
MrzFieldTypeEnum enumeration constants specify the field types of a machine-readable zone (MRZ).
typedef enum {
MFT_DocumentType,
MFT_DocumentSubtype,
MFT_IssuingCountry,
MFT_LastName,
MFT_GivenName,
MFT_DocumentNumber,
MFT_Nationality,
MFT_BirthDate,
MFT_Sex,
MFT_ExpiryDate,
MFT_PersonalNumber,
MFT_OptionalDataLine1,
MFT_OptionalDataLine2
} MrzFieldTypeEnum;
Elements
Name | Description |
---|---|
MFT_BirthDate | Date of birth in the format: YYMMDD. |
MFT_DocumentNumber | The number of a document. |
MFT_DocumentSubtype | The subtype of a document (if exists). It is the second character of the first line. |
MFT_DocumentType | The type of a document. It is the first character of the first line. |
MFT_ExpiryDate | Date of expiry in the format: YYMMDD. |
MFT_GivenName | One or several given names separated with the space character. |
MFT_IssuingCountry | Code of issuing state (ISO 3166-1 alpha-3 code). |
MFT_LastName | Surname. |
MFT_Nationality | Nationality (ISO 3166-1 alpha-3 code). |
MFT_OptionalDataLine1 | Optional data from the first line of the 2-line or 3-line MRZ. |
MFT_OptionalDataLine2 | Optional data from the second line of the 2-line or 3-line MRZ. |
MFT_PersonalNumber | Personal number. |
MFT_Sex | Sex. It can have one of the following values: Male (M) or Female (F). |
Used in
7/3/2024 8:50:25 AM