@regulaforensics/document-reader 8.2.186-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +18 -0
- package/RNDocumentReader.podspec +21 -0
- package/android/CVDDocumentReader.kt +74 -0
- package/android/build.gradle +36 -0
- package/android/cordova.gradle +12 -0
- package/android/src/main/java/com/regula/plugin/documentreader/BluetoothUtil.kt +160 -0
- package/android/src/main/java/com/regula/plugin/documentreader/Config.kt +826 -0
- package/android/src/main/java/com/regula/plugin/documentreader/JSONConstructor.kt +1795 -0
- package/android/src/main/java/com/regula/plugin/documentreader/Main.kt +573 -0
- package/android/src/main/java/com/regula/plugin/documentreader/RNDocumentReaderModule.kt +100 -0
- package/android/src/main/java/com/regula/plugin/documentreader/Utils.kt +181 -0
- package/examples/capacitor/README.md +12 -0
- package/examples/capacitor/android/app/build.gradle +50 -0
- package/examples/capacitor/android/app/capacitor.build.gradle +22 -0
- package/examples/capacitor/android/app/proguard-rules.pro +21 -0
- package/examples/capacitor/android/app/src/main/AndroidManifest.xml +27 -0
- package/examples/capacitor/android/app/src/main/assets/Regula/.gitkeep +0 -0
- package/examples/capacitor/android/app/src/main/java/com/regula/dr/fullauthrfid/MainActivity.java +5 -0
- package/examples/capacitor/android/app/src/main/res/drawable/ic_launcher.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/layout/activity_main.xml +12 -0
- package/examples/capacitor/android/app/src/main/res/values/strings.xml +7 -0
- package/examples/capacitor/android/app/src/main/res/values/styles.xml +22 -0
- package/examples/capacitor/android/build.gradle +30 -0
- package/examples/capacitor/android/capacitor.settings.gradle +15 -0
- package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.properties +7 -0
- package/examples/capacitor/android/gradle.properties +22 -0
- package/examples/capacitor/android/gradlew +252 -0
- package/examples/capacitor/android/gradlew.bat +94 -0
- package/examples/capacitor/android/settings.gradle +5 -0
- package/examples/capacitor/android/variables.gradle +16 -0
- package/examples/capacitor/index.html +10 -0
- package/examples/capacitor/ionic.config.json +7 -0
- package/examples/capacitor/ios/App/App/App.entitlements +5 -0
- package/examples/capacitor/ios/App/App/AppDelegate.swift +49 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png +0 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json +14 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Contents.json +6 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/Contents.json +23 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png +0 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png +0 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png +0 -0
- package/examples/capacitor/ios/App/App/Base.lproj/LaunchScreen.storyboard +32 -0
- package/examples/capacitor/ios/App/App/Base.lproj/Main.storyboard +19 -0
- package/examples/capacitor/ios/App/App/Info.plist +53 -0
- package/examples/capacitor/ios/App/App.xcodeproj/project.pbxproj +414 -0
- package/examples/capacitor/ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/examples/capacitor/ios/App/App.xcworkspace/contents.xcworkspacedata +10 -0
- package/examples/capacitor/ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/examples/capacitor/ios/App/Podfile +26 -0
- package/examples/capacitor/ios/App/Podfile.lock +56 -0
- package/examples/capacitor/package-lock.json +3467 -0
- package/examples/capacitor/package.json +29 -0
- package/examples/capacitor/public/assets/.gitkeep +0 -0
- package/examples/capacitor/public/images/document.png +0 -0
- package/examples/capacitor/public/images/portrait.png +0 -0
- package/examples/capacitor/scripts/android.sh +9 -0
- package/examples/capacitor/scripts/ios.sh +8 -0
- package/examples/capacitor/scripts/setup.sh +6 -0
- package/examples/capacitor/src/extra/bt_device.tsx +32 -0
- package/examples/capacitor/src/extra/custom_rfid.tsx +74 -0
- package/examples/capacitor/src/main.css +131 -0
- package/examples/capacitor/src/main.html +41 -0
- package/examples/capacitor/src/main.tsx +175 -0
- package/examples/capacitor/tsconfig.json +5 -0
- package/examples/capacitor/vite.config.ts +17 -0
- package/examples/cordova/.vscode/launch.json +28 -0
- package/examples/cordova/.vscode/typings/cordova/cordova.d.ts +80 -0
- package/examples/cordova/README.md +12 -0
- package/examples/cordova/config.xml +29 -0
- package/examples/cordova/package-lock.json +1314 -0
- package/examples/cordova/package.json +32 -0
- package/examples/cordova/scripts/android.sh +8 -0
- package/examples/cordova/scripts/ios.sh +8 -0
- package/examples/cordova/scripts/setup.sh +8 -0
- package/examples/cordova/www/images/document.png +0 -0
- package/examples/cordova/www/images/logo.png +0 -0
- package/examples/cordova/www/images/portrait.png +0 -0
- package/examples/cordova/www/index.html +21 -0
- package/examples/cordova/www/src/main.css +130 -0
- package/examples/cordova/www/src/main.html +63 -0
- package/examples/cordova/www/src/main.js +50 -0
- package/examples/ionic/README.md +12 -0
- package/examples/ionic/angular.json +39 -0
- package/examples/ionic/config.xml +28 -0
- package/examples/ionic/index.html +19 -0
- package/examples/ionic/index.ts +17 -0
- package/examples/ionic/ionic.config.json +7 -0
- package/examples/ionic/package-lock.json +16559 -0
- package/examples/ionic/package.json +47 -0
- package/examples/ionic/scripts/android.sh +8 -0
- package/examples/ionic/scripts/ios.sh +8 -0
- package/examples/ionic/scripts/setup.sh +8 -0
- package/examples/ionic/src/assets/.gitkeep +0 -0
- package/examples/ionic/src/images/document.png +0 -0
- package/examples/ionic/src/images/icon.png +0 -0
- package/examples/ionic/src/images/portrait.png +0 -0
- package/examples/ionic/src/main.css +130 -0
- package/examples/ionic/src/main.html +63 -0
- package/examples/ionic/src/main.ts +66 -0
- package/examples/ionic/tsconfig.json +12 -0
- package/examples/react_native/README.md +12 -0
- package/examples/react_native/app.config.ts +53 -0
- package/examples/react_native/assets/.gitkeep +0 -0
- package/examples/react_native/images/document.png +0 -0
- package/examples/react_native/images/icon/adaptive-icon.png +0 -0
- package/examples/react_native/images/icon/icon.png +0 -0
- package/examples/react_native/images/portrait.png +0 -0
- package/examples/react_native/index.html +11 -0
- package/examples/react_native/index.tsx +52 -0
- package/examples/react_native/metro.config.js +7 -0
- package/examples/react_native/package-lock.json +9254 -0
- package/examples/react_native/package.json +27 -0
- package/examples/react_native/scripts/android.sh +12 -0
- package/examples/react_native/scripts/ios.sh +11 -0
- package/examples/react_native/scripts/setup.sh +8 -0
- package/examples/react_native/src/main.css +130 -0
- package/examples/react_native/src/main.html +63 -0
- package/examples/react_native/src/main.tsx +50 -0
- package/ios/CVDDocumentReader.h +7 -0
- package/ios/CVDDocumentReader.m +39 -0
- package/ios/RGLWConfig.h +42 -0
- package/ios/RGLWConfig.m +1398 -0
- package/ios/RGLWJSONConstructor.h +185 -0
- package/ios/RGLWJSONConstructor.m +2379 -0
- package/ios/RGLWMain.h +36 -0
- package/ios/RGLWMain.m +610 -0
- package/ios/RNDocumentReader.h +8 -0
- package/ios/RNDocumentReader.m +49 -0
- package/package.json +36 -0
- package/plugin.xml +51 -0
- package/www/capacitor/config/InitConfig.js +25 -0
- package/www/capacitor/config/OnlineProcessingConfig.js +41 -0
- package/www/capacitor/config/RFIDConfig.js +31 -0
- package/www/capacitor/config/RecognizeConfig.js +103 -0
- package/www/capacitor/config/ScannerConfig.js +38 -0
- package/www/capacitor/index.js +486 -0
- package/www/capacitor/info/DocReaderException.js +57 -0
- package/www/capacitor/info/DocReaderScenario.js +71 -0
- package/www/capacitor/info/DocReaderVersion.js +23 -0
- package/www/capacitor/info/DocumentsDatabase.js +27 -0
- package/www/capacitor/info/License.js +22 -0
- package/www/capacitor/info/PrepareProgress.js +23 -0
- package/www/capacitor/info/RFIDException.js +19 -0
- package/www/capacitor/internal/bridge.js +98 -0
- package/www/capacitor/internal/cordova.js +17 -0
- package/www/capacitor/params/Functionality.js +303 -0
- package/www/capacitor/params/customization/Customization.js +550 -0
- package/www/capacitor/params/customization/CustomizationColors.js +74 -0
- package/www/capacitor/params/customization/CustomizationFonts.js +40 -0
- package/www/capacitor/params/customization/CustomizationImages.js +25 -0
- package/www/capacitor/params/customization/Font.js +28 -0
- package/www/capacitor/params/process_params/AuthenticityParams.js +129 -0
- package/www/capacitor/params/process_params/BackendProcessingConfig.js +25 -0
- package/www/capacitor/params/process_params/FaceApiParams.js +38 -0
- package/www/capacitor/params/process_params/FaceApiSearchParams.js +21 -0
- package/www/capacitor/params/process_params/GlaresCheckParams.js +18 -0
- package/www/capacitor/params/process_params/ImageQA.js +97 -0
- package/www/capacitor/params/process_params/LivenessParams.js +67 -0
- package/www/capacitor/params/process_params/ProcessParams.js +570 -0
- package/www/capacitor/params/process_params/RfidParams.js +15 -0
- package/www/capacitor/params/rfid_scenario/DTCDataGroups.js +53 -0
- package/www/capacitor/params/rfid_scenario/EDLDataGroups.js +116 -0
- package/www/capacitor/params/rfid_scenario/EIDDataGroups.js +165 -0
- package/www/capacitor/params/rfid_scenario/EPassportDataGroups.js +130 -0
- package/www/capacitor/params/rfid_scenario/RFIDScenario.js +493 -0
- package/www/capacitor/results/DocumentType.js +285 -0
- package/www/capacitor/results/Position.js +60 -0
- package/www/capacitor/results/Results.js +318 -0
- package/www/capacitor/results/TransactionInfo.js +16 -0
- package/www/capacitor/results/authenticity/Authenticity.js +23 -0
- package/www/capacitor/results/authenticity/AuthenticityCheck.js +33 -0
- package/www/capacitor/results/authenticity/AuthenticityElement.js +27 -0
- package/www/capacitor/results/authenticity/AuthenticityResult.js +26 -0
- package/www/capacitor/results/authenticity/CheckDiagnose.js +124 -0
- package/www/capacitor/results/authenticity/SecurityFeatureType.js +59 -0
- package/www/capacitor/results/barcode/BarcodeField.js +24 -0
- package/www/capacitor/results/barcode/BarcodeResult.js +24 -0
- package/www/capacitor/results/barcode/BarcodeStatus.js +33 -0
- package/www/capacitor/results/barcode/BarcodeType.js +21 -0
- package/www/capacitor/results/barcode/PDF417Info.js +16 -0
- package/www/capacitor/results/image_quality/ImageQuality.js +31 -0
- package/www/capacitor/results/image_quality/ImageQualityCheckType.js +19 -0
- package/www/capacitor/results/image_quality/ImageQualityGroup.js +30 -0
- package/www/capacitor/results/rfid/AccessControlProcedureType.js +21 -0
- package/www/capacitor/results/rfid/Application.js +47 -0
- package/www/capacitor/results/rfid/Attribute.js +16 -0
- package/www/capacitor/results/rfid/Authority.js +28 -0
- package/www/capacitor/results/rfid/CardProperties.js +38 -0
- package/www/capacitor/results/rfid/CertificateChain.js +51 -0
- package/www/capacitor/results/rfid/CertificateData.js +14 -0
- package/www/capacitor/results/rfid/DataField.js +16 -0
- package/www/capacitor/results/rfid/Extension.js +14 -0
- package/www/capacitor/results/rfid/File.js +39 -0
- package/www/capacitor/results/rfid/FileData.js +18 -0
- package/www/capacitor/results/rfid/RFIDAccessControlProcedureType.js +10 -0
- package/www/capacitor/results/rfid/RFIDCertificateType.js +13 -0
- package/www/capacitor/results/rfid/RFIDDataFileType.js +98 -0
- package/www/capacitor/results/rfid/RFIDSessionData.js +76 -0
- package/www/capacitor/results/rfid/RFIDValidity.js +16 -0
- package/www/capacitor/results/rfid/RFIDValue.js +20 -0
- package/www/capacitor/results/rfid/SecurityObject.js +31 -0
- package/www/capacitor/results/rfid/SecurityObjectCertificates.js +14 -0
- package/www/capacitor/results/rfid/SignerInfo.js +57 -0
- package/www/capacitor/results/status/CheckResult.js +5 -0
- package/www/capacitor/results/status/OpticalStatus.js +30 -0
- package/www/capacitor/results/status/RFIDStatus.js +26 -0
- package/www/capacitor/results/status/ResultsStatus.js +28 -0
- package/www/capacitor/results/visible_digital_seals/BytesData.js +18 -0
- package/www/capacitor/results/visible_digital_seals/LDSParsingErrorCodes.js +134 -0
- package/www/capacitor/results/visible_digital_seals/LDSParsingNotificationCodes.js +232 -0
- package/www/capacitor/results/visible_digital_seals/VDSNCData.js +40 -0
- package/www/capacitor/results/visual_results/Comparison.js +19 -0
- package/www/capacitor/results/visual_results/FieldType.js +658 -0
- package/www/capacitor/results/visual_results/GraphicField.js +33 -0
- package/www/capacitor/results/visual_results/GraphicFieldType.js +25 -0
- package/www/capacitor/results/visual_results/GraphicResult.js +22 -0
- package/www/capacitor/results/visual_results/LCID.js +174 -0
- package/www/capacitor/results/visual_results/Lights.js +11 -0
- package/www/capacitor/results/visual_results/RFIDOrigin.js +18 -0
- package/www/capacitor/results/visual_results/Rect.js +18 -0
- package/www/capacitor/results/visual_results/Symbol.js +18 -0
- package/www/capacitor/results/visual_results/TextField.js +68 -0
- package/www/capacitor/results/visual_results/TextResult.js +42 -0
- package/www/capacitor/results/visual_results/TextSource.js +19 -0
- package/www/capacitor/results/visual_results/Validity.js +17 -0
- package/www/capacitor/results/visual_results/Value.js +39 -0
- package/www/capacitor/rfid/PAAttribute.js +17 -0
- package/www/capacitor/rfid/PAResourcesIssuer.js +27 -0
- package/www/capacitor/rfid/PKDCertificate.js +54 -0
- package/www/capacitor/rfid/RFIDErrorCodes.js +123 -0
- package/www/capacitor/rfid/RFIDNotification.js +60 -0
- package/www/capacitor/rfid/TAChallenge.js +23 -0
- package/www/capacitor/rfid/TccParams.js +24 -0
- package/www/cordova.js +9816 -0
- package/www/react-native/config/InitConfig.js +25 -0
- package/www/react-native/config/OnlineProcessingConfig.js +41 -0
- package/www/react-native/config/RFIDConfig.js +31 -0
- package/www/react-native/config/RecognizeConfig.js +103 -0
- package/www/react-native/config/ScannerConfig.js +38 -0
- package/www/react-native/index.js +486 -0
- package/www/react-native/info/DocReaderException.js +57 -0
- package/www/react-native/info/DocReaderScenario.js +71 -0
- package/www/react-native/info/DocReaderVersion.js +23 -0
- package/www/react-native/info/DocumentsDatabase.js +27 -0
- package/www/react-native/info/License.js +22 -0
- package/www/react-native/info/PrepareProgress.js +23 -0
- package/www/react-native/info/RFIDException.js +19 -0
- package/www/react-native/internal/bridge.js +98 -0
- package/www/react-native/params/Functionality.js +303 -0
- package/www/react-native/params/customization/Customization.js +550 -0
- package/www/react-native/params/customization/CustomizationColors.js +74 -0
- package/www/react-native/params/customization/CustomizationFonts.js +40 -0
- package/www/react-native/params/customization/CustomizationImages.js +25 -0
- package/www/react-native/params/customization/Font.js +28 -0
- package/www/react-native/params/process_params/AuthenticityParams.js +129 -0
- package/www/react-native/params/process_params/BackendProcessingConfig.js +25 -0
- package/www/react-native/params/process_params/FaceApiParams.js +38 -0
- package/www/react-native/params/process_params/FaceApiSearchParams.js +21 -0
- package/www/react-native/params/process_params/GlaresCheckParams.js +18 -0
- package/www/react-native/params/process_params/ImageQA.js +97 -0
- package/www/react-native/params/process_params/LivenessParams.js +67 -0
- package/www/react-native/params/process_params/ProcessParams.js +570 -0
- package/www/react-native/params/process_params/RfidParams.js +15 -0
- package/www/react-native/params/rfid_scenario/DTCDataGroups.js +53 -0
- package/www/react-native/params/rfid_scenario/EDLDataGroups.js +116 -0
- package/www/react-native/params/rfid_scenario/EIDDataGroups.js +165 -0
- package/www/react-native/params/rfid_scenario/EPassportDataGroups.js +130 -0
- package/www/react-native/params/rfid_scenario/RFIDScenario.js +493 -0
- package/www/react-native/results/DocumentType.js +285 -0
- package/www/react-native/results/Position.js +60 -0
- package/www/react-native/results/Results.js +318 -0
- package/www/react-native/results/TransactionInfo.js +16 -0
- package/www/react-native/results/authenticity/Authenticity.js +23 -0
- package/www/react-native/results/authenticity/AuthenticityCheck.js +33 -0
- package/www/react-native/results/authenticity/AuthenticityElement.js +27 -0
- package/www/react-native/results/authenticity/AuthenticityResult.js +26 -0
- package/www/react-native/results/authenticity/CheckDiagnose.js +124 -0
- package/www/react-native/results/authenticity/SecurityFeatureType.js +59 -0
- package/www/react-native/results/barcode/BarcodeField.js +24 -0
- package/www/react-native/results/barcode/BarcodeResult.js +24 -0
- package/www/react-native/results/barcode/BarcodeStatus.js +33 -0
- package/www/react-native/results/barcode/BarcodeType.js +21 -0
- package/www/react-native/results/barcode/PDF417Info.js +16 -0
- package/www/react-native/results/image_quality/ImageQuality.js +31 -0
- package/www/react-native/results/image_quality/ImageQualityCheckType.js +19 -0
- package/www/react-native/results/image_quality/ImageQualityGroup.js +30 -0
- package/www/react-native/results/rfid/AccessControlProcedureType.js +21 -0
- package/www/react-native/results/rfid/Application.js +47 -0
- package/www/react-native/results/rfid/Attribute.js +16 -0
- package/www/react-native/results/rfid/Authority.js +28 -0
- package/www/react-native/results/rfid/CardProperties.js +38 -0
- package/www/react-native/results/rfid/CertificateChain.js +51 -0
- package/www/react-native/results/rfid/CertificateData.js +14 -0
- package/www/react-native/results/rfid/DataField.js +16 -0
- package/www/react-native/results/rfid/Extension.js +14 -0
- package/www/react-native/results/rfid/File.js +39 -0
- package/www/react-native/results/rfid/FileData.js +18 -0
- package/www/react-native/results/rfid/RFIDAccessControlProcedureType.js +10 -0
- package/www/react-native/results/rfid/RFIDCertificateType.js +13 -0
- package/www/react-native/results/rfid/RFIDDataFileType.js +98 -0
- package/www/react-native/results/rfid/RFIDSessionData.js +76 -0
- package/www/react-native/results/rfid/RFIDValidity.js +16 -0
- package/www/react-native/results/rfid/RFIDValue.js +20 -0
- package/www/react-native/results/rfid/SecurityObject.js +31 -0
- package/www/react-native/results/rfid/SecurityObjectCertificates.js +14 -0
- package/www/react-native/results/rfid/SignerInfo.js +57 -0
- package/www/react-native/results/status/CheckResult.js +5 -0
- package/www/react-native/results/status/OpticalStatus.js +30 -0
- package/www/react-native/results/status/RFIDStatus.js +26 -0
- package/www/react-native/results/status/ResultsStatus.js +28 -0
- package/www/react-native/results/visible_digital_seals/BytesData.js +18 -0
- package/www/react-native/results/visible_digital_seals/LDSParsingErrorCodes.js +134 -0
- package/www/react-native/results/visible_digital_seals/LDSParsingNotificationCodes.js +232 -0
- package/www/react-native/results/visible_digital_seals/VDSNCData.js +40 -0
- package/www/react-native/results/visual_results/Comparison.js +19 -0
- package/www/react-native/results/visual_results/FieldType.js +658 -0
- package/www/react-native/results/visual_results/GraphicField.js +33 -0
- package/www/react-native/results/visual_results/GraphicFieldType.js +25 -0
- package/www/react-native/results/visual_results/GraphicResult.js +22 -0
- package/www/react-native/results/visual_results/LCID.js +174 -0
- package/www/react-native/results/visual_results/Lights.js +11 -0
- package/www/react-native/results/visual_results/RFIDOrigin.js +18 -0
- package/www/react-native/results/visual_results/Rect.js +18 -0
- package/www/react-native/results/visual_results/Symbol.js +18 -0
- package/www/react-native/results/visual_results/TextField.js +68 -0
- package/www/react-native/results/visual_results/TextResult.js +42 -0
- package/www/react-native/results/visual_results/TextSource.js +19 -0
- package/www/react-native/results/visual_results/Validity.js +17 -0
- package/www/react-native/results/visual_results/Value.js +39 -0
- package/www/react-native/rfid/PAAttribute.js +17 -0
- package/www/react-native/rfid/PAResourcesIssuer.js +27 -0
- package/www/react-native/rfid/PKDCertificate.js +54 -0
- package/www/react-native/rfid/RFIDErrorCodes.js +123 -0
- package/www/react-native/rfid/RFIDNotification.js +60 -0
- package/www/react-native/rfid/TAChallenge.js +23 -0
- package/www/react-native/rfid/TccParams.js +24 -0
- package/www/types/config/InitConfig.d.ts +63 -0
- package/www/types/config/OnlineProcessingConfig.d.ts +22 -0
- package/www/types/config/RFIDConfig.d.ts +131 -0
- package/www/types/config/RecognizeConfig.d.ts +119 -0
- package/www/types/config/ScannerConfig.d.ts +54 -0
- package/www/types/index.d.ts +421 -0
- package/www/types/info/DocReaderException.d.ts +79 -0
- package/www/types/info/DocReaderScenario.d.ts +90 -0
- package/www/types/info/DocReaderVersion.d.ts +28 -0
- package/www/types/info/DocumentsDatabase.d.ts +42 -0
- package/www/types/info/License.d.ts +23 -0
- package/www/types/info/PrepareProgress.d.ts +15 -0
- package/www/types/info/RFIDException.d.ts +8 -0
- package/www/types/params/Functionality.d.ts +316 -0
- package/www/types/params/customization/Customization.d.ts +558 -0
- package/www/types/params/customization/CustomizationColors.d.ts +16 -0
- package/www/types/params/customization/CustomizationFonts.d.ts +13 -0
- package/www/types/params/customization/CustomizationImages.d.ts +12 -0
- package/www/types/params/customization/Font.d.ts +36 -0
- package/www/types/params/process_params/AuthenticityParams.d.ts +30 -0
- package/www/types/params/process_params/BackendProcessingConfig.d.ts +25 -0
- package/www/types/params/process_params/FaceApiParams.d.ts +68 -0
- package/www/types/params/process_params/FaceApiSearchParams.d.ts +35 -0
- package/www/types/params/process_params/GlaresCheckParams.d.ts +26 -0
- package/www/types/params/process_params/ImageQA.d.ts +79 -0
- package/www/types/params/process_params/LivenessParams.d.ts +20 -0
- package/www/types/params/process_params/ProcessParams.d.ts +465 -0
- package/www/types/params/process_params/RfidParams.d.ts +19 -0
- package/www/types/params/rfid_scenario/DTCDataGroups.d.ts +13 -0
- package/www/types/params/rfid_scenario/EDLDataGroups.d.ts +22 -0
- package/www/types/params/rfid_scenario/EIDDataGroups.d.ts +29 -0
- package/www/types/params/rfid_scenario/EPassportDataGroups.d.ts +24 -0
- package/www/types/params/rfid_scenario/RFIDScenario.d.ts +167 -0
- package/www/types/results/DocumentType.d.ts +525 -0
- package/www/types/results/Position.d.ts +50 -0
- package/www/types/results/Results.d.ts +283 -0
- package/www/types/results/TransactionInfo.d.ts +9 -0
- package/www/types/results/authenticity/Authenticity.d.ts +67 -0
- package/www/types/results/authenticity/AuthenticityCheck.d.ts +23 -0
- package/www/types/results/authenticity/AuthenticityElement.d.ts +26 -0
- package/www/types/results/authenticity/AuthenticityResult.d.ts +16 -0
- package/www/types/results/authenticity/CheckDiagnose.d.ts +229 -0
- package/www/types/results/authenticity/SecurityFeatureType.d.ts +100 -0
- package/www/types/results/barcode/BarcodeField.d.ts +37 -0
- package/www/types/results/barcode/BarcodeResult.d.ts +14 -0
- package/www/types/results/barcode/BarcodeStatus.d.ts +66 -0
- package/www/types/results/barcode/BarcodeType.d.ts +45 -0
- package/www/types/results/barcode/PDF417Info.d.ts +15 -0
- package/www/types/results/image_quality/ImageQuality.d.ts +18 -0
- package/www/types/results/image_quality/ImageQualityCheckType.d.ts +30 -0
- package/www/types/results/image_quality/ImageQualityGroup.d.ts +17 -0
- package/www/types/results/rfid/AccessControlProcedureType.d.ts +21 -0
- package/www/types/results/rfid/Application.d.ts +44 -0
- package/www/types/results/rfid/Attribute.d.ts +9 -0
- package/www/types/results/rfid/Authority.d.ts +11 -0
- package/www/types/results/rfid/CardProperties.d.ts +48 -0
- package/www/types/results/rfid/CertificateChain.d.ts +28 -0
- package/www/types/results/rfid/CertificateData.d.ts +7 -0
- package/www/types/results/rfid/DataField.d.ts +9 -0
- package/www/types/results/rfid/Extension.d.ts +7 -0
- package/www/types/results/rfid/File.d.ts +22 -0
- package/www/types/results/rfid/FileData.d.ts +9 -0
- package/www/types/results/rfid/RFIDAccessControlProcedureType.d.ts +18 -0
- package/www/types/results/rfid/RFIDCertificateType.d.ts +13 -0
- package/www/types/results/rfid/RFIDDataFileType.d.ts +101 -0
- package/www/types/results/rfid/RFIDSessionData.d.ts +48 -0
- package/www/types/results/rfid/RFIDValidity.d.ts +9 -0
- package/www/types/results/rfid/RFIDValue.d.ts +10 -0
- package/www/types/results/rfid/SecurityObject.d.ts +28 -0
- package/www/types/results/rfid/SecurityObjectCertificates.d.ts +8 -0
- package/www/types/results/rfid/SignerInfo.d.ts +41 -0
- package/www/types/results/status/CheckResult.d.ts +8 -0
- package/www/types/results/status/OpticalStatus.d.ts +29 -0
- package/www/types/results/status/RFIDStatus.d.ts +22 -0
- package/www/types/results/status/ResultsStatus.d.ts +24 -0
- package/www/types/results/visible_digital_seals/BytesData.d.ts +9 -0
- package/www/types/results/visible_digital_seals/LDSParsingErrorCodes.d.ts +132 -0
- package/www/types/results/visible_digital_seals/LDSParsingNotificationCodes.d.ts +230 -0
- package/www/types/results/visible_digital_seals/VDSNCData.d.ts +35 -0
- package/www/types/results/visual_results/Comparison.d.ts +15 -0
- package/www/types/results/visual_results/FieldType.d.ts +1310 -0
- package/www/types/results/visual_results/GraphicField.d.ts +29 -0
- package/www/types/results/visual_results/GraphicFieldType.d.ts +52 -0
- package/www/types/results/visual_results/GraphicResult.d.ts +10 -0
- package/www/types/results/visual_results/LCID.d.ts +173 -0
- package/www/types/results/visual_results/Lights.d.ts +23 -0
- package/www/types/results/visual_results/RFIDOrigin.d.ts +10 -0
- package/www/types/results/visual_results/Rect.d.ts +9 -0
- package/www/types/results/visual_results/Symbol.d.ts +14 -0
- package/www/types/results/visual_results/TextField.d.ts +40 -0
- package/www/types/results/visual_results/TextResult.d.ts +23 -0
- package/www/types/results/visual_results/TextSource.d.ts +15 -0
- package/www/types/results/visual_results/Validity.d.ts +13 -0
- package/www/types/results/visual_results/Value.d.ts +27 -0
- package/www/types/rfid/PAAttribute.d.ts +4 -0
- package/www/types/rfid/PAResourcesIssuer.d.ts +7 -0
- package/www/types/rfid/PKDCertificate.d.ts +34 -0
- package/www/types/rfid/RFIDErrorCodes.d.ts +121 -0
- package/www/types/rfid/RFIDNotification.d.ts +153 -0
- package/www/types/rfid/TAChallenge.d.ts +7 -0
- package/www/types/rfid/TccParams.d.ts +25 -0
|
@@ -0,0 +1,1310 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Enum contains identifiers that determine the logical type of text data
|
|
3
|
+
* obtained while reading MRZ, document filling fields, and barcodes.
|
|
4
|
+
*/
|
|
5
|
+
export declare enum FieldType {
|
|
6
|
+
/** Document class code. */
|
|
7
|
+
DOCUMENT_CLASS_CODE = 0,
|
|
8
|
+
/** Issuing state code in compliance with 3166-1 standard (ICAO doc 9303). */
|
|
9
|
+
ISSUING_STATE_CODE = 1,
|
|
10
|
+
/** Document number. */
|
|
11
|
+
DOCUMENT_NUMBER = 2,
|
|
12
|
+
/** Expiry date of the document. */
|
|
13
|
+
DATE_OF_EXPIRY = 3,
|
|
14
|
+
/** Issue date of the document. */
|
|
15
|
+
DATE_OF_ISSUE = 4,
|
|
16
|
+
/** Date of birth. */
|
|
17
|
+
DATE_OF_BIRTH = 5,
|
|
18
|
+
/** Place of birth. */
|
|
19
|
+
PLACE_OF_BIRTH = 6,
|
|
20
|
+
/** Personal number. */
|
|
21
|
+
PERSONAL_NUMBER = 7,
|
|
22
|
+
/** Surname. */
|
|
23
|
+
SURNAME = 8,
|
|
24
|
+
/** Given name(s). */
|
|
25
|
+
GIVEN_NAMES = 9,
|
|
26
|
+
/** Mother's name. */
|
|
27
|
+
MOTHERS_NAME = 10,
|
|
28
|
+
/** Nationality. */
|
|
29
|
+
NATIONALITY = 11,
|
|
30
|
+
/** Sex. */
|
|
31
|
+
SEX = 12,
|
|
32
|
+
/** Height. */
|
|
33
|
+
HEIGHT = 13,
|
|
34
|
+
/** Weight. */
|
|
35
|
+
WEIGHT = 14,
|
|
36
|
+
/** Eye color. */
|
|
37
|
+
EYES_COLOR = 15,
|
|
38
|
+
/** Hair color. */
|
|
39
|
+
HAIR_COLOR = 16,
|
|
40
|
+
/** Address. */
|
|
41
|
+
ADDRESS = 17,
|
|
42
|
+
/** Organ donor indicator. */
|
|
43
|
+
DONOR = 18,
|
|
44
|
+
/** Social security number. */
|
|
45
|
+
SOCIAL_SECURITY_NUMBER = 19,
|
|
46
|
+
/** Driving licence classification code. */
|
|
47
|
+
DL_CLASS = 20,
|
|
48
|
+
/** Driving licenсe endorsement code. */
|
|
49
|
+
DL_ENDORSED = 21,
|
|
50
|
+
/** Driving licence restriction code. */
|
|
51
|
+
DL_RESTRICTION_CODE = 22,
|
|
52
|
+
/** Date of 21st birthday. */
|
|
53
|
+
DL_UNDER_21_DATE = 23,
|
|
54
|
+
/** Issuing authority. */
|
|
55
|
+
AUTHORITY = 24,
|
|
56
|
+
/** Surname and given name(s). */
|
|
57
|
+
SURNAME_AND_GIVEN_NAMES = 25,
|
|
58
|
+
/** Nationality code in compliance with ISO3166-1 standard (ICAO doc 9303). */
|
|
59
|
+
NATIONALITY_CODE = 26,
|
|
60
|
+
/** Passport number. */
|
|
61
|
+
PASSPORT_NUMBER = 27,
|
|
62
|
+
/** Invitation number. */
|
|
63
|
+
INVITATION_NUMBER = 28,
|
|
64
|
+
/** Visa identification number. */
|
|
65
|
+
VISA_ID = 29,
|
|
66
|
+
/** Visa class. */
|
|
67
|
+
VISA_CLASS = 30,
|
|
68
|
+
/** Visa subclass. */
|
|
69
|
+
VISA_SUB_CLASS = 31,
|
|
70
|
+
/** Not used. */
|
|
71
|
+
MRZ_STRING_1 = 32,
|
|
72
|
+
/** Not used. */
|
|
73
|
+
MRZ_STRING_2 = 33,
|
|
74
|
+
/** Not used. */
|
|
75
|
+
MRZ_STRING_3 = 34,
|
|
76
|
+
/** MRZ type (ID-1 – 0, ID-2 – 1, ID-3 – 2). */
|
|
77
|
+
MRZ_TYPE = 35,
|
|
78
|
+
/** Optional data. */
|
|
79
|
+
OPTIONAL_DATA = 36,
|
|
80
|
+
/** Document class name. */
|
|
81
|
+
DOCUMENT_CLASS_NAME = 37,
|
|
82
|
+
/** Issuing state name. */
|
|
83
|
+
ISSUING_STATE_NAME = 38,
|
|
84
|
+
/** Place of issue. */
|
|
85
|
+
PLACE_OF_ISSUE = 39,
|
|
86
|
+
/** Checksum for document number. */
|
|
87
|
+
DOCUMENT_NUMBER_CHECKSUM = 40,
|
|
88
|
+
/** Checksum for date of birth. */
|
|
89
|
+
DATE_OF_BIRTH_CHECKSUM = 41,
|
|
90
|
+
/** Checksum for date of expiry. */
|
|
91
|
+
DATE_OF_EXPIRY_CHECKSUM = 42,
|
|
92
|
+
/** Checksum for personal number. */
|
|
93
|
+
PERSONAL_NUMBER_CHECKSUM = 43,
|
|
94
|
+
/** Final checksum (for the whole MRZ). */
|
|
95
|
+
FINAL_CHECKSUM = 44,
|
|
96
|
+
/** Checksum for passport number (for visas). */
|
|
97
|
+
PASSPORT_NUMBER_CHECKSUM = 45,
|
|
98
|
+
/** Checksum for passport number (for visas). */
|
|
99
|
+
INVITATION_NUMBER_CHECKSUM = 46,
|
|
100
|
+
/** Checksum for visa identification number. */
|
|
101
|
+
VISA_ID_CHECKSUM = 47,
|
|
102
|
+
/** Checksum for surname + given name(s). */
|
|
103
|
+
SURNAME_AND_GIVEN_NAMES_CHECKSUM = 48,
|
|
104
|
+
/** Checksum for visa expiry date. */
|
|
105
|
+
VISA_VALID_UNTIL_CHECKSUM = 49,
|
|
106
|
+
/** Other information. */
|
|
107
|
+
OTHER = 50,
|
|
108
|
+
/** MRZ lines. */
|
|
109
|
+
MRZ_STRINGS = 51,
|
|
110
|
+
/** Name suffix. */
|
|
111
|
+
NAME_SUFFIX = 52,
|
|
112
|
+
/** Name prefix. */
|
|
113
|
+
NAME_PREFIX = 53,
|
|
114
|
+
/** Checksum for date of issue. */
|
|
115
|
+
DATE_OF_ISSUE_CHECKSUM = 54,
|
|
116
|
+
/** Check digit for date of issue. */
|
|
117
|
+
DATE_OF_ISSUE_CHECK_DIGIT = 55,
|
|
118
|
+
/** Document series. */
|
|
119
|
+
DOCUMENT_SERIES = 56,
|
|
120
|
+
/** Serial number of registration certificate. */
|
|
121
|
+
REG_CERT_REG_NUMBER = 57,
|
|
122
|
+
/** Vehicle model. */
|
|
123
|
+
REG_CERT_CAR_MODEL = 58,
|
|
124
|
+
/** Vehicle color. */
|
|
125
|
+
REG_CERT_CAR_COLOR = 59,
|
|
126
|
+
/** Vehicle identification number (VIN). */
|
|
127
|
+
REG_CERT_BODY_NUMBER = 60,
|
|
128
|
+
/** Vehicle type. */
|
|
129
|
+
REG_CERT_CAR_TYPE = 61,
|
|
130
|
+
/** Permissible maximum weight. */
|
|
131
|
+
REG_CERT_MAX_WEIGHT = 62,
|
|
132
|
+
/** Vehicle weight. */
|
|
133
|
+
REG_CERT_WEIGHT = 63,
|
|
134
|
+
/** Address (area). */
|
|
135
|
+
ADDRESS_AREA = 64,
|
|
136
|
+
/** Address (state). */
|
|
137
|
+
ADDRESS_STATE = 65,
|
|
138
|
+
/** Address (building number). */
|
|
139
|
+
ADDRESS_BUILDING = 66,
|
|
140
|
+
/** Address (house number). */
|
|
141
|
+
ADDRESS_HOUSE = 67,
|
|
142
|
+
/** Address (flat number). */
|
|
143
|
+
ADDRESS_FLAT = 68,
|
|
144
|
+
/** Place of registration. */
|
|
145
|
+
PLACE_OF_REGISTRATION = 69,
|
|
146
|
+
/** Date of registration. */
|
|
147
|
+
DATE_OF_REGISTRATION = 70,
|
|
148
|
+
/** Resident from (date). */
|
|
149
|
+
RESIDENT_FROM = 71,
|
|
150
|
+
/** Resident until (date). */
|
|
151
|
+
RESIDENT_UNTIL = 72,
|
|
152
|
+
/** Issuing authority code (for the passport of the Russian Federation). */
|
|
153
|
+
AUTHORITY_CODE = 73,
|
|
154
|
+
/** Place of birth (area). */
|
|
155
|
+
PLACE_OF_BIRTH_AREA = 74,
|
|
156
|
+
/** Place of birth (state code). */
|
|
157
|
+
PLACE_OF_BIRTH_STATE_CODE = 75,
|
|
158
|
+
/** Address (street). */
|
|
159
|
+
ADDRESS_STREET = 76,
|
|
160
|
+
/** Address (city). */
|
|
161
|
+
ADDRESS_CITY = 77,
|
|
162
|
+
/** Address (jurisdiction code). */
|
|
163
|
+
ADDRESS_JURISDICTION_CODE = 78,
|
|
164
|
+
/** Address (postal code). */
|
|
165
|
+
ADDRESS_POSTAL_CODE = 79,
|
|
166
|
+
/** Check digit for document number. */
|
|
167
|
+
DOCUMENT_NUMBER_CHECK_DIGIT = 80,
|
|
168
|
+
/** Check digit for date of birth. */
|
|
169
|
+
DATE_OF_BIRTH_CHECK_DIGIT = 81,
|
|
170
|
+
/** Check digit for document expiry date. */
|
|
171
|
+
DATE_OF_EXPIRY_CHECK_DIGIT = 82,
|
|
172
|
+
/** Check digit for personal number. */
|
|
173
|
+
PERSONAL_NUMBER_CHECK_DIGIT = 83,
|
|
174
|
+
/** Final check digit (for the whole MRZ). */
|
|
175
|
+
FINAL_CHECK_DIGIT = 84,
|
|
176
|
+
/** Check digit for passport number (for visas). */
|
|
177
|
+
PASSPORT_NUMBER_CHECK_DIGIT = 85,
|
|
178
|
+
/** Check digit for invitation number (for visas). */
|
|
179
|
+
INVITATION_NUMBER_CHECK_DIGIT = 86,
|
|
180
|
+
/** Check digit for visa number. */
|
|
181
|
+
VISA_ID_CHECK_DIGIT = 87,
|
|
182
|
+
/** Check digit for surname and given name(s). */
|
|
183
|
+
SURNAME_AND_GIVEN_NAMES_CHECK_DIGIT = 88,
|
|
184
|
+
/** Check digit for visa expiry date. */
|
|
185
|
+
VISA_VALID_UNTIL_CHECK_DIGIT = 89,
|
|
186
|
+
/** Permit type. */
|
|
187
|
+
PERMIT_DL_CLASS = 90,
|
|
188
|
+
/** Permit expiry date. */
|
|
189
|
+
PERMIT_DATE_OF_EXPIRY = 91,
|
|
190
|
+
/** Permit identifier. */
|
|
191
|
+
PERMIT_IDENTIFIER = 92,
|
|
192
|
+
/** Permit issue date. */
|
|
193
|
+
PERMIT_DATE_OF_ISSUE = 93,
|
|
194
|
+
/** Driving permit restriction code. */
|
|
195
|
+
PERMIT_RESTRICTION_CODE = 94,
|
|
196
|
+
/** Driving permit endorsement code. */
|
|
197
|
+
PERMIT_ENDORSED = 95,
|
|
198
|
+
/** A line used for document validation in accordance with the database. */
|
|
199
|
+
ISSUE_TIMESTAMP = 96,
|
|
200
|
+
/** Number of duplicates. */
|
|
201
|
+
NUMBER_OF_DUPLICATES = 97,
|
|
202
|
+
/** Medical indicator/code. */
|
|
203
|
+
MEDICAL_INDICATOR_CODES = 98,
|
|
204
|
+
/** Indicator showing that the document holder is a non-resident. */
|
|
205
|
+
NON_RESIDENT_INDICATOR = 99,
|
|
206
|
+
/** Visa type. */
|
|
207
|
+
VISA_TYPE = 100,
|
|
208
|
+
/** The earliest date from which the visa is valid. */
|
|
209
|
+
VISA_VALID_FROM = 101,
|
|
210
|
+
/** The date until which the visa is valid. */
|
|
211
|
+
VISA_VALID_UNTIL = 102,
|
|
212
|
+
/** Duration of stay (in days) granted by the visa. */
|
|
213
|
+
DURATION_OF_STAY = 103,
|
|
214
|
+
/** Number of entries granted by the visa. */
|
|
215
|
+
NUMBER_OF_ENTRIES = 104,
|
|
216
|
+
/** Day in the date. */
|
|
217
|
+
DAY = 105,
|
|
218
|
+
/** Month in the date. */
|
|
219
|
+
MONTH = 106,
|
|
220
|
+
/** Year in the date. */
|
|
221
|
+
YEAR = 107,
|
|
222
|
+
/** Identification number. */
|
|
223
|
+
UNIQUE_CUSTOMER_IDENTIFIER = 108,
|
|
224
|
+
/** Commercial vehicle code. */
|
|
225
|
+
COMMERCIAL_VEHICLE_CODES = 109,
|
|
226
|
+
/** Also known as (date of birth). */
|
|
227
|
+
AKA_DATE_OF_BIRTH = 110,
|
|
228
|
+
/** Also known as (social security number). */
|
|
229
|
+
AKA_SOCIAL_SECURITY_NUMBER = 111,
|
|
230
|
+
/** Also known as (surname). */
|
|
231
|
+
AKA_SURNAME = 112,
|
|
232
|
+
/** Also known as (given names). */
|
|
233
|
+
AKA_GIVEN_NAMES = 113,
|
|
234
|
+
/** Also known as (suffix name). */
|
|
235
|
+
AKA_NAME_SUFFIX = 114,
|
|
236
|
+
/** Also known as (prefix name). */
|
|
237
|
+
AKA_NAME_PREFIX = 115,
|
|
238
|
+
/** Mailing address (street). */
|
|
239
|
+
MAILING_ADDRESS_STREET = 116,
|
|
240
|
+
/** Mailing address (city). */
|
|
241
|
+
MAILING_ADDRESS_CITY = 117,
|
|
242
|
+
/** Mailing address (jurisdiction code). */
|
|
243
|
+
MAILING_ADDRESS_JURISDICTION_CODE = 118,
|
|
244
|
+
/** Mailing address (postal code). */
|
|
245
|
+
MAILING_ADDRESS_POSTAL_CODE = 119,
|
|
246
|
+
/** A number which is used for driving licence validation. */
|
|
247
|
+
AUDIT_INFORMATION = 120,
|
|
248
|
+
/** Race/ethnicity. */
|
|
249
|
+
INVENTORY_NUMBER = 121,
|
|
250
|
+
/** Race/ethnicity. */
|
|
251
|
+
RACE_ETHNICITY = 122,
|
|
252
|
+
/** Jurisdiction vehicle class. */
|
|
253
|
+
JURISDICTION_VEHICLE_CLASS = 123,
|
|
254
|
+
/** Jurisdiction endorsement code. */
|
|
255
|
+
JURISDICTION_ENDORSEMENT_CODE = 124,
|
|
256
|
+
/** Jurisdiction restriction code. */
|
|
257
|
+
JURISDICTION_RESTRICTION_CODE = 125,
|
|
258
|
+
/** Surname and (or) given name(s) at birth. */
|
|
259
|
+
FAMILY_NAME = 126,
|
|
260
|
+
/** Given name(s) (Russian transcription). */
|
|
261
|
+
GIVEN_NAMES_RUS = 127,
|
|
262
|
+
/** Visa ID (Russian transcription). */
|
|
263
|
+
VISA_ID_RUS = 128,
|
|
264
|
+
/** Father's name/patronymic. */
|
|
265
|
+
FATHERS_NAME = 129,
|
|
266
|
+
/** Father's name/patronymic (Russian transcription). */
|
|
267
|
+
FATHERS_NAME_RUS = 130,
|
|
268
|
+
/** Surname and given name(s) (Russian transcription). */
|
|
269
|
+
SURNAME_AND_GIVEN_NAMES_RUS = 131,
|
|
270
|
+
/** Place of birth (Russian transcription). */
|
|
271
|
+
PLACE_OF_BIRTH_RUS = 132,
|
|
272
|
+
/** Document issuing authority (Russian transcription). */
|
|
273
|
+
AUTHORITY_RUS = 133,
|
|
274
|
+
/** Numeric issuing state code in compliance with ISO 3166-1 standard. */
|
|
275
|
+
ISSUING_STATE_CODE_NUMERIC = 134,
|
|
276
|
+
/** Numeric nationality code in compliance with ISO 3166-1 standard. */
|
|
277
|
+
NATIONALITY_CODE_NUMERIC = 135,
|
|
278
|
+
/** Engine power. */
|
|
279
|
+
ENGINE_POWER = 136,
|
|
280
|
+
/** Engine capacity. */
|
|
281
|
+
ENGINE_VOLUME = 137,
|
|
282
|
+
/** Chassis number. */
|
|
283
|
+
CHASSIS_NUMBER = 138,
|
|
284
|
+
/** Engine number. */
|
|
285
|
+
ENGINE_NUMBER = 139,
|
|
286
|
+
/** Engine model. */
|
|
287
|
+
ENGINE_MODEL = 140,
|
|
288
|
+
/** Vehicle category. */
|
|
289
|
+
VEHICLE_CATEGORY = 141,
|
|
290
|
+
/** Identity card number. */
|
|
291
|
+
IDENTITY_CARD_NUMBER = 142,
|
|
292
|
+
/** Control number. */
|
|
293
|
+
CONTROL_NO = 143,
|
|
294
|
+
/** Parents' given names. */
|
|
295
|
+
PARRENTS_GIVEN_NAMES = 144,
|
|
296
|
+
/** Second surname. */
|
|
297
|
+
SECOND_SURNAME = 145,
|
|
298
|
+
/** Second name. */
|
|
299
|
+
MIDDLE_NAME = 146,
|
|
300
|
+
/** Vehicle identification number. */
|
|
301
|
+
REG_CERT_VIN = 147,
|
|
302
|
+
/** Check digit for vehicle identification number. */
|
|
303
|
+
REG_CERT_VIN_CHECK_DIGIT = 148,
|
|
304
|
+
/** Checksum for vehicle identification number. */
|
|
305
|
+
REG_CERT_VIN_CHECKSUM = 149,
|
|
306
|
+
/** Check digit for the first MRZ line. */
|
|
307
|
+
LINE_1_CHECK_DIGIT = 150,
|
|
308
|
+
/** Check digit for the second MRZ line. */
|
|
309
|
+
LINE_2_CHECK_DIGIT = 151,
|
|
310
|
+
/** Check digit for the third MRZ line. */
|
|
311
|
+
LINE_3_CHECK_DIGIT = 152,
|
|
312
|
+
/** Checksum for the first MRZ line. */
|
|
313
|
+
LINE_1_CHECKSUM = 153,
|
|
314
|
+
/** Checksum for the second MRZ line. */
|
|
315
|
+
LINE_2_CHECKSUM = 154,
|
|
316
|
+
/** Checksum for the third MRZ line. */
|
|
317
|
+
LINE_3_CHECKSUM = 155,
|
|
318
|
+
/** Check digit for vehicle registration number. */
|
|
319
|
+
REG_CERT_REG_NUMBER_CHECK_DIGIT = 156,
|
|
320
|
+
/** Check sum for vehicle registration number. */
|
|
321
|
+
REG_CERT_REG_NUMBER_CHECKSUM = 157,
|
|
322
|
+
/** Vehicle code according to ITS (IntelligentTransportation Systems). */
|
|
323
|
+
REG_CERT_VEHICLE_ITS_CODE = 158,
|
|
324
|
+
/** Access number for RFID chip. */
|
|
325
|
+
CARD_ACCESS_NUMBER = 159,
|
|
326
|
+
/** Marital status. */
|
|
327
|
+
MARITAL_STATUS = 160,
|
|
328
|
+
/** Company name. */
|
|
329
|
+
COMPANY_NAME = 161,
|
|
330
|
+
/** Special notes. */
|
|
331
|
+
SPECIAL_NOTES = 162,
|
|
332
|
+
/** Surname of spouse. */
|
|
333
|
+
SURNAME_OF_SPOSE = 163,
|
|
334
|
+
/** Number for checking document status. */
|
|
335
|
+
TRACKING_NUMBER = 164,
|
|
336
|
+
/** Booklet number. */
|
|
337
|
+
BOOKLET_NUMBER = 165,
|
|
338
|
+
/** Children. */
|
|
339
|
+
CHILDREN = 166,
|
|
340
|
+
/** Copy number. */
|
|
341
|
+
COPY = 167,
|
|
342
|
+
/** Serial number. */
|
|
343
|
+
SERIAL_NUMBER = 168,
|
|
344
|
+
/** Dossier number. */
|
|
345
|
+
DOSSIER_NUMBER = 169,
|
|
346
|
+
/** Also known as (surname and given names). */
|
|
347
|
+
AKA_SURNAME_AND_GIVEN_NAMES = 170,
|
|
348
|
+
/** Territorial validity. */
|
|
349
|
+
TERRITORIAL_VALIDITY = 171,
|
|
350
|
+
/** MRZ with correct checksums. */
|
|
351
|
+
MRZ_STRINGS_WITH_CORRECT_CHECK_SUMS = 172,
|
|
352
|
+
/** Commercial driving license restriction code. */
|
|
353
|
+
DL_CDL_RESTRICTION_CODE = 173,
|
|
354
|
+
/** Date of 18th birthday. */
|
|
355
|
+
DL_UNDER_18_DATE = 174,
|
|
356
|
+
/** Date of record creation. */
|
|
357
|
+
DL_RECORD_CREATED = 175,
|
|
358
|
+
/** Date of duplicate creation. */
|
|
359
|
+
DL_DUPLICATE_DATE = 176,
|
|
360
|
+
/** Type of issued driving license. */
|
|
361
|
+
DL_ISS_TYPE = 177,
|
|
362
|
+
/** Military card number. */
|
|
363
|
+
MILITARY_BOOK_NUMBER = 178,
|
|
364
|
+
/** Destination. */
|
|
365
|
+
DESTINATION = 179,
|
|
366
|
+
/** Blood group. */
|
|
367
|
+
BLOOD_GROUP = 180,
|
|
368
|
+
/** Sequence number. */
|
|
369
|
+
SEQUENCE_NUMBER = 181,
|
|
370
|
+
/** Car body type. */
|
|
371
|
+
REG_CERT_BODY_TYPE = 182,
|
|
372
|
+
/** Car make. */
|
|
373
|
+
REG_CERT_CAR_MARK = 183,
|
|
374
|
+
/** Transaction number. */
|
|
375
|
+
TRANSACTION_NUMBER = 184,
|
|
376
|
+
/** Age. */
|
|
377
|
+
AGE = 185,
|
|
378
|
+
/** Folio number. */
|
|
379
|
+
FOLIO_NUMBER = 186,
|
|
380
|
+
/** Voter's identification number. */
|
|
381
|
+
VOTER_KEY = 187,
|
|
382
|
+
/** Address (municipality). */
|
|
383
|
+
ADDRESS_MUNICIPALITY = 188,
|
|
384
|
+
/** Address (location). */
|
|
385
|
+
ADDRESS_LOCATION = 189,
|
|
386
|
+
/** Section/sector. */
|
|
387
|
+
SECTION = 190,
|
|
388
|
+
/** OCR number. */
|
|
389
|
+
OCR_NUMBER = 191,
|
|
390
|
+
/** Federal elections. */
|
|
391
|
+
FEDERAL_ELECTIONS = 192,
|
|
392
|
+
/** Unique number. */
|
|
393
|
+
REFERENCE_NUMBER = 193,
|
|
394
|
+
/** Checksum for optional data. */
|
|
395
|
+
OPTIONAL_DATA_CHECKSUM = 194,
|
|
396
|
+
/** Check digit for optional data. */
|
|
397
|
+
OPTIONAL_DATA_CHECK_DIGIT = 195,
|
|
398
|
+
/** Visa number. */
|
|
399
|
+
VISA_NUMBER = 196,
|
|
400
|
+
/** Checksum for visa. */
|
|
401
|
+
VISA_NUMBER_CHECKSUM = 197,
|
|
402
|
+
/** Checkdigit for visa. */
|
|
403
|
+
VISA_NUMBER_CHECK_DIGIT = 198,
|
|
404
|
+
/** Voter. */
|
|
405
|
+
VOTER = 199,
|
|
406
|
+
/** Type/number of the previous document. */
|
|
407
|
+
PREVIOUS_TYPE = 200,
|
|
408
|
+
/** Reserved for internal use. */
|
|
409
|
+
FIELD_FROM_MRZ = 220,
|
|
410
|
+
/** Reserved for internal use. */
|
|
411
|
+
CURRENT_DATE = 221,
|
|
412
|
+
/** Status expiry date. */
|
|
413
|
+
STATUS_DATE_OF_EXPIRY = 251,
|
|
414
|
+
/** Banknote number. */
|
|
415
|
+
BANKNOTE_NUMBER = 252,
|
|
416
|
+
/** Customer Service Centre code. */
|
|
417
|
+
CSC_CODE = 253,
|
|
418
|
+
/** Pseudonym. */
|
|
419
|
+
ARTISTIC_NAME = 254,
|
|
420
|
+
/** Academic title. */
|
|
421
|
+
ACADEMIC_TITLE = 255,
|
|
422
|
+
/** Address (country). */
|
|
423
|
+
ADDRESS_COUNTRY = 256,
|
|
424
|
+
/** Address (zip code). */
|
|
425
|
+
ADDRESS_ZIPCODE = 257,
|
|
426
|
+
/** Data on permanent residence permit 1(eID field). */
|
|
427
|
+
E_ID_RESIDENCE_PERMIT_1 = 258,
|
|
428
|
+
/** Data on permanent residence permit 2(eID field). */
|
|
429
|
+
E_ID_RESIDENCE_PERMIT_2 = 259,
|
|
430
|
+
/** Place of birth: street (eID field). */
|
|
431
|
+
E_ID_PLACE_OF_BIRTH_STREET = 260,
|
|
432
|
+
/** Place of birth: city (eID field). */
|
|
433
|
+
E_ID_PLACE_OF_BIRTH_CITY = 261,
|
|
434
|
+
/** Place of birth: state (eID field). */
|
|
435
|
+
E_ID_PLACE_OF_BIRTH_STATE = 262,
|
|
436
|
+
/** Place of birth: country (eID field). */
|
|
437
|
+
E_ID_PLACE_OF_BIRTH_COUNTRY = 263,
|
|
438
|
+
/** Place of birth: zip code (eID field). */
|
|
439
|
+
E_ID_PLACE_OF_BIRTH_ZIPCODE = 264,
|
|
440
|
+
/** Commercial driving license class. */
|
|
441
|
+
CDL_CLASS = 265,
|
|
442
|
+
/** Date of 19th birthday. */
|
|
443
|
+
DL_UNDER_19_DATE = 266,
|
|
444
|
+
/** Weight (pounds). */
|
|
445
|
+
WEIGHT_POUNDS = 267,
|
|
446
|
+
/** Indicator of document limited duration. */
|
|
447
|
+
LIMITED_DURATION_DOCUMENT_INDICATOR = 268,
|
|
448
|
+
/** Endorsement expiry date. */
|
|
449
|
+
ENDORSEMENT_EXPIRATION_DATE = 269,
|
|
450
|
+
/** Date of revision. */
|
|
451
|
+
REVISION_DATE = 270,
|
|
452
|
+
/** Type of compliance. */
|
|
453
|
+
COMPLIANCE_TYPE = 271,
|
|
454
|
+
/** Family name truncation. */
|
|
455
|
+
FAMILY_NAME_TRUNCATION = 272,
|
|
456
|
+
/** First name truncation. */
|
|
457
|
+
FIRST_NAME_TRUNCATION = 273,
|
|
458
|
+
/** Middle name truncation. */
|
|
459
|
+
MIDDLE_NAME_TRUNCATION = 274,
|
|
460
|
+
/** Examination date. */
|
|
461
|
+
EXAM_DATE = 275,
|
|
462
|
+
/** Organization. */
|
|
463
|
+
ORGANIZATION = 276,
|
|
464
|
+
/** Department. */
|
|
465
|
+
DEPARTMENT = 277,
|
|
466
|
+
/** Pay grade. */
|
|
467
|
+
PAY_GRADE = 278,
|
|
468
|
+
/** Rank/status/title. */
|
|
469
|
+
RANK = 279,
|
|
470
|
+
/** Number that relates to benefit eligibility. */
|
|
471
|
+
BENEFITS_NUMBER = 280,
|
|
472
|
+
/** Sponsor's service. */
|
|
473
|
+
SPONSOR_SERVICE = 281,
|
|
474
|
+
/** Sponsor's status. */
|
|
475
|
+
SPONSOR_STATUS = 282,
|
|
476
|
+
/** Sponsor. */
|
|
477
|
+
SPONSOR = 283,
|
|
478
|
+
/** Relationship. */
|
|
479
|
+
RELATIONSHIP = 284,
|
|
480
|
+
/** Alien registration number issued by the U.S. Citizenship and Immigration Service. */
|
|
481
|
+
USCIS = 285,
|
|
482
|
+
/** Category. */
|
|
483
|
+
CATEGORY = 286,
|
|
484
|
+
/** Conditions. */
|
|
485
|
+
CONDITIONS = 287,
|
|
486
|
+
/** Identifier. */
|
|
487
|
+
IDENTIFIER = 288,
|
|
488
|
+
/** Configuration. */
|
|
489
|
+
CONFIGURATION = 289,
|
|
490
|
+
/** Discretionary data. */
|
|
491
|
+
DISCRETIONARY_DATA = 290,
|
|
492
|
+
/** Optional data from MRZ Line 1. */
|
|
493
|
+
LINE_1_OPTIONAL_DATA = 291,
|
|
494
|
+
/** Optional data from MRZ Line 2. */
|
|
495
|
+
LINE_2_OPTIONAL_DATA = 292,
|
|
496
|
+
/** Optional data from MRZ Line 3. */
|
|
497
|
+
LINE_3_OPTIONAL_DATA = 293,
|
|
498
|
+
/** Equivalence value (security code). */
|
|
499
|
+
EQV_CODE = 294,
|
|
500
|
+
/** ALT сode. */
|
|
501
|
+
ALT_CODE = 295,
|
|
502
|
+
/** Binary сode. */
|
|
503
|
+
BINARY_CODE = 296,
|
|
504
|
+
/** Pseudo-code. */
|
|
505
|
+
PSEUDO_CODE = 297,
|
|
506
|
+
/** Fee. */
|
|
507
|
+
FEE = 298,
|
|
508
|
+
/** Stamp number. */
|
|
509
|
+
STAMP_NUMBER = 299,
|
|
510
|
+
/** Parameters of biometric data protection. */
|
|
511
|
+
SBH_SECURITYOPTIONS = 300,
|
|
512
|
+
/** Parameters of biometric data integrity. */
|
|
513
|
+
SBH_INTEGRITYOPTIONS = 301,
|
|
514
|
+
/** Date of creation of biometric data record. */
|
|
515
|
+
DATE_OF_CREATION = 302,
|
|
516
|
+
/** Term of validity of biometric data record. */
|
|
517
|
+
VALIDITY_PERIOD = 303,
|
|
518
|
+
/** Version of header of biometric data format owner. */
|
|
519
|
+
PATRON_HEADER_VERSION = 304,
|
|
520
|
+
/** Type of biometric data record. */
|
|
521
|
+
BDB_TYPE = 305,
|
|
522
|
+
/** Type of biometric data. */
|
|
523
|
+
BIOMETRIC_TYPE = 306,
|
|
524
|
+
/** Subtype of biometric data. */
|
|
525
|
+
BIOMETRIC_SUBTYPE = 307,
|
|
526
|
+
/** Identifier of biometric data. */
|
|
527
|
+
BIOMETRIC_PRODUCTID = 308,
|
|
528
|
+
/** Identifier of biometric data format owner. */
|
|
529
|
+
BIOMETRIC_FORMAT_OWNER = 309,
|
|
530
|
+
/** Biometric data format. */
|
|
531
|
+
BIOMETRIC_FORMAT_TYPE = 310,
|
|
532
|
+
/** DO's phone number. */
|
|
533
|
+
PHONE = 311,
|
|
534
|
+
/** DO's profession. */
|
|
535
|
+
PROFESSION = 312,
|
|
536
|
+
/** DO's title. */
|
|
537
|
+
TITLE = 313,
|
|
538
|
+
/** DO's personal summary data. */
|
|
539
|
+
PERSONAL_SUMMARY = 314,
|
|
540
|
+
/** Other valid identifier. */
|
|
541
|
+
OTHER_VALID_ID = 315,
|
|
542
|
+
/** Custody information. */
|
|
543
|
+
CUSTODY_INFO = 316,
|
|
544
|
+
/** Other name. */
|
|
545
|
+
OTHER_NAME = 317,
|
|
546
|
+
/** Observations. */
|
|
547
|
+
OBSERVATIONS = 318,
|
|
548
|
+
/** Tax information. */
|
|
549
|
+
TAX = 319,
|
|
550
|
+
/** Date of document personalization. */
|
|
551
|
+
DATE_OF_PERSONALIZATION = 320,
|
|
552
|
+
/** Serial number of personalization. */
|
|
553
|
+
PERSONALIZATION_SN = 321,
|
|
554
|
+
/** Other person's name. */
|
|
555
|
+
OTHERPERSON_NAME = 322,
|
|
556
|
+
/** Date of record entry on persons to notify in case of emergency. */
|
|
557
|
+
PERSONTONOTIFY_DATE_OF_RECORD = 323,
|
|
558
|
+
/** Name of person to notify in case of emergency. */
|
|
559
|
+
PERSONTONOTIFY_NAME = 324,
|
|
560
|
+
/** Phone number of person to notify in case of emergency. */
|
|
561
|
+
PERSONTONOTIFY_PHONE = 325,
|
|
562
|
+
/** Address of person to notify in case of emergency. */
|
|
563
|
+
PERSONTONOTIFY_ADDRESS = 326,
|
|
564
|
+
/** Textual information about the DS-certificate issuer. */
|
|
565
|
+
DS_CERTIFICATE_ISSUER = 327,
|
|
566
|
+
/** Textual information about the document issuer. */
|
|
567
|
+
DS_CERTIFICATE_SUBJECT = 328,
|
|
568
|
+
/** Start date of the DS-certificate validity. */
|
|
569
|
+
DS_CERTIFICATE_VALIDFROM = 329,
|
|
570
|
+
/** Expiration date of the DS-certificate. */
|
|
571
|
+
DS_CERTIFICATE_VALIDTO = 330,
|
|
572
|
+
/** Vehicle category/restrictions/conditions from DG1 data group of eDL application. */
|
|
573
|
+
VRC_DATAOBJECT_ENTRY = 331,
|
|
574
|
+
/** Type approval number. */
|
|
575
|
+
TYPE_APPROVAL_NUMBER = 332,
|
|
576
|
+
/** Administrative number. */
|
|
577
|
+
ADMINISTRATIVE_NUMBER = 333,
|
|
578
|
+
/** Document discriminator. */
|
|
579
|
+
DOCUMENT_DISCRIMINATOR = 334,
|
|
580
|
+
/** Data discriminator. */
|
|
581
|
+
DATA_DISCRIMINATOR = 335,
|
|
582
|
+
/** ISO issuer ID number. */
|
|
583
|
+
ISO_ISSUER_ID_NUMBER = 336,
|
|
584
|
+
/** DTC version. */
|
|
585
|
+
DTC_VERSION = 337,
|
|
586
|
+
/** DTC ID. */
|
|
587
|
+
DTC_ID = 338,
|
|
588
|
+
/** DTC date of expiry. */
|
|
589
|
+
DTC_DATE_OF_EXPIRY = 339,
|
|
590
|
+
/** Registration number issued by GardaNational Immigration Bureau. */
|
|
591
|
+
GNIB_NUMBER = 340,
|
|
592
|
+
/** Department number. */
|
|
593
|
+
DEPT_NUMBER = 341,
|
|
594
|
+
/** Telegraph code. */
|
|
595
|
+
TELEX_CODE = 342,
|
|
596
|
+
/** Allergies. */
|
|
597
|
+
ALLERGIES = 343,
|
|
598
|
+
/** Sp. code. */
|
|
599
|
+
SP_CODE = 344,
|
|
600
|
+
/** Code of restriction imposed by court. */
|
|
601
|
+
COURT_CODE = 345,
|
|
602
|
+
/** County code. */
|
|
603
|
+
CTY = 346,
|
|
604
|
+
/** Sponsor's social security number. */
|
|
605
|
+
SPONSOR_SSN = 347,
|
|
606
|
+
/** Department of Defense identification number. */
|
|
607
|
+
DO_D_NUMBER = 348,
|
|
608
|
+
/** Expiry date of Motorcycle status. */
|
|
609
|
+
MC_NOVICE_DATE = 349,
|
|
610
|
+
/** DUF Number (a number that is assigned to everyone who applies for residence inNorway). */
|
|
611
|
+
DUF_NUMBER = 350,
|
|
612
|
+
/** Code of Philippine Land TransportationOffice Agency. */
|
|
613
|
+
AGY = 351,
|
|
614
|
+
/** Passenger name record (reservation code). */
|
|
615
|
+
PNR_CODE = 352,
|
|
616
|
+
/** Code of the airport of departure. */
|
|
617
|
+
FROM_AIRPORT_CODE = 353,
|
|
618
|
+
/** Code of the airport of arrival. */
|
|
619
|
+
TO_AIRPORT_CODE = 354,
|
|
620
|
+
/** Flight number. */
|
|
621
|
+
FLIGHT_NUMBER = 355,
|
|
622
|
+
/** Date of flight. */
|
|
623
|
+
DATE_OF_FLIGHT = 356,
|
|
624
|
+
/** Seat number. */
|
|
625
|
+
SEAT_NUMBER = 357,
|
|
626
|
+
/** Date of boarding pass issue. */
|
|
627
|
+
DATE_OF_ISSUE_BOARDING_PASS = 358,
|
|
628
|
+
/** Expiration date of Concealed CarryWeapon Permit. */
|
|
629
|
+
CCW_UNTIL = 359,
|
|
630
|
+
/** Checksum for reference number. */
|
|
631
|
+
REFERENCE_NUMBER_CHECKSUM = 360,
|
|
632
|
+
/** Check digit for reference number. */
|
|
633
|
+
REFERENCE_NUMBER_CHECK_DIGIT = 361,
|
|
634
|
+
/** Room number. */
|
|
635
|
+
ROOM_NUMBER = 362,
|
|
636
|
+
/** Religion. */
|
|
637
|
+
RELIGION = 363,
|
|
638
|
+
/** Months to expire. */
|
|
639
|
+
REMAINDER_TERM = 364,
|
|
640
|
+
/** Electronic ticket indicator. */
|
|
641
|
+
ELECTRONIC_TICKET_INDICATOR = 365,
|
|
642
|
+
/** Compartment сode. */
|
|
643
|
+
COMPARTMENT_CODE = 366,
|
|
644
|
+
/** Check-in sequence number on a boarding pass. */
|
|
645
|
+
CHECK_IN_SEQUENCE_NUMBER = 367,
|
|
646
|
+
/** Code of the airline which issued the boarding pass. */
|
|
647
|
+
AIRLINE_DESIGNATOR_OF_BOARDING_PASS_ISSUER = 368,
|
|
648
|
+
/** Numeric airline code. */
|
|
649
|
+
AIRLINE_NUMERIC_CODE = 369,
|
|
650
|
+
/** Ticket number. */
|
|
651
|
+
TICKET_NUMBER = 370,
|
|
652
|
+
/** Frequent flyer indicator. */
|
|
653
|
+
FREQUENT_FLYER_AIRLINE_DESIGNATOR = 371,
|
|
654
|
+
/** Frequent flyer number. */
|
|
655
|
+
FREQUENT_FLYER_NUMBER = 372,
|
|
656
|
+
/** Free baggage allowance. */
|
|
657
|
+
FREE_BAGGAGE_ALLOWANCE = 373,
|
|
658
|
+
/** Codec for PDF417. */
|
|
659
|
+
PDF_417_CODEC = 374,
|
|
660
|
+
/** Checksum for identity card number. */
|
|
661
|
+
IDENTITY_CARD_NUMBER_CHECKSUM = 375,
|
|
662
|
+
/** Check digit for identity card number. */
|
|
663
|
+
IDENTITY_CARD_NUMBER_CHECK_DIGIT = 376,
|
|
664
|
+
/** Veteran. */
|
|
665
|
+
VETERAN = 377,
|
|
666
|
+
/** DL class code A1 valid from. */
|
|
667
|
+
DL_CLASS_CODE_A_1_FROM = 378,
|
|
668
|
+
/** DL class code A1 valid to. */
|
|
669
|
+
DL_CLASS_CODE_A_1_TO = 379,
|
|
670
|
+
/** DL class code A1 valid notes. */
|
|
671
|
+
DL_CLASS_CODE_A_1_NOTES = 380,
|
|
672
|
+
/** DL class code A1 valid from. */
|
|
673
|
+
DL_CLASS_CODE_A_FROM = 381,
|
|
674
|
+
/** DL class code A1 valid to. */
|
|
675
|
+
DL_CLASS_CODE_A_TO = 382,
|
|
676
|
+
/** DL class code A1 valid notes. */
|
|
677
|
+
DL_CLASS_CODE_A_NOTES = 383,
|
|
678
|
+
/** DL class code B valid from. */
|
|
679
|
+
DL_CLASS_CODE_B_FROM = 384,
|
|
680
|
+
/** DL class code B valid to. */
|
|
681
|
+
DL_CLASS_CODE_B_TO = 385,
|
|
682
|
+
/** DL class code B valid notes. */
|
|
683
|
+
DL_CLASS_CODE_B_NOTES = 386,
|
|
684
|
+
/** DL class code C1 valid from. */
|
|
685
|
+
DL_CLASS_CODE_C_1_FROM = 387,
|
|
686
|
+
/** DL class code C1 valid to. */
|
|
687
|
+
DL_CLASS_CODE_C_1_TO = 388,
|
|
688
|
+
/** DL class code C1 valid notes. */
|
|
689
|
+
DL_CLASS_CODE_C_1_NOTES = 389,
|
|
690
|
+
/** DL class code C valid from. */
|
|
691
|
+
DL_CLASS_CODE_C_FROM = 390,
|
|
692
|
+
/** DL class code C valid to. */
|
|
693
|
+
DL_CLASS_CODE_C_TO = 391,
|
|
694
|
+
/** DL class code C valid notes. */
|
|
695
|
+
DL_CLASS_CODE_C_NOTES = 392,
|
|
696
|
+
/** DL class code D1 valid from. */
|
|
697
|
+
DL_CLASS_CODE_D_1_FROM = 393,
|
|
698
|
+
/** DL class code D1 valid to. */
|
|
699
|
+
DL_CLASS_CODE_D_1_TO = 394,
|
|
700
|
+
/** DL class code D1 valid notes. */
|
|
701
|
+
DL_CLASS_CODE_D_1_NOTES = 395,
|
|
702
|
+
/** DL class code D valid from. */
|
|
703
|
+
DL_CLASS_CODE_D_FROM = 396,
|
|
704
|
+
/** DL class code D valid to. */
|
|
705
|
+
DL_CLASS_CODE_D_TO = 397,
|
|
706
|
+
/** DL class code D valid notes. */
|
|
707
|
+
DL_CLASS_CODE_D_NOTES = 398,
|
|
708
|
+
/** DL class code BE valid from. */
|
|
709
|
+
DL_CLASS_CODE_BE_FROM = 399,
|
|
710
|
+
/** DL class code BE valid to. */
|
|
711
|
+
DL_CLASS_CODE_BE_TO = 400,
|
|
712
|
+
/** DL class code BE valid notes. */
|
|
713
|
+
DL_CLASS_CODE_BE_NOTES = 401,
|
|
714
|
+
/** DL class code C1E valid from. */
|
|
715
|
+
DL_CLASS_CODE_C_1_E_FROM = 402,
|
|
716
|
+
/** DL class code C1E valid to. */
|
|
717
|
+
DL_CLASS_CODE_C_1_E_TO = 403,
|
|
718
|
+
/** DL class code C1E valid notes. */
|
|
719
|
+
DL_CLASS_CODE_C_1_E_NOTES = 404,
|
|
720
|
+
/** DL class code CE valid from. */
|
|
721
|
+
DL_CLASS_CODE_CE_FROM = 405,
|
|
722
|
+
/** DL class code CE valid to. */
|
|
723
|
+
DL_CLASS_CODE_CE_TO = 406,
|
|
724
|
+
/** DL class code CE valid notes. */
|
|
725
|
+
DL_CLASS_CODE_CE_NOTES = 407,
|
|
726
|
+
/** DL class code D1E valid from. */
|
|
727
|
+
DL_CLASS_CODE_D_1_E_FROM = 408,
|
|
728
|
+
/** DL class code D1E valid to. */
|
|
729
|
+
DL_CLASS_CODE_D_1_E_TO = 409,
|
|
730
|
+
/** DL class code D1E valid notes. */
|
|
731
|
+
DL_CLASS_CODE_D_1_E_NOTES = 410,
|
|
732
|
+
/** DL class code DE valid from. */
|
|
733
|
+
DL_CLASS_CODE_DE_FROM = 411,
|
|
734
|
+
/** DL class code DE valid to. */
|
|
735
|
+
DL_CLASS_CODE_DE_TO = 412,
|
|
736
|
+
/** DL class code DE valid notes. */
|
|
737
|
+
DL_CLASS_CODE_DE_NOTES = 413,
|
|
738
|
+
/** DL class code M valid from. */
|
|
739
|
+
DL_CLASS_CODE_M_FROM = 414,
|
|
740
|
+
/** DL class code M valid to. */
|
|
741
|
+
DL_CLASS_CODE_M_TO = 415,
|
|
742
|
+
/** DL class code M valid notes. */
|
|
743
|
+
DL_CLASS_CODE_M_NOTES = 416,
|
|
744
|
+
/** DL class code L valid from. */
|
|
745
|
+
DL_CLASS_CODE_L_FROM = 417,
|
|
746
|
+
/** DL class code L valid to. */
|
|
747
|
+
DL_CLASS_CODE_L_TO = 418,
|
|
748
|
+
/** DL class code L valid notes. */
|
|
749
|
+
DL_CLASS_CODE_L_NOTES = 419,
|
|
750
|
+
/** DL class code T valid from. */
|
|
751
|
+
DL_CLASS_CODE_T_FROM = 420,
|
|
752
|
+
/** DL class code T valid to. */
|
|
753
|
+
DL_CLASS_CODE_T_TO = 421,
|
|
754
|
+
/** DL class code T valid notes. */
|
|
755
|
+
DL_CLASS_CODE_T_NOTES = 422,
|
|
756
|
+
/** DL class code AM valid from. */
|
|
757
|
+
DL_CLASS_CODE_AM_FROM = 423,
|
|
758
|
+
/** DL class code AM valid to. */
|
|
759
|
+
DL_CLASS_CODE_AM_TO = 424,
|
|
760
|
+
/** DL class code AM valid notes. */
|
|
761
|
+
DL_CLASS_CODE_AM_NOTES = 425,
|
|
762
|
+
/** DL class code A2 valid from. */
|
|
763
|
+
DL_CLASS_CODE_A_2_FROM = 426,
|
|
764
|
+
/** DL class code A2 valid to. */
|
|
765
|
+
DL_CLASS_CODE_A_2_TO = 427,
|
|
766
|
+
/** DL class code A2 valid notes. */
|
|
767
|
+
DL_CLASS_CODE_A_2_NOTES = 428,
|
|
768
|
+
/** DL class code B1 valid from. */
|
|
769
|
+
DL_CLASS_CODE_B_1_FROM = 429,
|
|
770
|
+
/** DL class code B1 valid to. */
|
|
771
|
+
DL_CLASS_CODE_B_1_TO = 430,
|
|
772
|
+
/** DL class code B1 valid notes. */
|
|
773
|
+
DL_CLASS_CODE_B_1_NOTES = 431,
|
|
774
|
+
/** Surname at birth. */
|
|
775
|
+
SURNAME_AT_BIRTH = 432,
|
|
776
|
+
/** Civil status. */
|
|
777
|
+
CIVIL_STATUS = 433,
|
|
778
|
+
/** Number of seats. */
|
|
779
|
+
NUMBER_OF_SEATS = 434,
|
|
780
|
+
/** Number of standing places. */
|
|
781
|
+
NUMBER_OF_STANDING_PLACES = 435,
|
|
782
|
+
/** Maximum speed. */
|
|
783
|
+
MAX_SPEED = 436,
|
|
784
|
+
/** Fuel type. */
|
|
785
|
+
FUEL_TYPE = 437,
|
|
786
|
+
/** Vehicle environmental type. */
|
|
787
|
+
EC_ENVIRONMENTAL_TYPE = 438,
|
|
788
|
+
/** Power–to–weight ratio. */
|
|
789
|
+
POWER_WEIGHT_RATIO = 439,
|
|
790
|
+
/** Maximum weight of the trailer without brakes. */
|
|
791
|
+
MAX_MASS_OF_TRAILER_BRAKED = 440,
|
|
792
|
+
/** Maximum weight of the trailer without brakes. */
|
|
793
|
+
MAX_MASS_OF_TRAILER_UNBRAKED = 441,
|
|
794
|
+
/** Transmission type. */
|
|
795
|
+
TRANSMISSION_TYPE = 442,
|
|
796
|
+
/** Trailer hitch. */
|
|
797
|
+
TRAILER_HITCH = 443,
|
|
798
|
+
/** Accompanying person. */
|
|
799
|
+
ACCOMPANIED_BY = 444,
|
|
800
|
+
/** Police district. */
|
|
801
|
+
POLICE_DISTRICT = 445,
|
|
802
|
+
/** Date of first issue. */
|
|
803
|
+
FIRST_ISSUE_DATE = 446,
|
|
804
|
+
/** Payload capacity. */
|
|
805
|
+
PAYLOAD_CAPACITY = 447,
|
|
806
|
+
/** Number of axels. */
|
|
807
|
+
NUMBER_OF_AXELS = 448,
|
|
808
|
+
/** Permissible axle load. */
|
|
809
|
+
PERMISSIBLE_AXLE_LOAD = 449,
|
|
810
|
+
/** Precinct. */
|
|
811
|
+
PRECINCT = 450,
|
|
812
|
+
/** Invited by. */
|
|
813
|
+
INVITED_BY = 451,
|
|
814
|
+
/** Purpose of entry. */
|
|
815
|
+
PURPOSE_OF_ENTRY = 452,
|
|
816
|
+
/** Skin color. */
|
|
817
|
+
SKIN_COLOR = 453,
|
|
818
|
+
/** Complexion. */
|
|
819
|
+
COMPLEXION = 454,
|
|
820
|
+
/** Airport of departure. */
|
|
821
|
+
AIRPORT_FROM = 455,
|
|
822
|
+
/** Airport of arrival. */
|
|
823
|
+
AIRPORT_TO = 456,
|
|
824
|
+
/** Airline name. */
|
|
825
|
+
AIRLINE_NAME = 457,
|
|
826
|
+
/** A loyalty program offered by the airline to its customers who fly frequently. */
|
|
827
|
+
AIRLINE_NAME_FREQUENT_FLYER = 458,
|
|
828
|
+
/** Licenсe number. */
|
|
829
|
+
LICENSE_NUMBER = 459,
|
|
830
|
+
/** In tanks. */
|
|
831
|
+
IN_TANKS = 460,
|
|
832
|
+
/** Except in tanks. */
|
|
833
|
+
EXEPT_IN_TANKS = 461,
|
|
834
|
+
/** Passenger using the Fast Track service in the airport. */
|
|
835
|
+
FAST_TRACK = 462,
|
|
836
|
+
/** Owner. */
|
|
837
|
+
OWNER = 463,
|
|
838
|
+
/** MRZ strings from ICAO RFID. */
|
|
839
|
+
MRZ_STRINGS_ICAO_RFID = 464,
|
|
840
|
+
/** The number of times a card with this number has been issued. */
|
|
841
|
+
NUMBER_OF_CARD_ISSUANCE = 465,
|
|
842
|
+
/** Number of card issuance checksum. */
|
|
843
|
+
NUMBER_OF_CARD_ISSUANCE_CHECKSUM = 466,
|
|
844
|
+
/** Number of card issuance check digit. */
|
|
845
|
+
NUMBER_OF_CARD_ISSUANCE_CHECK_DIGIT = 467,
|
|
846
|
+
/** Century of birth. */
|
|
847
|
+
CENTURY_DATE_OF_BIRTH = 468,
|
|
848
|
+
/** DL class code A3 valid from. */
|
|
849
|
+
DL_CLASSCODE_A3_FROM = 469,
|
|
850
|
+
/** DL class code A3 valid to. */
|
|
851
|
+
DL_CLASSCODE_A3_TO = 470,
|
|
852
|
+
/** DL class code A3 valid notes. */
|
|
853
|
+
DL_CLASSCODE_A3_NOTES = 471,
|
|
854
|
+
/** DL class code C2 valid from. */
|
|
855
|
+
DL_CLASSCODE_C2_FROM = 472,
|
|
856
|
+
/** DL class code C2 valid to. */
|
|
857
|
+
DL_CLASSCODE_C2_TO = 473,
|
|
858
|
+
/** DL class code C2 valid notes. */
|
|
859
|
+
DL_CLASSCODE_C2_NOTES = 474,
|
|
860
|
+
/** DL class code B2 valid from. */
|
|
861
|
+
DL_CLASSCODE_B2_FROM = 475,
|
|
862
|
+
/** DL class code B2 valid to. */
|
|
863
|
+
DL_CLASSCODE_B2_TO = 476,
|
|
864
|
+
/** DL class code B2 valid notes. */
|
|
865
|
+
DL_CLASSCODE_B2_NOTES = 477,
|
|
866
|
+
/** DL class code D2 valid from. */
|
|
867
|
+
DL_CLASSCODE_D2_FROM = 478,
|
|
868
|
+
/** DL class code B2 valid to. */
|
|
869
|
+
DL_CLASSCODE_D2_TO = 479,
|
|
870
|
+
/** DL class code B2 valid notes. */
|
|
871
|
+
DL_CLASSCODE_D2_NOTES = 480,
|
|
872
|
+
/** DL class code B2E valid from. */
|
|
873
|
+
DL_CLASSCODE_B2E_FROM = 481,
|
|
874
|
+
/** DL class code B2E valid to. */
|
|
875
|
+
DL_CLASSCODE_B2E_TO = 482,
|
|
876
|
+
/** DL class code B2E valid notes. */
|
|
877
|
+
DL_CLASSCODE_B2E_NOTES = 483,
|
|
878
|
+
/** DL class code G valid from. */
|
|
879
|
+
DL_CLASSCODE_G_FROM = 484,
|
|
880
|
+
/** DL class code G valid to. */
|
|
881
|
+
DL_CLASSCODE_G_TO = 485,
|
|
882
|
+
/** DL class code G valid notes. */
|
|
883
|
+
DL_CLASSCODE_G_NOTES = 486,
|
|
884
|
+
/** DL class code J valid from. */
|
|
885
|
+
DL_CLASSCODE_J_FROM = 487,
|
|
886
|
+
/** DL class code J valid to. */
|
|
887
|
+
DL_CLASSCODE_J_TO = 488,
|
|
888
|
+
/** DL class code J valid notes. */
|
|
889
|
+
DL_CLASSCODE_J_NOTES = 489,
|
|
890
|
+
/** DL class code LK valid from. */
|
|
891
|
+
DL_CLASSCODE_LK_FROM = 490,
|
|
892
|
+
/** DL class code LK valid to. */
|
|
893
|
+
DL_CLASSCODE_LK_TO = 491,
|
|
894
|
+
/** DL class code LK valid notes. */
|
|
895
|
+
DLC_LASSCODE_LC_NOTES = 492,
|
|
896
|
+
/** Bank card number. */
|
|
897
|
+
BANKCARDNUMBER = 493,
|
|
898
|
+
/** Bank card validity. */
|
|
899
|
+
BANKCARDVALIDTHRU = 494,
|
|
900
|
+
/** Tax number. */
|
|
901
|
+
TAX_NUMBER = 495,
|
|
902
|
+
/** Health insurance number. */
|
|
903
|
+
HEALTH_NUMBER = 496,
|
|
904
|
+
/** Grandfather's name. */
|
|
905
|
+
GRANDFATHERNAME = 497,
|
|
906
|
+
/** Selectee indicator. */
|
|
907
|
+
SELECTEE_INDICATOR = 498,
|
|
908
|
+
/** Mother's surname. */
|
|
909
|
+
MOTHER_SURNAME = 499,
|
|
910
|
+
/** Mother's given name. */
|
|
911
|
+
MOTHER_GIVENNAME = 500,
|
|
912
|
+
/** Father's surname. */
|
|
913
|
+
FATHER_SURNAME = 501,
|
|
914
|
+
/** Father's given name. */
|
|
915
|
+
FATHER_GIVENNAME = 502,
|
|
916
|
+
/** Mother's date of birth. */
|
|
917
|
+
MOTHER_DATEOFBIRTH = 503,
|
|
918
|
+
/** Father's date of birth. */
|
|
919
|
+
FATHER_DATEOFBIRTH = 504,
|
|
920
|
+
/** Mother's personal number. */
|
|
921
|
+
MOTHER_PERSONALNUMBER = 505,
|
|
922
|
+
/** Father's personal number. */
|
|
923
|
+
FATHER_PERSONALNUMBER = 506,
|
|
924
|
+
/** Mother's place of birth. */
|
|
925
|
+
MOTHER_PLACEOFBIRTH = 507,
|
|
926
|
+
/** Father's place of birth. */
|
|
927
|
+
FATHER_PLACEOFBIRTH = 508,
|
|
928
|
+
/** Mother's country of birth. */
|
|
929
|
+
MOTHER_COUNTRYOFBIRTH = 509,
|
|
930
|
+
/** Father's country of birth. */
|
|
931
|
+
FATHER_COUNTRYOFBIRTH = 510,
|
|
932
|
+
/** Date of first renewal. */
|
|
933
|
+
DATE_FIRST_RENEWAL = 511,
|
|
934
|
+
/** Date of second renewal. */
|
|
935
|
+
DATE_SECOND_RENEWAL = 512,
|
|
936
|
+
/** Place of examination. */
|
|
937
|
+
PLACE_OF_EXAMINATION = 513,
|
|
938
|
+
/** Application number. */
|
|
939
|
+
APPLICATION_NUMBER = 514,
|
|
940
|
+
/** Voucher number. */
|
|
941
|
+
VOUCHER_NUMBER = 515,
|
|
942
|
+
/** Authorization number. */
|
|
943
|
+
AUTHORIZATION_NUMBER = 516,
|
|
944
|
+
/** Faculty. */
|
|
945
|
+
FACULTY = 517,
|
|
946
|
+
/** Form of education. */
|
|
947
|
+
FORM_OF_EDUCATION = 518,
|
|
948
|
+
/** DNI number. */
|
|
949
|
+
DNI_NUMBER = 519,
|
|
950
|
+
/** Retirement number. */
|
|
951
|
+
RETIREMENT_NUMBER = 520,
|
|
952
|
+
/** Professional Id number. */
|
|
953
|
+
PROFESSIONAL_ID_NUMBER = 521,
|
|
954
|
+
/** Age at issue. */
|
|
955
|
+
AGE_AT_ISSUE = 522,
|
|
956
|
+
/** Years since issue. */
|
|
957
|
+
YEARS_SINCE_ISSUE = 523,
|
|
958
|
+
/** DL class code BTP valid from. */
|
|
959
|
+
DLCLASSCODE_BTP_FROM = 524,
|
|
960
|
+
/** DL class code BTP valid notes. */
|
|
961
|
+
DLCLASSCODE_BTP_NOTES = 525,
|
|
962
|
+
/** DL class code BTP valid to. */
|
|
963
|
+
DLCLASSCODE_BTP_TO = 526,
|
|
964
|
+
/** DL class code C3 valid from. */
|
|
965
|
+
DLCLASSCODE_C3_FROM = 527,
|
|
966
|
+
/** DL class code C3 valid notes. */
|
|
967
|
+
DLCLASSCODE_C3_NOTES = 528,
|
|
968
|
+
/** DL class code C3 valid to. */
|
|
969
|
+
DLCLASSCODE_C3_TO = 529,
|
|
970
|
+
/** DL class code E valid from. */
|
|
971
|
+
DLCLASSCODE_E_FROM = 530,
|
|
972
|
+
/** DL class code E valid notes. */
|
|
973
|
+
DLCLASSCODE_E_NOTES = 531,
|
|
974
|
+
/** DL class code E valid to. */
|
|
975
|
+
DLCLASSCODE_E_TO = 532,
|
|
976
|
+
/** DL class code F valid from. */
|
|
977
|
+
DLCLASSCODE_F_FROM = 533,
|
|
978
|
+
/** DL class code F valid notes. */
|
|
979
|
+
DLCLASSCODE_F_NOTES = 534,
|
|
980
|
+
/** DL class code F valid to. */
|
|
981
|
+
DLCLASSCODE_F_TO = 535,
|
|
982
|
+
/** DL class code FA valid from. */
|
|
983
|
+
DLCLASSCODE_FA_FROM = 536,
|
|
984
|
+
/** DL class code FA valid notes. */
|
|
985
|
+
DLCLASSCODE_FA_NOTES = 537,
|
|
986
|
+
/** DL class code FA valid to. */
|
|
987
|
+
DLCLASSCODE_FA_TO = 538,
|
|
988
|
+
/** DL class code FA1 valid from. */
|
|
989
|
+
DLCLASSCODE_FA1_FROM = 539,
|
|
990
|
+
/** DL class code FA1 valid notes. */
|
|
991
|
+
DLCLASSCODE_FA1_NOTES = 540,
|
|
992
|
+
/** DL class code FA1 valid to. */
|
|
993
|
+
DLCLASSCODE_FA1_TO = 541,
|
|
994
|
+
/** DL class code FB valid from. */
|
|
995
|
+
DLCLASSCODE_FB_FROM = 542,
|
|
996
|
+
/** DL class code FB valid notes. */
|
|
997
|
+
DLCLASSCODE_FB_NOTES = 543,
|
|
998
|
+
/** DL class code FB valid to. */
|
|
999
|
+
DLCLASSCODE_FB_TO = 544,
|
|
1000
|
+
/** DL class code G1 valid from. */
|
|
1001
|
+
DLCLASSCODE_G1_FROM = 545,
|
|
1002
|
+
/** DL class code G1 valid notes. */
|
|
1003
|
+
DLCLASSCODE_G1_NOTES = 546,
|
|
1004
|
+
/** DL class code G1 valid to. */
|
|
1005
|
+
DLCLASSCODE_G1_TO = 547,
|
|
1006
|
+
/** DL class code H valid from. */
|
|
1007
|
+
DLCLASSCODE_H_FROM = 548,
|
|
1008
|
+
/** DL class code H valid notes. */
|
|
1009
|
+
DLCLASSCODE_H_NOTES = 549,
|
|
1010
|
+
/** DL class code H valid to. */
|
|
1011
|
+
DLCLASSCODE_H_TO = 550,
|
|
1012
|
+
/** DL class code I valid from. */
|
|
1013
|
+
DLCLASSCODE_I_FROM = 551,
|
|
1014
|
+
/** DL class code I valid notes. */
|
|
1015
|
+
DLCLASSCODE_I_NOTES = 552,
|
|
1016
|
+
/** DL class code I valid to. */
|
|
1017
|
+
DLCLASSCODE_I_TO = 553,
|
|
1018
|
+
/** DL class code K valid from. */
|
|
1019
|
+
DLCLASSCODE_K_FROM = 554,
|
|
1020
|
+
/** DL class code K valid notes. */
|
|
1021
|
+
DLCLASSCODE_K_NOTES = 555,
|
|
1022
|
+
/** DL class code K valid to. */
|
|
1023
|
+
DLCLASSCODE_K_TO = 556,
|
|
1024
|
+
/** DL class code LK valid from. */
|
|
1025
|
+
DLCLASSCODE_LK_FROM = 557,
|
|
1026
|
+
/** DL class code LK valid notes. */
|
|
1027
|
+
DLCLASSCODE_LK_NOTES = 558,
|
|
1028
|
+
/** DL class code LK valid to. */
|
|
1029
|
+
DLCLASSCODE_LK_TO = 559,
|
|
1030
|
+
/** DL class code N valid from. */
|
|
1031
|
+
DLCLASSCODE_N_FROM = 560,
|
|
1032
|
+
/** DL class code N valid notes. */
|
|
1033
|
+
DLCLASSCODE_N_NOTES = 561,
|
|
1034
|
+
/** DL class code N valid to. */
|
|
1035
|
+
DLCLASSCODE_N_TO = 562,
|
|
1036
|
+
/** DL class code S valid from. */
|
|
1037
|
+
DLCLASSCODE_S_FROM = 563,
|
|
1038
|
+
/** DL class code S valid notes. */
|
|
1039
|
+
DLCLASSCODE_S_NOTES = 564,
|
|
1040
|
+
/** DL class code S valid to. */
|
|
1041
|
+
DLCLASSCODE_S_TO = 565,
|
|
1042
|
+
/** DL class code TB valid from. */
|
|
1043
|
+
DLCLASSCODE_TB_FROM = 566,
|
|
1044
|
+
/** DL class code TB valid notes. */
|
|
1045
|
+
DLCLASSCODE_TB_NOTES = 567,
|
|
1046
|
+
/** DL class code TB valid to. */
|
|
1047
|
+
DLCLASSCODE_TB_TO = 568,
|
|
1048
|
+
/** DL class code TM valid from. */
|
|
1049
|
+
DLCLASSCODE_TM_FROM = 569,
|
|
1050
|
+
/** DL class code TM valid notes. */
|
|
1051
|
+
DLCLASSCODE_TM_NOTES = 570,
|
|
1052
|
+
/** DL class code TM valid to. */
|
|
1053
|
+
DLCLASSCODE_TM_TO = 571,
|
|
1054
|
+
/** DL class code TR valid from. */
|
|
1055
|
+
DLCLASSCODE_TR_FROM = 572,
|
|
1056
|
+
/** DL class code TR valid notes. */
|
|
1057
|
+
DLCLASSCODE_TR_NOTES = 573,
|
|
1058
|
+
/** DL class code TR valid to. */
|
|
1059
|
+
DLCLASSCODE_TR_TO = 574,
|
|
1060
|
+
/** DL class code TV valid from. */
|
|
1061
|
+
DLCLASSCODE_TV_FROM = 575,
|
|
1062
|
+
/** DL class code TV valid notes. */
|
|
1063
|
+
DLCLASSCODE_TV_NOTES = 576,
|
|
1064
|
+
/** DL class code TV valid to. */
|
|
1065
|
+
DLCLASSCODE_TV_TO = 577,
|
|
1066
|
+
/** DL class code V valid from. */
|
|
1067
|
+
DLCLASSCODE_V_FROM = 578,
|
|
1068
|
+
/** DL class code V valid notes. */
|
|
1069
|
+
DLCLASSCODE_V_NOTES = 579,
|
|
1070
|
+
/** DL class code V valid to. */
|
|
1071
|
+
DLCLASSCODE_V_TO = 580,
|
|
1072
|
+
/** DL class code W valid from. */
|
|
1073
|
+
DLCLASSCODE_W_FROM = 581,
|
|
1074
|
+
/** DL class code W valid notes. */
|
|
1075
|
+
DLCLASSCODE_W_NOTES = 582,
|
|
1076
|
+
/** DL class code W valid to. */
|
|
1077
|
+
DLCLASSCODE_W_TO = 583,
|
|
1078
|
+
/** Uniform Resource Locator. */
|
|
1079
|
+
URL = 584,
|
|
1080
|
+
/** Caliber. */
|
|
1081
|
+
CALIBER = 585,
|
|
1082
|
+
/** Model. */
|
|
1083
|
+
MODEL = 586,
|
|
1084
|
+
/** Make. */
|
|
1085
|
+
MAKE = 587,
|
|
1086
|
+
/** Number of cylinders. */
|
|
1087
|
+
NUMBER_OF_CYLINDERS = 588,
|
|
1088
|
+
/** Surname of husband after registration. */
|
|
1089
|
+
SURNAME_OF_HUSBAND_AFTER_REGISTRATION = 589,
|
|
1090
|
+
/** Surname of wife after registration. */
|
|
1091
|
+
SURNAME_OF_WIFE_AFTER_REGISTRATION = 590,
|
|
1092
|
+
/** Wife's date of birth. */
|
|
1093
|
+
DATE_OF_BIRTH_OF_WIFE = 591,
|
|
1094
|
+
/** Husband's date of birth. */
|
|
1095
|
+
DATE_OF_BIRTH_OF_HUSBAND = 592,
|
|
1096
|
+
/** Citizenship of the first person. */
|
|
1097
|
+
CITIZENSHIP_OF_FIRST_PERSON = 593,
|
|
1098
|
+
/** Citizenship of the second person. */
|
|
1099
|
+
CITIZENSHIP_OF_SECOND_PERSON = 594,
|
|
1100
|
+
/** Card Security Code. */
|
|
1101
|
+
CVV = 595,
|
|
1102
|
+
/** Date of insurance expiry. */
|
|
1103
|
+
DATE_OF_INSURANCE_EXPIRY = 596,
|
|
1104
|
+
/** Mortgage by. */
|
|
1105
|
+
MORTGAGE_BY = 597,
|
|
1106
|
+
/** Old document number. */
|
|
1107
|
+
OLD_DOCUMENT_NUMBER = 598,
|
|
1108
|
+
/** Old date of issue. */
|
|
1109
|
+
OLD_DATE_OF_ISSUE = 599,
|
|
1110
|
+
/** Old place of issue. */
|
|
1111
|
+
OLD_PLACE_OF_ISSUE = 600,
|
|
1112
|
+
/** DL category LR valid from. */
|
|
1113
|
+
DLCLASSCODE_LR_FROM = 601,
|
|
1114
|
+
/** DL category LR valid to. */
|
|
1115
|
+
DLCLASSCODE_LR_TO = 602,
|
|
1116
|
+
/** DL category LR valid notes. */
|
|
1117
|
+
DLCLASSCODE_LR_NOTES = 603,
|
|
1118
|
+
/** DL category MR valid from. */
|
|
1119
|
+
DLCLASSCODE_MR_FROM = 604,
|
|
1120
|
+
/** DL category MR valid to. */
|
|
1121
|
+
DLCLASSCODE_MR_TO = 605,
|
|
1122
|
+
/** DL category MR valid notes. */
|
|
1123
|
+
DLCLASSCODE_MR_NOTES = 606,
|
|
1124
|
+
/** DL category HR valid from. */
|
|
1125
|
+
DLCLASSCODE_HR_FROM = 607,
|
|
1126
|
+
/** DL category HR valid to. */
|
|
1127
|
+
DLCLASSCODE_HR_TO = 608,
|
|
1128
|
+
/** DL category HR valid notes. */
|
|
1129
|
+
DLCLASSCODE_HR_NOTES = 609,
|
|
1130
|
+
/** DL category HC valid from. */
|
|
1131
|
+
DLCLASSCODE_HC_FROM = 610,
|
|
1132
|
+
/** DL category HC valid to. */
|
|
1133
|
+
DLCLASSCODE_HC_TO = 611,
|
|
1134
|
+
/** DL category HC valid notes. */
|
|
1135
|
+
DLCLASSCODE_HC_NOTES = 612,
|
|
1136
|
+
/** DL category MC valid from. */
|
|
1137
|
+
DLCLASSCODE_MC_FROM = 613,
|
|
1138
|
+
/** DL category MC valid to. */
|
|
1139
|
+
DLCLASSCODE_MC_TO = 614,
|
|
1140
|
+
/** DL category MC valid notes. */
|
|
1141
|
+
DLCLASSCODE_MC_NOTES = 615,
|
|
1142
|
+
/** DL category RE valid from. */
|
|
1143
|
+
DLCLASSCODE_RE_FROM = 616,
|
|
1144
|
+
/** DL category RE valid to. */
|
|
1145
|
+
DLCLASSCODE_RE_TO = 617,
|
|
1146
|
+
/** DL category RE valid notes. */
|
|
1147
|
+
DLCLASSCODE_RE_NOTES = 618,
|
|
1148
|
+
/** DL category R valid from. */
|
|
1149
|
+
DLCLASSCODE_R_FROM = 619,
|
|
1150
|
+
/** DL category R valid to. */
|
|
1151
|
+
DLCLASSCODE_R_TO = 620,
|
|
1152
|
+
/** DL category R valid notes. */
|
|
1153
|
+
DLCLASSCODE_R_NOTES = 621,
|
|
1154
|
+
/** DL category CA valid from. */
|
|
1155
|
+
DLCLASSCODE_CA_FROM = 622,
|
|
1156
|
+
/** DL category CA valid to. */
|
|
1157
|
+
DLCLASSCODE_CA_TO = 623,
|
|
1158
|
+
/** DL category CA valid notes. */
|
|
1159
|
+
DLCLASSCODE_CA_NOTES = 624,
|
|
1160
|
+
/** Citizenship status. */
|
|
1161
|
+
CITIZENSHIP_STATUS = 625,
|
|
1162
|
+
/** Start date of military service. */
|
|
1163
|
+
MILITARY_SERVICE_FROM = 626,
|
|
1164
|
+
/** End date of military service. */
|
|
1165
|
+
MILITARY_SERVICE_TO = 627,
|
|
1166
|
+
/** DL category NT valid notes. */
|
|
1167
|
+
DLCLASSCODE_NT_FROM = 628,
|
|
1168
|
+
/** DL category NT valid to. */
|
|
1169
|
+
DLCLASSCODE_NT_TO = 629,
|
|
1170
|
+
/** DL category NT valid notes. */
|
|
1171
|
+
DLCLASSCODE_NT_NOTES = 630,
|
|
1172
|
+
/** DL category TN valid from. */
|
|
1173
|
+
DLCLASSCODE_TN_FROM = 631,
|
|
1174
|
+
/** DL category TN valid to. */
|
|
1175
|
+
DLCLASSCODE_TN_TO = 632,
|
|
1176
|
+
/** DL category TN valid notes. */
|
|
1177
|
+
DLCLASSCODE_TN_NOTES = 633,
|
|
1178
|
+
/** DL category D3 valid from. */
|
|
1179
|
+
DLCLASSCODE_D3_FROM = 634,
|
|
1180
|
+
/** DL category D3 valid to. */
|
|
1181
|
+
DLCLASSCODE_D3_TO = 635,
|
|
1182
|
+
/** DL category D3 valid notes. */
|
|
1183
|
+
DLCLASSCODE_D3_NOTES = 636,
|
|
1184
|
+
/** Alternative date of expiry. */
|
|
1185
|
+
ALT_DATE_OF_EXPIRY = 637,
|
|
1186
|
+
/** DL category CD valid from. */
|
|
1187
|
+
DLCLASSCODE_CD_FROM = 638,
|
|
1188
|
+
/** DL category CD valid to. */
|
|
1189
|
+
DLCLASSCODE_CD_TO = 639,
|
|
1190
|
+
/** DL category CD valid notes. */
|
|
1191
|
+
DLCLASSCODE_CD_NOTES = 640,
|
|
1192
|
+
/** End date of payment period. */
|
|
1193
|
+
PAYMENT_PERIOD_TO = 643,
|
|
1194
|
+
/** Start date of payment period. */
|
|
1195
|
+
PAYMENT_PERIOD_FROM = 642,
|
|
1196
|
+
/** Issuer identification number (IIN). */
|
|
1197
|
+
ISSUER_IDENTIFICATION_NUMBER = 641,
|
|
1198
|
+
/** Vaccination certificate identifier. */
|
|
1199
|
+
VACCINATION_CERTIFICATE_IDENTIFIER = 644,
|
|
1200
|
+
/** First name. */
|
|
1201
|
+
FIRST_NAME = 645,
|
|
1202
|
+
/** Date of arrival. */
|
|
1203
|
+
DATE_OF_ARRIVAL = 646,
|
|
1204
|
+
/** Second name. */
|
|
1205
|
+
SECOND_NAME = 647,
|
|
1206
|
+
/** Third name. */
|
|
1207
|
+
THIRD_NAME = 648,
|
|
1208
|
+
/** Fourth name. */
|
|
1209
|
+
FOURTH_NAME = 649,
|
|
1210
|
+
/** Last name. */
|
|
1211
|
+
LAST_NAME = 650,
|
|
1212
|
+
/** DL class code RM valid from. */
|
|
1213
|
+
DLCLASSCODE_RM_FROM = 651,
|
|
1214
|
+
/** DL class code RM notes. */
|
|
1215
|
+
DLCLASSCODE_RM_NOTES = 652,
|
|
1216
|
+
/** DL class code RM valid to. */
|
|
1217
|
+
DLCLASSCODE_RM_TO = 653,
|
|
1218
|
+
/** DL class code PW valid from. */
|
|
1219
|
+
DLCLASSCODE_PW_FROM = 654,
|
|
1220
|
+
/** DL class code PW notes. */
|
|
1221
|
+
DLCLASSCODE_PW_NOTES = 655,
|
|
1222
|
+
/** DL class code PW valid to. */
|
|
1223
|
+
DLCLASSCODE_PW_TO = 656,
|
|
1224
|
+
/** DL class code EB valid from. */
|
|
1225
|
+
DLCLASSCODE_EB_FROM = 657,
|
|
1226
|
+
/** DL class code EB notes. */
|
|
1227
|
+
DLCLASSCODE_EB_NOTES = 658,
|
|
1228
|
+
/** DL class code EB valid to. */
|
|
1229
|
+
DLCLASSCODE_EB_TO = 659,
|
|
1230
|
+
/** DL class code EC valid from. */
|
|
1231
|
+
DLCLASSCODE_EC_FROM = 660,
|
|
1232
|
+
/** DL class code EC notes. */
|
|
1233
|
+
DLCLASSCODE_EC_NOTES = 661,
|
|
1234
|
+
/** DL class code EC valid to. */
|
|
1235
|
+
DLCLASSCODE_EC_TO = 662,
|
|
1236
|
+
/** DL class code EC1 valid from. */
|
|
1237
|
+
DLCLASSCODE_EC1_FROM = 663,
|
|
1238
|
+
/** DL class code EC1 notes. */
|
|
1239
|
+
DLCLASSCODE_EC1_NOTES = 664,
|
|
1240
|
+
/** DL class code EC1 valid to. */
|
|
1241
|
+
DLCLASSCODE_EC1_TO = 665,
|
|
1242
|
+
/** Place of birth city. */
|
|
1243
|
+
PLACE_OF_BIRTH_CITY = 666,
|
|
1244
|
+
/** Year of birth. */
|
|
1245
|
+
YEAR_OF_BIRTH = 667,
|
|
1246
|
+
/** Year of expiry. */
|
|
1247
|
+
YEAR_OF_EXPIRY = 668,
|
|
1248
|
+
/** Grandfather name maternal. */
|
|
1249
|
+
GRANDFATHER_NAME_MATERNAL = 669,
|
|
1250
|
+
/** First surname. */
|
|
1251
|
+
FIRST_SURNAME = 670,
|
|
1252
|
+
/** Month of birth. */
|
|
1253
|
+
MONTH_OF_BIRTH = 671,
|
|
1254
|
+
/** Address floor number. */
|
|
1255
|
+
ADDRESS_FLOOR_NUMBER = 672,
|
|
1256
|
+
/** Address entrance. */
|
|
1257
|
+
ADDRESS_ENTRANCE = 673,
|
|
1258
|
+
/** Address block number. */
|
|
1259
|
+
ADDRESS_BLOCK_NUMBER = 674,
|
|
1260
|
+
/** Address street number. */
|
|
1261
|
+
ADDRESS_STREET_NUMBER = 675,
|
|
1262
|
+
/** Address street type. */
|
|
1263
|
+
ADDRESS_STREET_TYPE = 676,
|
|
1264
|
+
/** Address city sector. */
|
|
1265
|
+
ADDRESS_CITY_SECTOR = 677,
|
|
1266
|
+
/** Address county type. */
|
|
1267
|
+
ADDRESS_COUNTY_TYPE = 678,
|
|
1268
|
+
/** Address city type. */
|
|
1269
|
+
ADDRESS_CITY_TYPE = 679,
|
|
1270
|
+
/** Address building type. */
|
|
1271
|
+
ADDRESS_BUILDING_TYPE = 680,
|
|
1272
|
+
/** Date of retirement. */
|
|
1273
|
+
DATE_OF_RETIREMENT = 681,
|
|
1274
|
+
/** Document status. */
|
|
1275
|
+
DOCUMENT_STATUS = 682,
|
|
1276
|
+
/** Signature. */
|
|
1277
|
+
SIGNATURE = 683,
|
|
1278
|
+
/** Unique certificate identifier. */
|
|
1279
|
+
UNIQUE_CERTIFICATE_IDENTIFIER = 684,
|
|
1280
|
+
/** Email. */
|
|
1281
|
+
EMAIL = 685,
|
|
1282
|
+
/** Date of specimen collection. */
|
|
1283
|
+
DATE_OF_SPECIMEN_COLLECTION = 686,
|
|
1284
|
+
/** Type of testing. */
|
|
1285
|
+
TYPE_OF_TESTING = 687,
|
|
1286
|
+
/** Result of testing. */
|
|
1287
|
+
RESULT_OF_TESTING = 688,
|
|
1288
|
+
/** Method of testing. */
|
|
1289
|
+
METHOD_OF_TESTING = 689,
|
|
1290
|
+
/** Digital travel authorization number. */
|
|
1291
|
+
DIGITAL_TRAVEL_AUTHORIZATION_NUMBER = 690,
|
|
1292
|
+
/** Date of first positive test result. */
|
|
1293
|
+
DATE_OF_FIRST_POSITIVE_TEST_RESULT = 691,
|
|
1294
|
+
/** EF card access. */
|
|
1295
|
+
EF_CARD_ACCESS = 692,
|
|
1296
|
+
/** Short flight number. */
|
|
1297
|
+
SHORT_FLIGHT_NUMBER = 693,
|
|
1298
|
+
/** Airline code. */
|
|
1299
|
+
AIRLINE_CODE = 694,
|
|
1300
|
+
/** MVC agency. */
|
|
1301
|
+
MVC_AGENCY = 695,
|
|
1302
|
+
/** Issuing state code alpha 2. */
|
|
1303
|
+
ISSUING_STATE_CODE_ALPHA_2 = 696,
|
|
1304
|
+
/** Nationality code alpha 2. */
|
|
1305
|
+
NATIONALITY_CODE_ALPHA_2 = 697
|
|
1306
|
+
}
|
|
1307
|
+
|
|
1308
|
+
export declare namespace FieldType {
|
|
1309
|
+
function getTranslation(value: FieldType): Promise<string>;
|
|
1310
|
+
}
|