@regulaforensics/vp-frontend-face-components 1.4.0 → 2.0.1

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.
Files changed (214) hide show
  1. package/README.md +60 -23
  2. package/dist/main.js +1 -1
  3. package/dist/main.js.LICENSE.txt +28 -19
  4. package/lib/common/Button.d.ts +2 -2
  5. package/lib/common/Icon.d.ts +58 -1
  6. package/lib/common/Message.d.ts +5 -4
  7. package/lib/common/NoGlareIconLivenessDetection.d.ts +5 -0
  8. package/lib/common/NoSmilingIconLivenessDetection.d.ts +5 -0
  9. package/lib/common/PortraitOrientationOnlyIcon.d.ts +6 -0
  10. package/lib/common/RegulaLogoLivenessDetection.d.ts +5 -0
  11. package/lib/components/ButtonFaceLiveness.d.ts +7 -0
  12. package/lib/components/CameraCapture.d.ts +9 -0
  13. package/lib/components/CameraSnapshot.d.ts +2 -0
  14. package/lib/components/CameraSnapshotFileCapture.d.ts +10 -0
  15. package/lib/components/DocumentCapture.d.ts +11 -0
  16. package/lib/components/DocumentContainer.d.ts +11 -0
  17. package/lib/components/DocumentReader.d.ts +2 -0
  18. package/lib/components/DocumentReaderFileCapture.d.ts +12 -0
  19. package/lib/components/DocumentReaderLayout.d.ts +22 -0
  20. package/lib/components/DocumentReaderStartScreen.d.ts +10 -0
  21. package/lib/components/ErrorBoundary.d.ts +10 -9
  22. package/lib/components/FaceCapture.d.ts +17 -9
  23. package/lib/components/FaceFullScreenOverlay.d.ts +2 -3
  24. package/lib/components/FaceHintAnimaition.d.ts +16 -0
  25. package/lib/components/FaceLayout.d.ts +16 -12
  26. package/lib/components/InfoScreen.d.ts +2 -1
  27. package/lib/components/InfoScreenFaceLiveness.d.ts +12 -0
  28. package/lib/components/InstructionVideoScreen.d.ts +9 -0
  29. package/lib/components/ProcessScreenFaceLiveness.d.ts +6 -0
  30. package/lib/components/RetryScreenFaceLiveness.d.ts +7 -0
  31. package/lib/components/SectorAnimationSvg.d.ts +11 -0
  32. package/lib/components/WebCamera.d.ts +8 -9
  33. package/lib/constants.d.ts +471 -169
  34. package/lib/contexts/DocumentAttributesContext.d.ts +25 -0
  35. package/lib/contexts/DocumentSDKContext.d.ts +8 -0
  36. package/lib/contexts/FaceAttributesContext.d.ts +14 -12
  37. package/lib/hoc/withDocumentAttributesContext.d.ts +4 -0
  38. package/lib/hoc/withDocumentSDKContext.d.ts +3 -0
  39. package/lib/hoc/withFaceAttributesContext.d.ts +2 -2
  40. package/lib/hoc/withLocalize.d.ts +6 -5
  41. package/lib/hooks/useDocumentReaderSeries.d.ts +19 -0
  42. package/lib/hooks/useDocumentReaderSingle.d.ts +14 -0
  43. package/lib/hooks/useFaceLiveness.d.ts +34 -26
  44. package/lib/hooks/useImageInputParam.d.ts +7 -0
  45. package/lib/hooks/useStateCallback.d.ts +1 -0
  46. package/lib/hooks/useStream.d.ts +3 -9
  47. package/lib/i18n/dictionaries/_dictionaries.d.ts +2212 -1988
  48. package/lib/index-document.d.ts +4 -0
  49. package/lib/media-resources/resourcesBase64.d.ts +7 -0
  50. package/lib/models/CameraModel.d.ts +2 -2
  51. package/lib/models/CustomError.d.ts +7 -0
  52. package/lib/models/DocReaderWebclient/ext/authenticity/authenticity.d.ts +32 -0
  53. package/lib/models/DocReaderWebclient/ext/authenticity/fiber.d.ts +7 -0
  54. package/lib/models/DocReaderWebclient/ext/authenticity/ident.d.ts +8 -0
  55. package/lib/models/DocReaderWebclient/ext/authenticity/image-ident.d.ts +7 -0
  56. package/lib/models/DocReaderWebclient/ext/authenticity/index.d.ts +5 -0
  57. package/lib/models/DocReaderWebclient/ext/authenticity/ocr-security-text.d.ts +7 -0
  58. package/lib/models/DocReaderWebclient/ext/authenticity/security-feature.d.ts +8 -0
  59. package/lib/models/DocReaderWebclient/ext/images.d.ts +16 -0
  60. package/lib/models/DocReaderWebclient/ext/index.d.ts +6 -0
  61. package/lib/models/DocReaderWebclient/ext/process-request-image.d.ts +5 -0
  62. package/lib/models/DocReaderWebclient/ext/process-request.d.ts +38 -0
  63. package/lib/models/DocReaderWebclient/ext/process-response.d.ts +36 -0
  64. package/lib/models/DocReaderWebclient/ext/text-field.d.ts +40 -0
  65. package/lib/models/DocReaderWebclient/ext/text.d.ts +14 -0
  66. package/lib/models/DocReaderWebclient/models/area-array.d.ts +32 -0
  67. package/lib/models/DocReaderWebclient/models/area-container.d.ts +38 -0
  68. package/lib/models/DocReaderWebclient/models/authenticity-check-list.d.ts +31 -0
  69. package/lib/models/DocReaderWebclient/models/authenticity-check-result-item.d.ts +38 -0
  70. package/lib/models/DocReaderWebclient/models/authenticity-check-result.d.ts +43 -0
  71. package/lib/models/DocReaderWebclient/models/authenticity-result-all-of.d.ts +25 -0
  72. package/lib/models/DocReaderWebclient/models/authenticity-result-type.d.ts +33 -0
  73. package/lib/models/DocReaderWebclient/models/authenticity-result.d.ts +18 -0
  74. package/lib/models/DocReaderWebclient/models/bc-pdf417-info.d.ts +54 -0
  75. package/lib/models/DocReaderWebclient/models/bc-roidetect.d.ts +42 -0
  76. package/lib/models/DocReaderWebclient/models/check-diagnose.d.ts +98 -0
  77. package/lib/models/DocReaderWebclient/models/check-result.d.ts +30 -0
  78. package/lib/models/DocReaderWebclient/models/chosen-document-type-result-all-of.d.ts +25 -0
  79. package/lib/models/DocReaderWebclient/models/chosen-document-type-result.d.ts +19 -0
  80. package/lib/models/DocReaderWebclient/models/chosen-document-type.d.ts +74 -0
  81. package/lib/models/DocReaderWebclient/models/container-list.d.ts +45 -0
  82. package/lib/models/DocReaderWebclient/models/critical.d.ts +26 -0
  83. package/lib/models/DocReaderWebclient/models/cross-source-value-comparison.d.ts +38 -0
  84. package/lib/models/DocReaderWebclient/models/data-module.d.ts +48 -0
  85. package/lib/models/DocReaderWebclient/models/details-optical.d.ts +67 -0
  86. package/lib/models/DocReaderWebclient/models/details-rfid.d.ts +61 -0
  87. package/lib/models/DocReaderWebclient/models/device-info.d.ts +54 -0
  88. package/lib/models/DocReaderWebclient/models/doc-bar-code-info-all-of.d.ts +31 -0
  89. package/lib/models/DocReaderWebclient/models/doc-bar-code-info.d.ts +19 -0
  90. package/lib/models/DocReaderWebclient/models/doc-visual-extended-field.d.ts +70 -0
  91. package/lib/models/DocReaderWebclient/models/doc-visual-extended-info.d.ts +25 -0
  92. package/lib/models/DocReaderWebclient/models/document-format.d.ts +70 -0
  93. package/lib/models/DocReaderWebclient/models/document-image-result-all-of.d.ts +25 -0
  94. package/lib/models/DocReaderWebclient/models/document-image-result.d.ts +18 -0
  95. package/lib/models/DocReaderWebclient/models/document-image.d.ts +24 -0
  96. package/lib/models/DocReaderWebclient/models/document-position-result-all-of.d.ts +25 -0
  97. package/lib/models/DocReaderWebclient/models/document-position-result.d.ts +19 -0
  98. package/lib/models/DocReaderWebclient/models/document-position.d.ts +80 -0
  99. package/lib/models/DocReaderWebclient/models/document-type-recognition-result.d.ts +30 -0
  100. package/lib/models/DocReaderWebclient/models/document-type.d.ts +246 -0
  101. package/lib/models/DocReaderWebclient/models/document-types-candidates-list.d.ts +32 -0
  102. package/lib/models/DocReaderWebclient/models/document-types-candidates-result-all-of.d.ts +25 -0
  103. package/lib/models/DocReaderWebclient/models/document-types-candidates-result.d.ts +18 -0
  104. package/lib/models/DocReaderWebclient/models/document-types-candidates.d.ts +32 -0
  105. package/lib/models/DocReaderWebclient/models/encrypted-rclresult-all-of.d.ts +24 -0
  106. package/lib/models/DocReaderWebclient/models/encrypted-rclresult.d.ts +18 -0
  107. package/lib/models/DocReaderWebclient/models/fdsidlist.d.ts +80 -0
  108. package/lib/models/DocReaderWebclient/models/fiber-result-all-of.d.ts +74 -0
  109. package/lib/models/DocReaderWebclient/models/fiber-result.d.ts +18 -0
  110. package/lib/models/DocReaderWebclient/models/graphic-field-type.d.ts +118 -0
  111. package/lib/models/DocReaderWebclient/models/graphic-field.d.ts +63 -0
  112. package/lib/models/DocReaderWebclient/models/graphic-fields-list.d.ts +25 -0
  113. package/lib/models/DocReaderWebclient/models/graphics-result-all-of.d.ts +25 -0
  114. package/lib/models/DocReaderWebclient/models/graphics-result.d.ts +19 -0
  115. package/lib/models/DocReaderWebclient/models/ident-result-all-of.d.ts +65 -0
  116. package/lib/models/DocReaderWebclient/models/ident-result.d.ts +18 -0
  117. package/lib/models/DocReaderWebclient/models/image-data.d.ts +24 -0
  118. package/lib/models/DocReaderWebclient/models/image-qa.d.ts +54 -0
  119. package/lib/models/DocReaderWebclient/models/image-quality-check-list.d.ts +32 -0
  120. package/lib/models/DocReaderWebclient/models/image-quality-check-type.d.ts +50 -0
  121. package/lib/models/DocReaderWebclient/models/image-quality-check.d.ts +64 -0
  122. package/lib/models/DocReaderWebclient/models/image-quality-result-all-of.d.ts +25 -0
  123. package/lib/models/DocReaderWebclient/models/image-quality-result.d.ts +18 -0
  124. package/lib/models/DocReaderWebclient/models/images-available-source.d.ts +31 -0
  125. package/lib/models/DocReaderWebclient/models/images-field-value.d.ts +70 -0
  126. package/lib/models/DocReaderWebclient/models/images-field.d.ts +38 -0
  127. package/lib/models/DocReaderWebclient/models/images-result-all-of.d.ts +25 -0
  128. package/lib/models/DocReaderWebclient/models/images-result.d.ts +18 -0
  129. package/lib/models/DocReaderWebclient/models/images.d.ts +32 -0
  130. package/lib/models/DocReaderWebclient/models/index.d.ts +123 -0
  131. package/lib/models/DocReaderWebclient/models/lcid.d.ts +582 -0
  132. package/lib/models/DocReaderWebclient/models/lexical-analysis-result-all-of.d.ts +25 -0
  133. package/lib/models/DocReaderWebclient/models/lexical-analysis-result.d.ts +19 -0
  134. package/lib/models/DocReaderWebclient/models/license-result-all-of.d.ts +24 -0
  135. package/lib/models/DocReaderWebclient/models/license-result.d.ts +18 -0
  136. package/lib/models/DocReaderWebclient/models/light.d.ts +34 -0
  137. package/lib/models/DocReaderWebclient/models/list-verified-fields.d.ts +25 -0
  138. package/lib/models/DocReaderWebclient/models/log-level.d.ts +23 -0
  139. package/lib/models/DocReaderWebclient/models/measure-system.d.ts +26 -0
  140. package/lib/models/DocReaderWebclient/models/mrzformat.d.ts +24 -0
  141. package/lib/models/DocReaderWebclient/models/ocrsecurity-text-result-all-of.d.ts +81 -0
  142. package/lib/models/DocReaderWebclient/models/ocrsecurity-text-result.d.ts +18 -0
  143. package/lib/models/DocReaderWebclient/models/one-candidate.d.ts +74 -0
  144. package/lib/models/DocReaderWebclient/models/original-symbol.d.ts +37 -0
  145. package/lib/models/DocReaderWebclient/models/parray-field.d.ts +81 -0
  146. package/lib/models/DocReaderWebclient/models/per-document-config.d.ts +30 -0
  147. package/lib/models/DocReaderWebclient/models/photo-ident-result-all-of.d.ts +76 -0
  148. package/lib/models/DocReaderWebclient/models/photo-ident-result.d.ts +18 -0
  149. package/lib/models/DocReaderWebclient/models/point-array.d.ts +25 -0
  150. package/lib/models/DocReaderWebclient/models/point.d.ts +30 -0
  151. package/lib/models/DocReaderWebclient/models/points-container.d.ts +31 -0
  152. package/lib/models/DocReaderWebclient/models/process-params.d.ts +254 -0
  153. package/lib/models/DocReaderWebclient/models/process-request-image.d.ts +38 -0
  154. package/lib/models/DocReaderWebclient/models/process-request.d.ts +60 -0
  155. package/lib/models/DocReaderWebclient/models/process-response.d.ts +66 -0
  156. package/lib/models/DocReaderWebclient/models/process-system-info.d.ts +30 -0
  157. package/lib/models/DocReaderWebclient/models/processing-status.d.ts +30 -0
  158. package/lib/models/DocReaderWebclient/models/raw-image-container-list.d.ts +31 -0
  159. package/lib/models/DocReaderWebclient/models/rectangle-coordinates.d.ts +42 -0
  160. package/lib/models/DocReaderWebclient/models/result-item.d.ts +48 -0
  161. package/lib/models/DocReaderWebclient/models/result.d.ts +98 -0
  162. package/lib/models/DocReaderWebclient/models/rfid-location.d.ts +30 -0
  163. package/lib/models/DocReaderWebclient/models/rfid-origin.d.ts +42 -0
  164. package/lib/models/DocReaderWebclient/models/scenario.d.ts +36 -0
  165. package/lib/models/DocReaderWebclient/models/security-feature-result-all-of.d.ts +59 -0
  166. package/lib/models/DocReaderWebclient/models/security-feature-result.d.ts +18 -0
  167. package/lib/models/DocReaderWebclient/models/security-feature-type.d.ts +49 -0
  168. package/lib/models/DocReaderWebclient/models/source-validity.d.ts +32 -0
  169. package/lib/models/DocReaderWebclient/models/source.d.ts +23 -0
  170. package/lib/models/DocReaderWebclient/models/status-result-all-of.d.ts +25 -0
  171. package/lib/models/DocReaderWebclient/models/status-result.d.ts +18 -0
  172. package/lib/models/DocReaderWebclient/models/status.d.ts +63 -0
  173. package/lib/models/DocReaderWebclient/models/string-recognition-result.d.ts +25 -0
  174. package/lib/models/DocReaderWebclient/models/symbol-candidate.d.ts +30 -0
  175. package/lib/models/DocReaderWebclient/models/symbol-recognition-result.d.ts +32 -0
  176. package/lib/models/DocReaderWebclient/models/text-available-source.d.ts +38 -0
  177. package/lib/models/DocReaderWebclient/models/text-data-result-all-of.d.ts +25 -0
  178. package/lib/models/DocReaderWebclient/models/text-data-result.d.ts +19 -0
  179. package/lib/models/DocReaderWebclient/models/text-field-type.d.ts +2386 -0
  180. package/lib/models/DocReaderWebclient/models/text-field-value.d.ts +70 -0
  181. package/lib/models/DocReaderWebclient/models/text-field.d.ts +84 -0
  182. package/lib/models/DocReaderWebclient/models/text-post-processing.d.ts +22 -0
  183. package/lib/models/DocReaderWebclient/models/text-result-all-of.d.ts +25 -0
  184. package/lib/models/DocReaderWebclient/models/text-result.d.ts +18 -0
  185. package/lib/models/DocReaderWebclient/models/text.d.ts +51 -0
  186. package/lib/models/DocReaderWebclient/models/transaction-info.d.ts +42 -0
  187. package/lib/models/DocReaderWebclient/models/verification-result.d.ts +38 -0
  188. package/lib/models/DocReaderWebclient/models/verified-field-map.d.ts +63 -0
  189. package/lib/models/DocReaderWebclient/models/visibility.d.ts +23 -0
  190. package/lib/services/DebugService.d.ts +4 -0
  191. package/lib/services/DeviceOrientationService.d.ts +18 -0
  192. package/lib/services/DocumentReaderProcessor.d.ts +43 -0
  193. package/lib/services/DocumentReaderService.d.ts +30 -32
  194. package/lib/services/FaceLivenessService.d.ts +43 -19
  195. package/lib/services/FaceService.d.ts +36 -8
  196. package/lib/services/StreamRecorderService.d.ts +24 -0
  197. package/lib/types.d.ts +261 -119
  198. package/lib/utils.d.ts +17 -52
  199. package/lib/web-components/CameraSnapshot.d.ts +14 -0
  200. package/lib/web-components/DocumentReader.d.ts +14 -0
  201. package/lib/web-components/FaceDetection.d.ts +3 -3
  202. package/lib/web-components/FaceLiveness.d.ts +7 -4
  203. package/lib/web-components/FullScreenContainer.d.ts +1 -1
  204. package/package.json +59 -62
  205. package/lib/common/InstructionIconFaceDetection.d.ts +0 -5
  206. package/lib/common/InstructionIconFaceLiveness.d.ts +0 -5
  207. package/lib/common/NoGlareIcon.d.ts +0 -5
  208. package/lib/common/NoSmilingIcon.d.ts +0 -5
  209. package/lib/components/InstructionScreen.d.ts +0 -9
  210. package/lib/components/RetryScreen.d.ts +0 -7
  211. package/lib/hooks/useDebounce.d.ts +0 -2
  212. package/lib/hooks/useInterval.d.ts +0 -3
  213. package/lib/services/WasmFeatureDetectService.d.ts +0 -4
  214. package/lib/web-components.d.ts +0 -47
@@ -0,0 +1,2386 @@
1
+ /**
2
+ * Regula Document Reader Web API
3
+ * Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
4
+ *
5
+ * The version of the OpenAPI document: 6.5.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @enum {string}
16
+ */
17
+ export declare enum TextFieldType {
18
+ /**
19
+ * Document class code
20
+ */
21
+ DOCUMENT_CLASS_CODE = 0,
22
+ /**
23
+ * Issuing country document code in accordance with the standard ISO 3166-1 (ICAO, document 9303)
24
+ */
25
+ ISSUING_STATE_CODE = 1,
26
+ /**
27
+ * Document number
28
+ */
29
+ DOCUMENT_NUMBER = 2,
30
+ /**
31
+ * Document expiration date
32
+ */
33
+ DATE_OF_EXPIRY = 3,
34
+ /**
35
+ * Date of issue
36
+ */
37
+ DATE_OF_ISSUE = 4,
38
+ /**
39
+ * Date of birth
40
+ */
41
+ DATE_OF_BIRTH = 5,
42
+ /**
43
+ * Place of birth
44
+ */
45
+ PLACE_OF_BIRTH = 6,
46
+ /**
47
+ * Personal number
48
+ */
49
+ PERSONAL_NUMBER = 7,
50
+ /**
51
+ * Surname
52
+ */
53
+ SURNAME = 8,
54
+ /**
55
+ * Given name (names)
56
+ */
57
+ GIVEN_NAME = 9,
58
+ /**
59
+ * Mother`s name
60
+ */
61
+ MOTHERS_NAME = 10,
62
+ /**
63
+ * Nationality
64
+ */
65
+ NATIONALITY = 11,
66
+ /**
67
+ * Sex
68
+ */
69
+ SEX = 12,
70
+ /**
71
+ * Height
72
+ */
73
+ HEIGHT = 13,
74
+ /**
75
+ * Weight
76
+ */
77
+ WEIGHT = 14,
78
+ /**
79
+ * Eyes color
80
+ */
81
+ EYES_COLOR = 15,
82
+ /**
83
+ * Hair color
84
+ */
85
+ HAIR_COLOR = 16,
86
+ /**
87
+ * Address
88
+ */
89
+ ADDRESS = 17,
90
+ /**
91
+ * Donation stamp
92
+ */
93
+ DONOR = 18,
94
+ /**
95
+ * Social security number
96
+ */
97
+ SOCIAL_SECURITY_NUMBER = 19,
98
+ /**
99
+ * Driving license class
100
+ */
101
+ DL_CLASS = 20,
102
+ /**
103
+ * Driving license permission code
104
+ */
105
+ DL_ENDORSED = 21,
106
+ /**
107
+ * Driving license restriction code
108
+ */
109
+ DL_RESTRICTION_CODE = 22,
110
+ /**
111
+ * Date when the owner of the document turns 21 years old
112
+ */
113
+ DL_UNDER_21_DATE = 23,
114
+ /**
115
+ * Document issuing authority
116
+ */
117
+ AUTHORITY = 24,
118
+ /**
119
+ * Full name
120
+ */
121
+ SURNAME_AND_GIVEN_NAMES = 25,
122
+ /**
123
+ * Nationality letter code according to standard ISO 3166-1 (ICAO doc 9303)
124
+ */
125
+ NATIONALITY_CODE = 26,
126
+ /**
127
+ * Passport number (used in visas)
128
+ */
129
+ PASSPORT_NUMBER = 27,
130
+ /**
131
+ * Invitation number (used in visas)
132
+ */
133
+ INVITATION_NUMBER = 28,
134
+ /**
135
+ * Visa ID
136
+ */
137
+ VISA_ID = 29,
138
+ /**
139
+ * Visa class
140
+ */
141
+ VISA_CLASS = 30,
142
+ /**
143
+ * Visa subclass
144
+ */
145
+ VISA_SUBCLASS = 31,
146
+ /**
147
+ * MRZ type
148
+ */
149
+ MRZ_TYPE = 35,
150
+ /**
151
+ * Optional data
152
+ */
153
+ OPTIONAL_DATA = 36,
154
+ /**
155
+ * Full name of the document class
156
+ */
157
+ DOCUMENT_CLASS_NAME = 37,
158
+ /**
159
+ * Full name of issuing state
160
+ */
161
+ ISSUING_STATE_NAME = 38,
162
+ /**
163
+ * Place of document issue
164
+ */
165
+ PLACE_OF_ISSUE = 39,
166
+ /**
167
+ * Document number checksum
168
+ */
169
+ DOCUMENT_NUMBER_CHECKSUM = 40,
170
+ /**
171
+ * Date of birth checksum
172
+ */
173
+ DATE_OF_BIRTH_CHECKSUM = 41,
174
+ /**
175
+ * Date of document expiration checksum
176
+ */
177
+ DATE_OF_EXPIRY_CHECKSUM = 42,
178
+ /**
179
+ * Personal number checksum
180
+ */
181
+ PERSONAL_NUMBER_CHECKSUM = 43,
182
+ /**
183
+ * Final checksum
184
+ */
185
+ FINAL_CHECKSUM = 44,
186
+ /**
187
+ * Passport number checksum (used in visas)
188
+ */
189
+ PASSPORT_NUMBER_CHECKSUM = 45,
190
+ /**
191
+ * Invitation number checksum (used in visas)
192
+ */
193
+ INVITATION_NUMBER_CHECKSUM = 46,
194
+ /**
195
+ * Visa identification number checksum
196
+ */
197
+ VISA_ID_CHECKSUM = 47,
198
+ /**
199
+ * Full name checksum
200
+ */
201
+ SURNAME_AND_GIVEN_NAME_CHECKSUM = 48,
202
+ /**
203
+ * Visa expiration date checksum
204
+ */
205
+ VISA_VALID_UNTIL_CHECKSUM = 49,
206
+ /**
207
+ * Other information
208
+ */
209
+ OTHER = 50,
210
+ /**
211
+ * MRZ strings
212
+ */
213
+ MRZ_STRINGS = 51,
214
+ /**
215
+ * Name suffix
216
+ */
217
+ NAME_SUFFIX = 52,
218
+ /**
219
+ * Name prefix
220
+ */
221
+ NAME_PREFIX = 53,
222
+ /**
223
+ * Checksum for the date of issue of the document
224
+ */
225
+ DATE_OF_ISSUE_CHECKSUM = 54,
226
+ /**
227
+ * Check digit for or the date of issue of the document
228
+ */
229
+ DATE_OF_ISSUE_CHECK_DIGIT = 55,
230
+ /**
231
+ * Document series
232
+ */
233
+ DOCUMENT_SERIES = 56,
234
+ /**
235
+ * Vehicle registration certificate number
236
+ */
237
+ REG_CERT_REG_NUMBER = 57,
238
+ /**
239
+ * Vehicle model
240
+ */
241
+ REG_CERT_CAR_MODEL = 58,
242
+ /**
243
+ * Vehicle color
244
+ */
245
+ REG_CERT_CAR_COLOR = 59,
246
+ /**
247
+ * Vehicle body number
248
+ */
249
+ REG_CERT_BODY_NUMBER = 60,
250
+ /**
251
+ * Vehicle type
252
+ */
253
+ REG_CERT_CAR_TYPE = 61,
254
+ /**
255
+ * Vehicle GVWR
256
+ */
257
+ REG_CERT_MAX_WEIGHT = 62,
258
+ /**
259
+ * Vehicle unladen weight
260
+ */
261
+ REG_CERT_WEIGHT = 63,
262
+ /**
263
+ * Address (region)
264
+ */
265
+ ADDRESS_AREA = 64,
266
+ /**
267
+ * Address (state)
268
+ */
269
+ ADDRESS_STATE = 65,
270
+ /**
271
+ * Address (building number)
272
+ */
273
+ ADDRESS_BUILDING = 66,
274
+ /**
275
+ * Address (house number)
276
+ */
277
+ ADDRESS_HOUSE = 67,
278
+ /**
279
+ * Address (flat number)
280
+ */
281
+ ADDRESS_FLAT = 68,
282
+ /**
283
+ * Place of registration
284
+ */
285
+ PLACE_OF_REGISTRATION = 69,
286
+ /**
287
+ * Date of registration
288
+ */
289
+ DATE_OF_REGISTRATION = 70,
290
+ /**
291
+ * Start date of residence
292
+ */
293
+ RESIDENT_FROM = 71,
294
+ /**
295
+ * End date of residence
296
+ */
297
+ RESIDENT_UNTIL = 72,
298
+ /**
299
+ * Issuing authority code
300
+ */
301
+ AUTHORITY_CODE = 73,
302
+ /**
303
+ * Place of birth address (region)
304
+ */
305
+ PLACE_OF_BIRTH_AREA = 74,
306
+ /**
307
+ * Place of birth address (state code)
308
+ */
309
+ PLACE_OF_BIRTH_STATE_CODE = 75,
310
+ /**
311
+ * Address (street)
312
+ */
313
+ ADDRESS_STREET = 76,
314
+ /**
315
+ * Address (city)
316
+ */
317
+ ADDRESS_CITY = 77,
318
+ /**
319
+ * Address (tax code)
320
+ */
321
+ ADDRESS_JURISDICTION_CODE = 78,
322
+ /**
323
+ * Address (postal code)
324
+ */
325
+ ADDRESS_POSTAL_CODE = 79,
326
+ /**
327
+ * Check digit for document number
328
+ */
329
+ DOCUMENT_NUMBER_CHECK_DIGIT = 80,
330
+ /**
331
+ * Check digit for date of birth
332
+ */
333
+ DATE_OF_BIRTH_CHECK_DIGIT = 81,
334
+ /**
335
+ * Check digit for date of expiry
336
+ */
337
+ DATE_OF_EXPIRY_CHECK_DIGIT = 82,
338
+ /**
339
+ * Check digit for personal number
340
+ */
341
+ PERSONAL_NUMBER_CHECK_DIGIT = 83,
342
+ /**
343
+ * Final check digit for all MRZ
344
+ */
345
+ FINAL_CHECK_DIGIT = 84,
346
+ /**
347
+ * Check digit for passport number (used in visas)
348
+ */
349
+ PASSPORT_NUMBER_CHECK_DIGIT = 85,
350
+ /**
351
+ * Check digit for invitation number (used in visas)
352
+ */
353
+ INVITATION_NUMBER_CHECK_DIGIT = 86,
354
+ /**
355
+ * Check digit for visa identification number
356
+ */
357
+ VISA_ID_CHECK_DIGIT = 87,
358
+ /**
359
+ * Check digit for full name
360
+ */
361
+ SURNAME_AND_GIVEN_NAMES_CHECK_DIGIT = 88,
362
+ /**
363
+ * Check digit for visa expiration date
364
+ */
365
+ VISA_VALID_UNTIL_CHECK_DIGIT = 89,
366
+ /**
367
+ * Permit type
368
+ */
369
+ PERMIT_DL_CLASS = 90,
370
+ /**
371
+ * Permit expiration date
372
+ */
373
+ PERMIT_DATE_OF_EXPIRY = 91,
374
+ /**
375
+ * Permit identifier
376
+ */
377
+ PERMIT_IDENTIFIER = 92,
378
+ /**
379
+ * Permit issue date
380
+ */
381
+ PERMIT_DATE_OF_ISSUE = 93,
382
+ /**
383
+ * Driving restriction code
384
+ */
385
+ PERMIT_RESTRICTION_CODE = 94,
386
+ /**
387
+ * Driving permit code
388
+ */
389
+ PERMIT_ENDORSED = 95,
390
+ /**
391
+ * A string that is used to validate a document against a database
392
+ */
393
+ ISSUE_TIMESTAMP = 96,
394
+ /**
395
+ * Number of duplicates
396
+ */
397
+ NUMBER_OF_DUPLICATES = 97,
398
+ /**
399
+ * Medical indicator codes
400
+ */
401
+ MEDICAL_INDICATOR_CODES = 98,
402
+ /**
403
+ * Non resident stamp
404
+ */
405
+ NON_RESIDENT_INDICATOR = 99,
406
+ /**
407
+ * Visa type
408
+ */
409
+ VISA_TYPE = 100,
410
+ /**
411
+ * Visa valid-from date
412
+ */
413
+ VISA_VALID_FROM = 101,
414
+ /**
415
+ * Visa valid-until date
416
+ */
417
+ VISA_VALID_UNTIL = 102,
418
+ /**
419
+ * Duration of stay on visa
420
+ */
421
+ DURATION_OF_STAY = 103,
422
+ /**
423
+ * Number of entries
424
+ */
425
+ NUMBER_OF_ENTRIES = 104,
426
+ /**
427
+ * Day in date
428
+ */
429
+ DAY = 105,
430
+ /**
431
+ * Month in date
432
+ */
433
+ MONTH = 106,
434
+ /**
435
+ * Year in date
436
+ */
437
+ YEAR = 107,
438
+ /**
439
+ * Unique customer identifier
440
+ */
441
+ UNIQUE_CUSTOMER_IDENTIFIER = 108,
442
+ /**
443
+ * Commercial vehicle code
444
+ */
445
+ COMMERCIAL_VEHICLE_CODES = 109,
446
+ /**
447
+ * Also known as (date of birth)
448
+ */
449
+ AKA_DATE_OF_BIRTH = 110,
450
+ /**
451
+ * Also known as (social security number)
452
+ */
453
+ AKA_SOCIAL_SECURITY_NUMBER = 111,
454
+ /**
455
+ * Also known as (last name)
456
+ */
457
+ AKA_SURNAME = 112,
458
+ /**
459
+ * Also known as (first name)
460
+ */
461
+ AKA_GIVEN_NAMES = 113,
462
+ /**
463
+ * Also known as (name suffix)
464
+ */
465
+ AKA_NAME_SUFFIX = 114,
466
+ /**
467
+ * Also known as (name prefix)
468
+ */
469
+ AKA_NAME_PREFIX = 115,
470
+ /**
471
+ * Postal address (street)
472
+ */
473
+ MAILING_ADDRESS_STREET = 116,
474
+ /**
475
+ * Postal address (city)
476
+ */
477
+ MAILING_ADDRESS_CITY = 117,
478
+ /**
479
+ * Postal address (tax code)
480
+ */
481
+ MAILING_ADDRESS_JURISDICTION_CODE = 118,
482
+ /**
483
+ * Postal address (zip)
484
+ */
485
+ MAILING_ADDRESS_POSTAL_CODE = 119,
486
+ /**
487
+ * Driver license validation number
488
+ */
489
+ AUDIT_INFORMATION = 120,
490
+ /**
491
+ * Inventory number
492
+ */
493
+ INVENTORY_NUMBER = 121,
494
+ /**
495
+ * Race ethnicity
496
+ */
497
+ RACE_ETHNICITY = 122,
498
+ /**
499
+ * Vehicle legal class
500
+ */
501
+ JURISDICTION_VEHICLE_CLASS = 123,
502
+ /**
503
+ * Legal permission code
504
+ */
505
+ JURISDICTION_ENDORSEMENT_CODE = 124,
506
+ /**
507
+ * Legal restriction code
508
+ */
509
+ JURISDICTION_RESTRICTION_CODE = 125,
510
+ /**
511
+ * Surname and (or) name at birth
512
+ */
513
+ FAMILY_NAME = 126,
514
+ /**
515
+ * Name (russian transcription)
516
+ */
517
+ GIVEN_NAMES_RUS = 127,
518
+ /**
519
+ * Visa identification number (russian transcription)
520
+ */
521
+ VISA_ID_RUS = 128,
522
+ /**
523
+ * Father`s name
524
+ */
525
+ FATHERS_NAME = 129,
526
+ /**
527
+ * Father`s name (russian transcription)
528
+ */
529
+ FATHERS_NAME_RUS = 130,
530
+ /**
531
+ * Full name (russian transcription)
532
+ */
533
+ SURNAME_AND_GIVEN_NAME_RUS = 131,
534
+ /**
535
+ * Place of birth (russian transcription)
536
+ */
537
+ PLACE_OF_BIRTH_RUS = 132,
538
+ /**
539
+ * Issuing authority (russian transcription)
540
+ */
541
+ AUTHORITY_RUS = 133,
542
+ /**
543
+ * Digital code of the state of issue of the document in accordance with ISO 3166-1 (ICAO Doc 9303)
544
+ */
545
+ ISSUING_STATE_CODE_NUMERIC = 134,
546
+ /**
547
+ * Digital code of nationality in accordance with ISO 3166-1 (ICAO Doc 9303)
548
+ */
549
+ NATIONALITY_CODE_NUMERIC = 135,
550
+ /**
551
+ * Vehicle engine power
552
+ */
553
+ ENGINE_POWER = 136,
554
+ /**
555
+ * Vehicle engine volume
556
+ */
557
+ ENGINE_VOLUME = 137,
558
+ /**
559
+ * Vehicle chassis number
560
+ */
561
+ CHASSIS_NUMBER = 138,
562
+ /**
563
+ * Vehicle engine number
564
+ */
565
+ ENGINE_NUMBER = 139,
566
+ /**
567
+ * Vehicle engine model
568
+ */
569
+ ENGINE_MODEL = 140,
570
+ /**
571
+ * Vehicle category
572
+ */
573
+ VEHICLE_CATEGORY = 141,
574
+ /**
575
+ * Identity card number
576
+ */
577
+ IDENTITY_CARD_NUMBER = 142,
578
+ /**
579
+ * Control number
580
+ */
581
+ CONTROL_NUMBER = 143,
582
+ /**
583
+ * Parent names
584
+ */
585
+ PARENTS_GIVEN_NAMES = 144,
586
+ /**
587
+ * Second last name
588
+ */
589
+ SECOND_SURNAME = 145,
590
+ /**
591
+ * Middle name
592
+ */
593
+ MIDDLE_NAME = 146,
594
+ /**
595
+ * Vehicle identification number
596
+ */
597
+ REG_CERT_VIN = 147,
598
+ /**
599
+ * Check digit for vehicle identification number
600
+ */
601
+ REG_CERT_VIN_CHECK_DIGIT = 148,
602
+ /**
603
+ * Checksum for vehicle identification number
604
+ */
605
+ REG_CERT_VIN_CHECKSUM = 149,
606
+ /**
607
+ * Check digit of the first line of the MRZ
608
+ */
609
+ LINE_1_CHECK_DIGIT = 150,
610
+ /**
611
+ * Check digit of the second line of the MRZ
612
+ */
613
+ LINE_2_CHECK_DIGIT = 151,
614
+ /**
615
+ * Check digit of the third line of the MRZ
616
+ */
617
+ LINE_3_CHECK_DIGIT = 152,
618
+ /**
619
+ * Checksum of the first line of the MRZ
620
+ */
621
+ LINE_1_CHECKSUM = 153,
622
+ /**
623
+ * Checksum of the second line of the MRZ
624
+ */
625
+ LINE_2_CHECKSUM = 154,
626
+ /**
627
+ * Checksum of the third line of the MRZ
628
+ */
629
+ LINE_3_CHECKSUM = 155,
630
+ /**
631
+ * Check digit of the vehicle registration number
632
+ */
633
+ REG_CERT_REG_NUMBER_CHECK_DIGIT = 156,
634
+ /**
635
+ * Checksum of the vehicle registration number
636
+ */
637
+ REG_CERT_REG_NUMBER_CHECKSUM = 157,
638
+ /**
639
+ * Vehicle code in accordance with ITS (Intelligent Transport System)
640
+ */
641
+ REG_CERT_VEHICLE_ITS_CODE = 158,
642
+ /**
643
+ * Card number for access to the RFID chip
644
+ */
645
+ CARD_ACCESS_NUMBER = 159,
646
+ /**
647
+ * Marital status
648
+ */
649
+ MARITAL_STATUS = 160,
650
+ /**
651
+ * Company name
652
+ */
653
+ COMPANY_NAME = 161,
654
+ /**
655
+ * Special notes
656
+ */
657
+ SPECIAL_NOTES = 162,
658
+ /**
659
+ * Spouse`s last name
660
+ */
661
+ SURNAME_OF_SPOUSE = 163,
662
+ /**
663
+ * Document status tracking number
664
+ */
665
+ TRACKING_NUMBER = 164,
666
+ /**
667
+ * Booklet number
668
+ */
669
+ BOOKLET_NUMBER = 165,
670
+ /**
671
+ * Children
672
+ */
673
+ CHILDREN = 166,
674
+ /**
675
+ * Copy number
676
+ */
677
+ COPY_NUMBER = 167,
678
+ /**
679
+ * Serial number
680
+ */
681
+ SERIAL_NUMBER = 168,
682
+ /**
683
+ * Dossier number
684
+ */
685
+ DOSSIER_NUMBER = 169,
686
+ /**
687
+ * Also known as (full name)
688
+ */
689
+ AKA_SURNAME_AND_GIVEN_NAMES = 170,
690
+ /**
691
+ * Territorial validity
692
+ */
693
+ TERRITORIAL_VALIDITY = 171,
694
+ /**
695
+ * MRZ strings with correct checksums (calculated)
696
+ */
697
+ MRZ_STRINGS_WITH_CORRECT_CHECK_SUMS = 172,
698
+ /**
699
+ * Restriction code for commercial driving license
700
+ */
701
+ DL_CDL_RESTRICTION_CODE = 173,
702
+ /**
703
+ * Date the document holder turns 18 years old
704
+ */
705
+ DL_UNDER_18_DATE = 174,
706
+ /**
707
+ * Record creation date
708
+ */
709
+ DL_RECORD_CREATED = 175,
710
+ /**
711
+ * Duplicate creation date
712
+ */
713
+ DL_DUPLICATE_DATE = 176,
714
+ /**
715
+ * Driving license type
716
+ */
717
+ DL_ISSUE_TYPE = 177,
718
+ /**
719
+ * Military card number
720
+ */
721
+ MILITARY_BOOK_NUMBER = 178,
722
+ /**
723
+ * Destination
724
+ */
725
+ DESTINATION = 179,
726
+ /**
727
+ * Blood type
728
+ */
729
+ BLOOD_GROUP = 180,
730
+ /**
731
+ * Sequence number
732
+ */
733
+ SEQUENCE_NUMBER = 181,
734
+ /**
735
+ * Vehicle body type
736
+ */
737
+ REG_CERT_BODY_TYPE = 182,
738
+ /**
739
+ * Make of vehicle
740
+ */
741
+ REG_CERT_CAR_MARK = 183,
742
+ /**
743
+ * Transaction number
744
+ */
745
+ TRANSACTION_NUMBER = 184,
746
+ /**
747
+ * Age
748
+ */
749
+ AGE = 185,
750
+ /**
751
+ * Registration number (document on the record-keeping system)
752
+ */
753
+ FOLIO_NUMBER = 186,
754
+ /**
755
+ * Voter personal number
756
+ */
757
+ VOTER_KEY = 187,
758
+ /**
759
+ * Address (municipality)
760
+ */
761
+ ADDRESS_MUNICIPALITY = 188,
762
+ /**
763
+ * Address (locality)
764
+ */
765
+ ADDRESS_LOCATION = 189,
766
+ /**
767
+ * Domain/sector
768
+ */
769
+ SECTION = 190,
770
+ /**
771
+ * OCR number
772
+ */
773
+ OCR_NUMBER = 191,
774
+ /**
775
+ * Federal elections
776
+ */
777
+ FEDERAL_ELECTIONS = 192,
778
+ /**
779
+ * Reference number
780
+ */
781
+ REFERENCE_NUMBER = 193,
782
+ /**
783
+ * Optional data checksum
784
+ */
785
+ OPTIONAL_DATA_CHECKSUM = 194,
786
+ /**
787
+ * Optional data check digit
788
+ */
789
+ OPTIONAL_DATA_CHECK_DIGIT = 195,
790
+ /**
791
+ * Visa number
792
+ */
793
+ VISA_NUMBER = 196,
794
+ /**
795
+ * Visa number checksum
796
+ */
797
+ VISA_NUMBER_CHECKSUM = 197,
798
+ /**
799
+ * Visa number check digit
800
+ */
801
+ VISA_NUMBER_CHECK_DIGIT = 198,
802
+ /**
803
+ * Voter
804
+ */
805
+ VOTER = 199,
806
+ /**
807
+ * Type/number of previous document
808
+ */
809
+ PREVIOUS_TYPE = 200,
810
+ /**
811
+ * Field from MRZ
812
+ */
813
+ FIELD_FROM_MRZ = 220,
814
+ /**
815
+ * Current date
816
+ */
817
+ CURRENT_DATE = 221,
818
+ /**
819
+ * Status expiration date
820
+ */
821
+ STATUS_DATE_OF_EXPIRY = 251,
822
+ /**
823
+ * bank note number
824
+ */
825
+ BANK_NOTE_NUMBER = 252,
826
+ /**
827
+ * Code of customer service center
828
+ */
829
+ CSC_CODE = 253,
830
+ /**
831
+ * Pseudonym
832
+ */
833
+ ARTISTIC_NAME = 254,
834
+ /**
835
+ * Academic rank
836
+ */
837
+ ACADEMIC_TITLE = 255,
838
+ /**
839
+ * Address (country)
840
+ */
841
+ ADDRESS_COUNTRY = 256,
842
+ /**
843
+ * Address (zip)
844
+ */
845
+ ADDRESS_ZIP_CODE = 257,
846
+ /**
847
+ * Information on a permit for permanent residence 1 (field for eID)
848
+ */
849
+ E_ID_RESIDENCE_PERMIT_1 = 258,
850
+ /**
851
+ * Information on a permit for permanent residence 2 (field for eID)
852
+ */
853
+ E_ID_RESIDENCE_PERMIT_2 = 259,
854
+ /**
855
+ * Place of birth address: street (field for eID)
856
+ */
857
+ E_ID_PLACE_OF_BIRTH_STREET = 260,
858
+ /**
859
+ * Place of birth address: city (field for eID)
860
+ */
861
+ E_ID_PLACE_OF_BIRTH_CITY = 261,
862
+ /**
863
+ * Place of birth address: state (field for eID)
864
+ */
865
+ E_ID_PLACE_OF_BIRTH_STATE = 262,
866
+ /**
867
+ * Place of birth address: country (field for eID)
868
+ */
869
+ E_ID_PLACE_OF_BIRTH_COUNTRY = 263,
870
+ /**
871
+ * Place of birth address: zip (field for eID)
872
+ */
873
+ E_ID_PLACE_OF_BIRTH_ZIP_CODE = 264,
874
+ /**
875
+ * Commercial driving license class
876
+ */
877
+ CDL_CLASS = 265,
878
+ /**
879
+ * Date when the holder of the document is 19 years old
880
+ */
881
+ DL_UNDER_19_DATE = 266,
882
+ /**
883
+ * Weight (pounds)
884
+ */
885
+ WEIGHT_POUNDS = 267,
886
+ /**
887
+ * Document expiration indicator
888
+ */
889
+ LIMITED_DURATION_DOCUMENT_INDICATOR = 268,
890
+ /**
891
+ * Driving license permit
892
+ */
893
+ ENDORSEMENT_EXPIRATION_DATE = 269,
894
+ /**
895
+ * Revision date
896
+ */
897
+ REVISION_DATE = 270,
898
+ /**
899
+ * Compliance type
900
+ */
901
+ COMPLIANCE_TYPE = 271,
902
+ /**
903
+ * Abbreviated last name
904
+ */
905
+ FAMILY_NAME_TRUNCATION = 272,
906
+ /**
907
+ * Abbreviated first name
908
+ */
909
+ FIRST_NAME_TRUNCATION = 273,
910
+ /**
911
+ * Abbreviated middle name
912
+ */
913
+ MIDDLE_NAME_TRUNCATION = 274,
914
+ /**
915
+ * Exam date
916
+ */
917
+ EXAM_DATE = 275,
918
+ /**
919
+ * Organization
920
+ */
921
+ ORGANIZATION = 276,
922
+ /**
923
+ * Department
924
+ */
925
+ DEPARTMENT = 277,
926
+ /**
927
+ * Salary level
928
+ */
929
+ PAY_GRADE = 278,
930
+ /**
931
+ * Rank/status/title
932
+ */
933
+ RANK = 279,
934
+ /**
935
+ * Number confirming the right to receive benefits
936
+ */
937
+ BENEFITS_NUMBER = 280,
938
+ /**
939
+ * Type of armed forces in which sponsor serves
940
+ */
941
+ SPONSOR_SERVICE = 281,
942
+ /**
943
+ * Sponsor status
944
+ */
945
+ SPONSOR_STATUS = 282,
946
+ /**
947
+ * Sponsor
948
+ */
949
+ SPONSOR = 283,
950
+ /**
951
+ * Degree of kindred
952
+ */
953
+ RELATIONSHIP = 284,
954
+ /**
955
+ * US Citizenship and Immigration Services Alien Registration Number
956
+ */
957
+ USCIS = 285,
958
+ /**
959
+ * Category
960
+ */
961
+ CATEGORY = 286,
962
+ /**
963
+ * Remainder term
964
+ */
965
+ CONDITIONS = 287,
966
+ /**
967
+ * Conditions
968
+ */
969
+ IDENTIFIER = 288,
970
+ /**
971
+ * Identifier
972
+ */
973
+ CONFIGURATION = 289,
974
+ /**
975
+ * Configuration
976
+ */
977
+ DISCRETIONARY_DATA = 290,
978
+ /**
979
+ * Optional data
980
+ */
981
+ LINE_1_OPTIONAL_DATA = 291,
982
+ /**
983
+ * Optional data from MRZ first line
984
+ */
985
+ LINE_2_OPTIONAL_DATA = 292,
986
+ /**
987
+ * Optional data from MRZ second line
988
+ */
989
+ LINE_3_OPTIONAL_DATA = 293,
990
+ /**
991
+ * Optional data from MRZ third line
992
+ */
993
+ EQV_CODE = 294,
994
+ /**
995
+ * EQV-code
996
+ */
997
+ ALT_CODE = 295,
998
+ /**
999
+ * ALT-code
1000
+ */
1001
+ BINARY_CODE = 296,
1002
+ /**
1003
+ * Binary code
1004
+ */
1005
+ PSEUDO_CODE = 297,
1006
+ /**
1007
+ * Pseudo code
1008
+ */
1009
+ FEE = 298,
1010
+ /**
1011
+ * Fee
1012
+ */
1013
+ STAMP_NUMBER = 299,
1014
+ /**
1015
+ * Stamp number
1016
+ */
1017
+ SBH_SECURITY_OPTIONS = 300,
1018
+ /**
1019
+ * Biometric data protection settings
1020
+ */
1021
+ SBH_INTEGRITY_OPTIONS = 301,
1022
+ /**
1023
+ * Biometric data integrity parameters
1024
+ */
1025
+ DATE_OF_CREATION = 302,
1026
+ /**
1027
+ * Biometric data creation date
1028
+ */
1029
+ VALIDITY_PERIOD = 303,
1030
+ /**
1031
+ * Biometric data validity period
1032
+ */
1033
+ PATRON_HEADER_VERSION = 304,
1034
+ /**
1035
+ * Biometric data header format version
1036
+ */
1037
+ BDB_TYPE = 305,
1038
+ /**
1039
+ * Biometric data record type
1040
+ */
1041
+ BIOMETRIC_TYPE = 306,
1042
+ /**
1043
+ * Biometric data type
1044
+ */
1045
+ BIOMETRIC_SUBTYPE = 307,
1046
+ /**
1047
+ * Biometric data subtype
1048
+ */
1049
+ BIOMETRIC_PRODUCT_ID = 308,
1050
+ /**
1051
+ * Biometric data id
1052
+ */
1053
+ BIOMETRIC_FORMAT_OWNER = 309,
1054
+ /**
1055
+ * Biometric data format
1056
+ */
1057
+ BIOMETRIC_FORMAT_TYPE = 310,
1058
+ /**
1059
+ * Phone number
1060
+ */
1061
+ PHONE = 311,
1062
+ /**
1063
+ * Profession
1064
+ */
1065
+ PROFESSION = 312,
1066
+ /**
1067
+ * Job position
1068
+ */
1069
+ TITLE = 313,
1070
+ /**
1071
+ * Common personal data
1072
+ */
1073
+ PERSONAL_SUMMARY = 314,
1074
+ /**
1075
+ * Other valid identifier
1076
+ */
1077
+ OTHER_VALID_ID = 315,
1078
+ /**
1079
+ * Custody info
1080
+ */
1081
+ CUSTODY_INFO = 316,
1082
+ /**
1083
+ * Other name
1084
+ */
1085
+ OTHER_NAME = 317,
1086
+ /**
1087
+ * Additional data
1088
+ */
1089
+ OBSERVATIONS = 318,
1090
+ /**
1091
+ * Tax information
1092
+ */
1093
+ TAX = 319,
1094
+ /**
1095
+ * Document personalization date
1096
+ */
1097
+ DATE_OF_PERSONALIZATION = 320,
1098
+ /**
1099
+ * Personalization serial number
1100
+ */
1101
+ PERSONALIZATION_SN = 321,
1102
+ /**
1103
+ * Record creation date
1104
+ */
1105
+ DATE_OF_RECORD = 322,
1106
+ /**
1107
+ * Date of creation of a record of persons for notification in case of unforeseen situations
1108
+ */
1109
+ PERSON_TO_NOTIFY_DATE_OF_RECORD = 323,
1110
+ /**
1111
+ * Person name for contingency notification
1112
+ */
1113
+ PERSON_TO_NOTIFY_NAME = 324,
1114
+ /**
1115
+ * Person phone for contingency notification
1116
+ */
1117
+ PERSON_TO_NOTIFY_PHONE = 325,
1118
+ /**
1119
+ * Person address for contingency notification
1120
+ */
1121
+ PERSON_TO_NOTIFY_ADDRESS = 326,
1122
+ /**
1123
+ * Text details of the organization issuing the DS certificate
1124
+ */
1125
+ DS_CERTIFICATE_ISSUER = 327,
1126
+ /**
1127
+ * Text details of the organization issuing the document
1128
+ */
1129
+ DS_CERTIFICATE_SUBJECT = 328,
1130
+ /**
1131
+ * DS-certificate start date
1132
+ */
1133
+ DS_CERTIFICATE_VALID_FROM = 329,
1134
+ /**
1135
+ * DS-certificate expiration date
1136
+ */
1137
+ DS_CERTIFICATE_VALID_TO = 330,
1138
+ /**
1139
+ * Vehicle category/restriction/conditions from data group DG1 of the eDL application
1140
+ */
1141
+ VRC_DATA_OBJECT_ENTRY = 331,
1142
+ /**
1143
+ * Type confirmation number
1144
+ */
1145
+ TYPE_APPROVAL_NUMBER = 332,
1146
+ /**
1147
+ * Administrative number
1148
+ */
1149
+ ADMINISTRATIVE_NUMBER = 333,
1150
+ /**
1151
+ * Document discriminator
1152
+ */
1153
+ DOCUMENT_DISCRIMINATOR = 334,
1154
+ /**
1155
+ * Data discriminator
1156
+ */
1157
+ DATA_DISCRIMINATOR = 335,
1158
+ /**
1159
+ * ISO issuer identifier
1160
+ */
1161
+ ISO_ISSUER_ID_NUMBER = 336,
1162
+ /**
1163
+ * The Garda National Immigration Bureau registration number
1164
+ */
1165
+ GNIB_NUMBER = 340,
1166
+ /**
1167
+ * Department number
1168
+ */
1169
+ DEPT_NUMBER = 341,
1170
+ /**
1171
+ * Telegraph code
1172
+ */
1173
+ TELEX_CODE = 342,
1174
+ /**
1175
+ * Allergies
1176
+ */
1177
+ ALLERGIES = 343,
1178
+ /**
1179
+ * Sp-code
1180
+ */
1181
+ SP_CODE = 344,
1182
+ /**
1183
+ * Court restriction code
1184
+ */
1185
+ COURT_CODE = 345,
1186
+ /**
1187
+ * County code
1188
+ */
1189
+ CTY = 346,
1190
+ /**
1191
+ * Sponsor social security number
1192
+ */
1193
+ SPONSOR_SSN = 347,
1194
+ /**
1195
+ * Military identification number
1196
+ */
1197
+ DOD_NUMBER = 348,
1198
+ /**
1199
+ * Novice driver until ... (date)
1200
+ */
1201
+ MC_NOVICE_DATE = 349,
1202
+ /**
1203
+ * Registration number in the computer system of the Norwegian Directorate of Immigration (the UDI)
1204
+ */
1205
+ DUF_NUMBER = 350,
1206
+ /**
1207
+ * Philippines Traffic Police Unit Code
1208
+ */
1209
+ AGY = 351,
1210
+ /**
1211
+ * PNR-code (book number)
1212
+ */
1213
+ PNR_CODE = 352,
1214
+ /**
1215
+ * Departure airport code
1216
+ */
1217
+ FROM_AIRPORT_CODE = 353,
1218
+ /**
1219
+ * Arrival airport code
1220
+ */
1221
+ TO_AIRPORT_CODE = 354,
1222
+ /**
1223
+ * Flight number
1224
+ */
1225
+ FLIGHT_NUMBER = 355,
1226
+ /**
1227
+ * Departure date
1228
+ */
1229
+ DATE_OF_FLIGHT = 356,
1230
+ /**
1231
+ * Seat number
1232
+ */
1233
+ SEAT_NUMBER = 357,
1234
+ /**
1235
+ * Boarding pass issue date
1236
+ */
1237
+ DATE_OF_ISSUE_BOARDING_PASS = 358,
1238
+ /**
1239
+ * Hidden weapons license, valid until... (date)
1240
+ */
1241
+ CCW_UNTIL = 359,
1242
+ /**
1243
+ * Reference number checksum
1244
+ */
1245
+ REFERENCE_NUMBER_CHECKSUM = 360,
1246
+ /**
1247
+ * Reference number check digit
1248
+ */
1249
+ REFERENCE_NUMBER_CHECK_DIGIT = 361,
1250
+ /**
1251
+ * Room number
1252
+ */
1253
+ ROOM_NUMBER = 362,
1254
+ /**
1255
+ * Religion
1256
+ */
1257
+ RELIGION = 363,
1258
+ /**
1259
+ * Number of months before the due date expiration of a document
1260
+ */
1261
+ REMAINDER_TERM = 364,
1262
+ /**
1263
+ * Electronic ticket indicator
1264
+ */
1265
+ ELECTRONIC_TICKET_INDICATOR = 365,
1266
+ /**
1267
+ * Free baggage allowance
1268
+ */
1269
+ COMPARTMENT_CODE = 366,
1270
+ /**
1271
+ * Frequent flyer number
1272
+ */
1273
+ CHECK_IN_SEQUENCE_NUMBER = 367,
1274
+ /**
1275
+ * Airline frequent flyer indicator
1276
+ */
1277
+ AIRLINE_DESIGNATOR_OF_BOARDING_PASS_ISSUER = 368,
1278
+ /**
1279
+ * Ticket number
1280
+ */
1281
+ AIRLINE_NUMERIC_CODE = 369,
1282
+ /**
1283
+ * Airline numeric code
1284
+ */
1285
+ TICKET_NUMBER = 370,
1286
+ /**
1287
+ * Boarding pass issuer code
1288
+ */
1289
+ FREQUENT_FLYER_AIRLINE_DESIGNATOR = 371,
1290
+ /**
1291
+ * Check-in sequence number
1292
+ */
1293
+ FREQUENT_FLYER_NUMBER = 372,
1294
+ /**
1295
+ * Compartment code
1296
+ */
1297
+ FREE_BAGGAGE_ALLOWANCE = 373,
1298
+ /**
1299
+ * PDF417 codec
1300
+ */
1301
+ PDF_417_CODEC = 374,
1302
+ /**
1303
+ * identity card checksum
1304
+ */
1305
+ IDENTITY_CARD_NUMBER_CHECKSUM = 375,
1306
+ /**
1307
+ * identity card check digit
1308
+ */
1309
+ IDENTITY_CARD_NUMBER_CHECK_DIGIT = 376,
1310
+ /**
1311
+ * Veteran
1312
+ */
1313
+ VETERAN = 377,
1314
+ /**
1315
+ * Validity date of A1 driver’s license
1316
+ */
1317
+ DL_CLASS_CODE_A1_FROM = 378,
1318
+ /**
1319
+ * Expiration date of A1 driver’s license
1320
+ */
1321
+ DL_CLASS_CODE_A1_TO = 379,
1322
+ /**
1323
+ * Restrictions for A1 driver’s license
1324
+ */
1325
+ DL_CLASS_CODE_A1_NOTES = 380,
1326
+ /**
1327
+ * Validity date of A driver’s license
1328
+ */
1329
+ DL_CLASS_CODE_A_FROM = 381,
1330
+ /**
1331
+ * Expiration date of A driver’s license
1332
+ */
1333
+ DL_CLASS_CODE_A_TO = 382,
1334
+ /**
1335
+ * Restrictions for A driver’s license
1336
+ */
1337
+ DL_CLASS_CODE_A_NOTES = 383,
1338
+ /**
1339
+ * Validity date of B driver’s license
1340
+ */
1341
+ DL_CLASS_CODE_B_FROM = 384,
1342
+ /**
1343
+ * Expiration date of B driver’s license
1344
+ */
1345
+ DL_CLASS_CODE_B_TO = 385,
1346
+ /**
1347
+ * Restrictions for B driver’s license
1348
+ */
1349
+ DL_CLASS_CODE_B_NOTES = 386,
1350
+ /**
1351
+ * Validity date of C1 driver’s license
1352
+ */
1353
+ DL_CLASS_CODE_C1_FROM = 387,
1354
+ /**
1355
+ * Expiration date of C1 driver’s license
1356
+ */
1357
+ DL_CLASS_CODE_C1_TO = 388,
1358
+ /**
1359
+ * Restrictions for C1 driver’s license
1360
+ */
1361
+ DL_CLASS_CODE_C1_NOTES = 389,
1362
+ /**
1363
+ * Validity date of C driver’s license
1364
+ */
1365
+ DL_CLASS_CODE_C_FROM = 390,
1366
+ /**
1367
+ * Expiration date of C driver’s license
1368
+ */
1369
+ DL_CLASS_CODE_C_TO = 391,
1370
+ /**
1371
+ * Restrictions for C driver’s license
1372
+ */
1373
+ DL_CLASS_CODE_C_NOTES = 392,
1374
+ /**
1375
+ * Validity date of D1 driver’s license
1376
+ */
1377
+ DL_CLASS_CODE_D1_FROM = 393,
1378
+ /**
1379
+ * Expiration date of D1 driver’s license
1380
+ */
1381
+ DL_CLASS_CODE_D1_TO = 394,
1382
+ /**
1383
+ * Restrictions for D1 driver’s license
1384
+ */
1385
+ DL_CLASS_CODE_D1_NOTES = 395,
1386
+ /**
1387
+ * Validity date of D driver’s license
1388
+ */
1389
+ DL_CLASS_CODE_D_FROM = 396,
1390
+ /**
1391
+ * Expiration date of D driver’s license
1392
+ */
1393
+ DL_CLASS_CODE_D_TO = 397,
1394
+ /**
1395
+ * Restrictions for D driver’s license
1396
+ */
1397
+ DL_CLASS_CODE_D_NOTES = 398,
1398
+ /**
1399
+ * Validity date of BE driver’s license
1400
+ */
1401
+ DL_CLASS_CODE_BE_FROM = 399,
1402
+ /**
1403
+ * Expiration date of BE driver’s license
1404
+ */
1405
+ DL_CLASS_CODE_BE_TO = 400,
1406
+ /**
1407
+ * Restrictions for BE driver’s license
1408
+ */
1409
+ DL_CLASS_CODE_BE_NOTES = 401,
1410
+ /**
1411
+ * Validity date of C1E driver’s license
1412
+ */
1413
+ DL_CLASS_CODE_C1E_FROM = 402,
1414
+ /**
1415
+ * Expiration date of C1E driver’s license
1416
+ */
1417
+ DL_CLASS_CODE_C1E_TO = 403,
1418
+ /**
1419
+ * Restrictions for C1E driver’s license
1420
+ */
1421
+ DL_CLASS_CODE_C1E_NOTES = 404,
1422
+ /**
1423
+ * Validity date of CE driver’s license
1424
+ */
1425
+ DL_CLASS_CODE_CE_FROM = 405,
1426
+ /**
1427
+ * Expiration date of CE driver’s license
1428
+ */
1429
+ DL_CLASS_CODE_CE_TO = 406,
1430
+ /**
1431
+ * Restrictions for CE driver’s license
1432
+ */
1433
+ DL_CLASS_CODE_CE_NOTES = 407,
1434
+ /**
1435
+ * Validity date of D1E driver’s license
1436
+ */
1437
+ DL_CLASS_CODE_D1E_FROM = 408,
1438
+ /**
1439
+ * Expiration date of D1E driver’s license
1440
+ */
1441
+ DL_CLASS_CODE_D1E_TO = 409,
1442
+ /**
1443
+ * Restrictions for D1E driver’s license
1444
+ */
1445
+ DL_CLASS_CODE_D1E_NOTES = 410,
1446
+ /**
1447
+ * Validity date of DE driver’s license
1448
+ */
1449
+ DL_CLASS_CODE_DE_FROM = 411,
1450
+ /**
1451
+ * Expiration date of DE driver’s license
1452
+ */
1453
+ DL_CLASS_CODE_DE_TO = 412,
1454
+ /**
1455
+ * Restrictions for DE driver’s license
1456
+ */
1457
+ DL_CLASS_CODE_DE_NOTES = 413,
1458
+ /**
1459
+ * Validity date of M driver’s license
1460
+ */
1461
+ DL_CLASS_CODE_M_FROM = 414,
1462
+ /**
1463
+ * Expiration date of M driver’s license
1464
+ */
1465
+ DL_CLASS_CODE_M_TO = 415,
1466
+ /**
1467
+ * Restrictions for M driver’s license
1468
+ */
1469
+ DL_CLASS_CODE_M_NOTES = 416,
1470
+ /**
1471
+ * Validity date of L driver’s license
1472
+ */
1473
+ DL_CLASS_CODE_L_FROM = 417,
1474
+ /**
1475
+ * Expiration date of L driver’s license
1476
+ */
1477
+ DL_CLASS_CODE_L_TO = 418,
1478
+ /**
1479
+ * Restrictions for L driver’s license
1480
+ */
1481
+ DL_CLASS_CODE_L_NOTES = 419,
1482
+ /**
1483
+ * Validity date of T driver’s license
1484
+ */
1485
+ DL_CLASS_CODE_T_FROM = 420,
1486
+ /**
1487
+ * Expiration date of T driver’s license
1488
+ */
1489
+ DL_CLASS_CODE_T_TO = 421,
1490
+ /**
1491
+ * Restrictions for T driver’s license
1492
+ */
1493
+ DL_CLASS_CODE_T_NOTES = 422,
1494
+ /**
1495
+ * Validity date of AM driver’s license
1496
+ */
1497
+ DL_CLASS_CODE_AM_FROM = 423,
1498
+ /**
1499
+ * Expiration date of AM driver’s license
1500
+ */
1501
+ DL_CLASS_CODE_AM_TO = 424,
1502
+ /**
1503
+ * Restrictions for AM driver’s license
1504
+ */
1505
+ DL_CLASS_CODE_AM_NOTES = 425,
1506
+ /**
1507
+ * Validity date of A2 driver’s license
1508
+ */
1509
+ DL_CLASS_CODE_A2_FROM = 426,
1510
+ /**
1511
+ * Expiration date of A2 driver’s license
1512
+ */
1513
+ DL_CLASS_CODE_A2_TO = 427,
1514
+ /**
1515
+ * Restrictions for A2 driver’s license
1516
+ */
1517
+ DL_CLASS_CODE_A2_NOTES = 428,
1518
+ /**
1519
+ * Validity date of B1 driver’s license
1520
+ */
1521
+ DL_CLASS_CODE_B1_FROM = 429,
1522
+ /**
1523
+ * Expiration date of B1 driver’s license
1524
+ */
1525
+ DL_CLASS_CODE_B1_TO = 430,
1526
+ /**
1527
+ * Restrictions for B1 driver’s license
1528
+ */
1529
+ DL_CLASS_CODE_B1_NOTES = 431,
1530
+ /**
1531
+ * Last name at birth
1532
+ */
1533
+ SURNAME_AT_BIRTH = 432,
1534
+ /**
1535
+ * Civil status
1536
+ */
1537
+ CIVIL_STATUS = 433,
1538
+ /**
1539
+ * Number of seats
1540
+ */
1541
+ NUMBER_OF_SEATS = 434,
1542
+ /**
1543
+ * Number of standing places
1544
+ */
1545
+ NUMBER_OF_STANDING_PLACES = 435,
1546
+ /**
1547
+ * Max speed
1548
+ */
1549
+ MAX_SPEED = 436,
1550
+ /**
1551
+ * Fuel type
1552
+ */
1553
+ FUEL_TYPE = 437,
1554
+ /**
1555
+ * Vehicle emission class
1556
+ */
1557
+ EC_ENVIRONMENTAL_TYPE = 438,
1558
+ /**
1559
+ * Engine power-to-weight ratio
1560
+ */
1561
+ POWER_WEIGHT_RATIO = 439,
1562
+ /**
1563
+ * Trailer with brakes maximum weight
1564
+ */
1565
+ MAX_MASS_OF_TRAILER_BRAKED = 440,
1566
+ /**
1567
+ * Trailer without brakes maximum weight
1568
+ */
1569
+ MAX_MASS_OF_TRAILER_UNBRAKED = 441,
1570
+ /**
1571
+ * Transmission type
1572
+ */
1573
+ TRANSMISSION_TYPE = 442,
1574
+ /**
1575
+ * Trailer equipment
1576
+ */
1577
+ TRAILER_HITCH = 443,
1578
+ /**
1579
+ * Accompanying person
1580
+ */
1581
+ ACCOMPANIED_BY = 444,
1582
+ /**
1583
+ * Police district
1584
+ */
1585
+ POLICE_DISTRICT = 445,
1586
+ /**
1587
+ * Date of document first issue
1588
+ */
1589
+ FIRST_ISSUE_DATE = 446,
1590
+ /**
1591
+ * Maximum payload
1592
+ */
1593
+ PAYLOAD_CAPACITY = 447,
1594
+ /**
1595
+ * Number of axles
1596
+ */
1597
+ NUMBER_OF_AXLES = 448,
1598
+ /**
1599
+ * Axle weight limit
1600
+ */
1601
+ PERMISSIBLE_AXLE_LOAD = 449,
1602
+ /**
1603
+ * Precinct
1604
+ */
1605
+ PRECINCT = 450,
1606
+ /**
1607
+ * Inviter
1608
+ */
1609
+ INVITED_BY = 451,
1610
+ /**
1611
+ * Purpose of arrival
1612
+ */
1613
+ PURPOSE_OF_ENTRY = 452,
1614
+ /**
1615
+ * Skin color
1616
+ */
1617
+ SKIN_COLOR = 453,
1618
+ /**
1619
+ * Complexion
1620
+ */
1621
+ COMPLEXION = 454,
1622
+ /**
1623
+ * Departure airport
1624
+ */
1625
+ AIRPORT_FROM = 455,
1626
+ /**
1627
+ * Arrival airport
1628
+ */
1629
+ AIRPORT_TO = 456,
1630
+ /**
1631
+ * Airline name
1632
+ */
1633
+ AIRLINE_NAME = 457,
1634
+ /**
1635
+ * Airline bonus program for frequent flyers
1636
+ */
1637
+ AIRLINE_NAME_FREQUENT_FLYER = 458,
1638
+ /**
1639
+ * License number
1640
+ */
1641
+ LICENSE_NUMBER = 459,
1642
+ /**
1643
+ * In tanks
1644
+ */
1645
+ IN_TANKS = 460,
1646
+ /**
1647
+ * Other than tanks
1648
+ */
1649
+ EXCEPT_IN_TANKS = 461,
1650
+ /**
1651
+ * Passenger with fast track priority (express formal procedures at the airport)
1652
+ */
1653
+ FAST_TRACK = 462,
1654
+ /**
1655
+ * Owner
1656
+ */
1657
+ OWNER = 463,
1658
+ /**
1659
+ * MRZ strings from ICAO RFID
1660
+ */
1661
+ MRZ_STRINGS_ICAO_RFID = 464,
1662
+ /**
1663
+ * Number of card issues with this number
1664
+ */
1665
+ NUMBER_OF_CARD_ISSUANCE = 465,
1666
+ /**
1667
+ * Card issues count checksum
1668
+ */
1669
+ NUMBER_OF_CARD_ISSUANCE_CHECKSUM = 466,
1670
+ /**
1671
+ * Card issues count check digit
1672
+ */
1673
+ NUMBER_OF_CARD_ISSUANCE_CHECK_DIGIT = 467,
1674
+ /**
1675
+ * Birth century
1676
+ */
1677
+ CENTURY_DATE_OF_BIRTH = 468,
1678
+ /**
1679
+ * Validity date of A3 driver’s license
1680
+ */
1681
+ DL_CLASS_CODE_A3_FROM = 469,
1682
+ /**
1683
+ * Expiration date of A3 driver’s license
1684
+ */
1685
+ DL_CLASS_CODE_A3_TO = 470,
1686
+ /**
1687
+ * Restrictions for A3 driver’s license
1688
+ */
1689
+ DL_CLASS_CODE_A3_NOTES = 471,
1690
+ /**
1691
+ * Validity date of C2 driver’s license
1692
+ */
1693
+ DL_CLASS_CODE_C2_FROM = 472,
1694
+ /**
1695
+ * Expiration date of C2 driver’s license
1696
+ */
1697
+ DL_CLASS_CODE_C2_TO = 473,
1698
+ /**
1699
+ * Restrictions for C2 driver’s license
1700
+ */
1701
+ DL_CLASS_CODE_C2_NOTES = 474,
1702
+ /**
1703
+ * Validity date of B2 driver’s license
1704
+ */
1705
+ DL_CLASS_CODE_B2_FROM = 475,
1706
+ /**
1707
+ * Expiration date of B2 driver’s license
1708
+ */
1709
+ DL_CLASS_CODE_B2_TO = 476,
1710
+ /**
1711
+ * Restrictions for B2 driver’s license
1712
+ */
1713
+ DL_CLASS_CODE_B2_NOTES = 477,
1714
+ /**
1715
+ * Validity date of D2 driver’s license
1716
+ */
1717
+ DL_CLASS_CODE_D2_FROM = 478,
1718
+ /**
1719
+ * Expiration date of D2 driver’s license
1720
+ */
1721
+ DL_CLASS_CODE_D2_TO = 479,
1722
+ /**
1723
+ * Restrictions for D2 driver’s license
1724
+ */
1725
+ DL_CLASS_CODE_D2_NOTES = 480,
1726
+ /**
1727
+ * Validity date of B2E driver’s license
1728
+ */
1729
+ DL_CLASS_CODE_B2E_FROM = 481,
1730
+ /**
1731
+ * Expiration date of B2E driver’s license
1732
+ */
1733
+ DL_CLASS_CODE_B2E_TO = 482,
1734
+ /**
1735
+ * Restrictions for B2E driver’s license
1736
+ */
1737
+ DL_CLASS_CODE_B2E_NOTES = 483,
1738
+ /**
1739
+ * Validity date of G driver’s license
1740
+ */
1741
+ DL_CLASS_CODE_G_FROM = 484,
1742
+ /**
1743
+ * Expiration date of G driver’s license
1744
+ */
1745
+ DL_CLASS_CODE_G_TO = 485,
1746
+ /**
1747
+ * Restrictions for G driver’s license
1748
+ */
1749
+ DL_CLASS_CODE_G_NOTES = 486,
1750
+ /**
1751
+ * Validity date of J driver’s license
1752
+ */
1753
+ DL_CLASS_CODE_J_FROM = 487,
1754
+ /**
1755
+ * Expiration date of J driver’s license
1756
+ */
1757
+ DL_CLASS_CODE_J_TO = 488,
1758
+ /**
1759
+ * Restrictions for J driver’s license
1760
+ */
1761
+ DL_CLASS_CODE_J_NOTES = 489,
1762
+ /**
1763
+ * Validity date of LC driver’s license
1764
+ */
1765
+ DL_CLASS_CODE_LC_FROM = 490,
1766
+ /**
1767
+ * Expiration date of LC driver’s license
1768
+ */
1769
+ DL_CLASS_CODE_LC_TO = 491,
1770
+ /**
1771
+ * Restrictions for LC driver’s license
1772
+ */
1773
+ DL_CLASS_CODE_LC_NOTES = 492,
1774
+ /**
1775
+ * Bank card number
1776
+ */
1777
+ BANK_CARD_NUMBER = 493,
1778
+ /**
1779
+ * Bank card validity
1780
+ */
1781
+ BANK_CARD_VALID_THRU = 494,
1782
+ /**
1783
+ * Tax number
1784
+ */
1785
+ TAX_NUMBER = 495,
1786
+ /**
1787
+ * Health insurance number
1788
+ */
1789
+ HEALTH_NUMBER = 496,
1790
+ /**
1791
+ * Grandfather`s name
1792
+ */
1793
+ GRANDFATHER_NAME = 497,
1794
+ /**
1795
+ * Recruit indicator
1796
+ */
1797
+ SELECTEE_INDICATOR = 498,
1798
+ /**
1799
+ * Mother`s last name
1800
+ */
1801
+ MOTHER_SURNAME = 499,
1802
+ /**
1803
+ * Mother`s first name
1804
+ */
1805
+ MOTHER_GIVEN_NAME = 500,
1806
+ /**
1807
+ * Father`s last name
1808
+ */
1809
+ FATHER_SURNAME = 501,
1810
+ /**
1811
+ * Father`s first name
1812
+ */
1813
+ FATHER_GIVEN_NAME = 502,
1814
+ /**
1815
+ * Mother`s date of birth
1816
+ */
1817
+ MOTHER_DATE_OF_BIRTH = 503,
1818
+ /**
1819
+ * Father`s date of birth
1820
+ */
1821
+ FATHER_DATE_OF_BIRTH = 504,
1822
+ /**
1823
+ * Mother`s personal number
1824
+ */
1825
+ MOTHER_PERSONAL_NUMBER = 505,
1826
+ /**
1827
+ * Father`s personal number
1828
+ */
1829
+ FATHER_PERSONAL_NUMBER = 506,
1830
+ /**
1831
+ * Mother`s place of birth
1832
+ */
1833
+ MOTHER_PLACE_OF_BIRTH = 507,
1834
+ /**
1835
+ * Father`s place of birth
1836
+ */
1837
+ FATHER_PLACE_OF_BIRTH = 508,
1838
+ /**
1839
+ * Mother`s country of birth
1840
+ */
1841
+ MOTHER_COUNTRY_OF_BIRTH = 509,
1842
+ /**
1843
+ * Father`s country of birth
1844
+ */
1845
+ FATHER_COUNTRY_OF_BIRTH = 510,
1846
+ /**
1847
+ * Date of document first renewal
1848
+ */
1849
+ DATE_FIRST_RENEWAL = 511,
1850
+ /**
1851
+ * Date of document second renewal
1852
+ */
1853
+ DATE_SECOND_RENEWAL = 512,
1854
+ /**
1855
+ * Place of examination
1856
+ */
1857
+ PLACE_OF_EXAMINATION = 513,
1858
+ /**
1859
+ * Application number
1860
+ */
1861
+ APPLICATION_NUMBER = 514,
1862
+ /**
1863
+ * Voucher number
1864
+ */
1865
+ VOUCHER_NUMBER = 515,
1866
+ /**
1867
+ * Authorization number
1868
+ */
1869
+ AUTHORIZATION_NUMBER = 516,
1870
+ /**
1871
+ * Faculty
1872
+ */
1873
+ FACULTY = 517,
1874
+ /**
1875
+ * Form of education
1876
+ */
1877
+ FORM_OF_EDUCATION = 518,
1878
+ /**
1879
+ * DNI number
1880
+ */
1881
+ DNI_NUMBER = 519,
1882
+ /**
1883
+ * Retirement number
1884
+ */
1885
+ RETIREMENT_NUMBER = 520,
1886
+ /**
1887
+ * Professional id number
1888
+ */
1889
+ PROFESSIONAL_ID_NUMBER = 521,
1890
+ /**
1891
+ * Age at issue
1892
+ */
1893
+ AGE_AT_ISSUE = 522,
1894
+ /**
1895
+ * Years since issue
1896
+ */
1897
+ YEARS_SINCE_ISSUE = 523,
1898
+ /**
1899
+ * Validity date of BTP driver’s license
1900
+ */
1901
+ DL_CLASS_CODE_BTP_FROM = 524,
1902
+ /**
1903
+ * Restrictions for BTP driver’s license
1904
+ */
1905
+ DL_CLASS_CODE_BTP_NOTES = 525,
1906
+ /**
1907
+ * Expiration date of BTP driver’s license
1908
+ */
1909
+ DL_CLASS_CODE_BTP_TO = 526,
1910
+ /**
1911
+ * Validity date of C3 driver’s license
1912
+ */
1913
+ DL_CLASS_CODE_C3_FROM = 527,
1914
+ /**
1915
+ * Restrictions for C3 driver’s license
1916
+ */
1917
+ DL_CLASS_CODE_C3_NOTES = 528,
1918
+ /**
1919
+ * Expiration date of C3 driver’s license
1920
+ */
1921
+ DL_CLASS_CODE_C3_TO = 529,
1922
+ /**
1923
+ * Validity date of E driver’s license
1924
+ */
1925
+ DL_CLASS_CODE_E_FROM = 530,
1926
+ /**
1927
+ * Restrictions for E driver’s license
1928
+ */
1929
+ DL_CLASS_CODE_E_NOTES = 531,
1930
+ /**
1931
+ * Expiration date of E driver’s license
1932
+ */
1933
+ DL_CLASS_CODE_E_TO = 532,
1934
+ /**
1935
+ * Validity date of F driver’s license
1936
+ */
1937
+ DL_CLASS_CODE_F_FROM = 533,
1938
+ /**
1939
+ * Restrictions for F driver’s license
1940
+ */
1941
+ DL_CLASS_CODE_F_NOTES = 534,
1942
+ /**
1943
+ * Expiration date of F driver’s license
1944
+ */
1945
+ DL_CLASS_CODE_F_TO = 535,
1946
+ /**
1947
+ * Validity date of FA driver’s license
1948
+ */
1949
+ DL_CLASS_CODE_FA_FROM = 536,
1950
+ /**
1951
+ * Restrictions for FA driver’s license
1952
+ */
1953
+ DL_CLASS_CODE_FA_NOTES = 537,
1954
+ /**
1955
+ * Expiration date of FA driver’s license
1956
+ */
1957
+ DL_CLASS_CODE_FA_TO = 538,
1958
+ /**
1959
+ * Validity date of FA1 driver’s license
1960
+ */
1961
+ DL_CLASS_CODE_FA1_FROM = 539,
1962
+ /**
1963
+ * Restrictions for FA1 driver’s license
1964
+ */
1965
+ DL_CLASS_CODE_FA1_NOTES = 540,
1966
+ /**
1967
+ * Expiration date of FA1 driver’s license
1968
+ */
1969
+ DL_CLASS_CODE_FA1_TO = 541,
1970
+ /**
1971
+ * Validity date of FB driver’s license
1972
+ */
1973
+ DL_CLASS_CODE_FB_FROM = 542,
1974
+ /**
1975
+ * Restrictions for FB driver’s license
1976
+ */
1977
+ DL_CLASS_CODE_FB_NOTES = 543,
1978
+ /**
1979
+ * Expiration date of FB driver’s license
1980
+ */
1981
+ DL_CLASS_CODE_FB_TO = 544,
1982
+ /**
1983
+ * Validity date of G1 driver’s license
1984
+ */
1985
+ DL_CLASS_CODE_G1_FROM = 545,
1986
+ /**
1987
+ * Restrictions for G1 driver’s license
1988
+ */
1989
+ DL_CLASS_CODE_G1_NOTES = 546,
1990
+ /**
1991
+ * Expiration date of G1 driver’s license
1992
+ */
1993
+ DL_CLASS_CODE_G1_TO = 547,
1994
+ /**
1995
+ * Validity date of H driver’s license
1996
+ */
1997
+ DL_CLASS_CODE_H_FROM = 548,
1998
+ /**
1999
+ * Restrictions for H driver’s license
2000
+ */
2001
+ DL_CLASS_CODE_H_NOTES = 549,
2002
+ /**
2003
+ * Expiration date of H driver’s license
2004
+ */
2005
+ DL_CLASS_CODE_H_TO = 550,
2006
+ /**
2007
+ * Validity date of I driver’s license
2008
+ */
2009
+ DL_CLASS_CODE_I_FROM = 551,
2010
+ /**
2011
+ * Restrictions for I driver’s license
2012
+ */
2013
+ DL_CLASS_CODE_I_NOTES = 552,
2014
+ /**
2015
+ * Expiration date of I driver’s license
2016
+ */
2017
+ DL_CLASS_CODE_I_TO = 553,
2018
+ /**
2019
+ * Validity date of K driver’s license
2020
+ */
2021
+ DL_CLASS_CODE_K_FROM = 554,
2022
+ /**
2023
+ * Restrictions for K driver’s license
2024
+ */
2025
+ DL_CLASS_CODE_K_NOTES = 555,
2026
+ /**
2027
+ * Expiration date of K driver’s license
2028
+ */
2029
+ DL_CLASS_CODE_K_TO = 556,
2030
+ /**
2031
+ * Validity date of LK driver’s license
2032
+ */
2033
+ DL_CLASS_CODE_LK_FROM = 557,
2034
+ /**
2035
+ * Restrictions for LK driver’s license
2036
+ */
2037
+ DL_CLASS_CODE_LK_NOTES = 558,
2038
+ /**
2039
+ * Expiration date of LK driver’s license
2040
+ */
2041
+ DL_CLASS_CODE_LK_TO = 559,
2042
+ /**
2043
+ * Validity date of N driver’s license
2044
+ */
2045
+ DL_CLASS_CODE_N_FROM = 560,
2046
+ /**
2047
+ * Restrictions for N driver’s license
2048
+ */
2049
+ DL_CLASS_CODE_N_NOTES = 561,
2050
+ /**
2051
+ * Expiration date of N driver’s license
2052
+ */
2053
+ DL_CLASS_CODE_N_TO = 562,
2054
+ /**
2055
+ * Validity date of S driver’s license
2056
+ */
2057
+ DL_CLASS_CODE_S_FROM = 563,
2058
+ /**
2059
+ * Restrictions for S driver’s license
2060
+ */
2061
+ DL_CLASS_CODE_S_NOTES = 564,
2062
+ /**
2063
+ * Expiration date of S driver’s license
2064
+ */
2065
+ DL_CLASS_CODE_S_TO = 565,
2066
+ /**
2067
+ * Validity date of TB driver’s license
2068
+ */
2069
+ DL_CLASS_CODE_TB_FROM = 566,
2070
+ /**
2071
+ * Restrictions for TB driver’s license
2072
+ */
2073
+ DL_CLASS_CODE_TB_NOTES = 567,
2074
+ /**
2075
+ * Expiration date of TB driver’s license
2076
+ */
2077
+ DL_CLASS_CODE_TB_TO = 568,
2078
+ /**
2079
+ * Validity date of TM driver’s license
2080
+ */
2081
+ DL_CLASS_CODE_TM_FROM = 569,
2082
+ /**
2083
+ * Restrictions for TM driver’s license
2084
+ */
2085
+ DL_CLASS_CODE_TM_NOTES = 570,
2086
+ /**
2087
+ * Expiration date of TM driver’s license
2088
+ */
2089
+ DL_CLASS_CODE_TM_TO = 571,
2090
+ /**
2091
+ * Validity date of TR driver’s license
2092
+ */
2093
+ DL_CLASS_CODE_TR_FROM = 572,
2094
+ /**
2095
+ * Restrictions for TR driver’s license
2096
+ */
2097
+ DL_CLASS_CODE_TR_NOTES = 573,
2098
+ /**
2099
+ * Expiration date of TR driver’s license
2100
+ */
2101
+ DL_CLASS_CODE_TR_TO = 574,
2102
+ /**
2103
+ * Validity date of TV driver’s license
2104
+ */
2105
+ DL_CLASS_CODE_TV_FROM = 575,
2106
+ /**
2107
+ * Restrictions for TV driver’s license
2108
+ */
2109
+ DL_CLASS_CODE_TV_NOTES = 576,
2110
+ /**
2111
+ * Expiration date of TV driver’s license
2112
+ */
2113
+ DL_CLASS_CODE_TV_TO = 577,
2114
+ /**
2115
+ * Validity date of V driver’s license
2116
+ */
2117
+ DL_CLASS_CODE_V_FROM = 578,
2118
+ /**
2119
+ * Restrictions for V driver’s license
2120
+ */
2121
+ DL_CLASS_CODE_V_NOTES = 579,
2122
+ /**
2123
+ * Expiration date of V driver’s license
2124
+ */
2125
+ DL_CLASS_CODE_V_TO = 580,
2126
+ /**
2127
+ * Validity date of W driver’s license
2128
+ */
2129
+ DL_CLASS_CODE_W_FROM = 581,
2130
+ /**
2131
+ * Restrictions for W driver’s license
2132
+ */
2133
+ DL_CLASS_CODE_W_NOTES = 582,
2134
+ /**
2135
+ * Expiration date of W driver’s license
2136
+ */
2137
+ DL_CLASS_CODE_W_TO = 583,
2138
+ /**
2139
+ * URL
2140
+ */
2141
+ URL = 584,
2142
+ /**
2143
+ * Caliber
2144
+ */
2145
+ CALIBER = 585,
2146
+ /**
2147
+ * Model
2148
+ */
2149
+ MODEL = 586,
2150
+ /**
2151
+ * Make
2152
+ */
2153
+ MAKE = 587,
2154
+ /**
2155
+ * Number of cylinders
2156
+ */
2157
+ NUMBER_OF_CYLINDERS = 588,
2158
+ /**
2159
+ * Surname of husband after registration
2160
+ */
2161
+ SURNAME_OF_HUSBAND_AFTER_REGISTRATION = 589,
2162
+ /**
2163
+ * Surname of wife after registration
2164
+ */
2165
+ SURNAME_OF_WIFE_AFTER_REGISTRATION = 590,
2166
+ /**
2167
+ * Date of birth of wife
2168
+ */
2169
+ DATE_OF_BIRTH_OF_WIFE = 591,
2170
+ /**
2171
+ * Date of birth of husband
2172
+ */
2173
+ DATE_OF_BIRTH_OF_HUSBAND = 592,
2174
+ /**
2175
+ * Citizenship of first person
2176
+ */
2177
+ CITIZENSHIP_OF_FIRST_PERSON = 593,
2178
+ /**
2179
+ * Citizenship of second person
2180
+ */
2181
+ CITIZENSHIP_OF_SECOND_PERSON = 594,
2182
+ /**
2183
+ * CVV code
2184
+ */
2185
+ CVV = 595,
2186
+ /**
2187
+ * Date of insurance expiry
2188
+ */
2189
+ DATE_OF_INSURANCE_EXPIRY = 596,
2190
+ /**
2191
+ * Mortgage
2192
+ */
2193
+ MORTGAGE_BY = 597,
2194
+ /**
2195
+ * Old document number
2196
+ */
2197
+ OLD_DOCUMENT_NUMBER = 598,
2198
+ /**
2199
+ * Old date of issue
2200
+ */
2201
+ OLD_DATE_OF_ISSUE = 599,
2202
+ /**
2203
+ * Old place of issue
2204
+ */
2205
+ OLD_PLACE_OF_ISSUE = 600,
2206
+ /**
2207
+ * Validity date of LR driver’s license
2208
+ */
2209
+ DL_CLASS_CODE_LR_FROM = 601,
2210
+ /**
2211
+ * Expiration date of LR driver’s license
2212
+ */
2213
+ DL_CLASS_CODE_LR_TO = 602,
2214
+ /**
2215
+ * Restrictions for LR driver’s license
2216
+ */
2217
+ DL_CLASS_CODE_LR_NOTES = 603,
2218
+ /**
2219
+ * Validity date of MR driver’s license
2220
+ */
2221
+ DL_CLASS_CODE_MR_FROM = 604,
2222
+ /**
2223
+ * Expiration date of MR driver’s license
2224
+ */
2225
+ DL_CLASS_CODE_MR_TO = 605,
2226
+ /**
2227
+ * Restrictions for MR driver’s license
2228
+ */
2229
+ DL_CLASS_CODE_MR_NOTES = 606,
2230
+ /**
2231
+ * Validity date of HR driver’s license
2232
+ */
2233
+ DL_CLASS_CODE_HR_FROM = 607,
2234
+ /**
2235
+ * Expiration date of HR driver’s license
2236
+ */
2237
+ DL_CLASS_CODE_HR_TO = 608,
2238
+ /**
2239
+ * Restrictions for HR driver’s license
2240
+ */
2241
+ DL_CLASS_CODE_HR_NOTES = 609,
2242
+ /**
2243
+ * Validity date of HC driver’s license
2244
+ */
2245
+ DL_CLASS_CODE_HC_FROM = 610,
2246
+ /**
2247
+ * Expiration date of HC driver’s license
2248
+ */
2249
+ DL_CLASS_CODE_HC_TO = 611,
2250
+ /**
2251
+ * Restrictions for HC driver’s license
2252
+ */
2253
+ DL_CLASS_CODE_HC_NOTES = 612,
2254
+ /**
2255
+ * Validity date of MC driver’s license
2256
+ */
2257
+ DL_CLASS_CODE_MC_FROM = 613,
2258
+ /**
2259
+ * Expiration date of MC driver’s license
2260
+ */
2261
+ DL_CLASS_CODE_MC_TO = 614,
2262
+ /**
2263
+ * Restrictions for MC driver’s license
2264
+ */
2265
+ DL_CLASS_CODE_MC_NOTES = 615,
2266
+ /**
2267
+ * Validity date of RE driver’s license
2268
+ */
2269
+ DL_CLASS_CODE_RE_FROM = 616,
2270
+ /**
2271
+ * Expiration date of RE driver’s license
2272
+ */
2273
+ DL_CLASS_CODE_RE_TO = 617,
2274
+ /**
2275
+ * Restrictions for RE driver’s license
2276
+ */
2277
+ DL_CLASS_CODE_RE_NOTES = 618,
2278
+ /**
2279
+ * Validity date of R driver’s license
2280
+ */
2281
+ DL_CLASS_CODE_R_FROM = 619,
2282
+ /**
2283
+ * Expiration date of R driver’s license
2284
+ */
2285
+ DL_CLASS_CODE_R_TO = 620,
2286
+ /**
2287
+ * Restrictions for R driver’s license
2288
+ */
2289
+ DL_CLASS_CODE_R_NOTES = 621,
2290
+ /**
2291
+ * Validity date of CA driver’s license
2292
+ */
2293
+ DL_CLASS_CODE_CA_FROM = 622,
2294
+ /**
2295
+ * Expiration date of CA driver’s license
2296
+ */
2297
+ DL_CLASS_CODE_CA_TO = 623,
2298
+ /**
2299
+ * Restrictions for CA driver’s license
2300
+ */
2301
+ DL_CLASS_CODE_CA_NOTES = 624,
2302
+ /**
2303
+ * Citizenship Status
2304
+ */
2305
+ CITIZENSHIP_STATUS = 625,
2306
+ /**
2307
+ * Military Service From
2308
+ */
2309
+ MILITARY_SERVICE_FROM = 626,
2310
+ /**
2311
+ * Military Service To
2312
+ */
2313
+ MILITARY_SERVICE_TO = 627,
2314
+ /**
2315
+ * Validity date of NT driver’s license
2316
+ */
2317
+ DL_CLASS_CODE_NT_FROM = 628,
2318
+ /**
2319
+ * Expiration date of NT driver’s license
2320
+ */
2321
+ DL_CLASS_CODE_NT_TO = 629,
2322
+ /**
2323
+ * Restrictions for NT driver’s license
2324
+ */
2325
+ DL_CLASS_CODE_NT_NOTES = 630,
2326
+ /**
2327
+ * Validity date of TN driver’s license
2328
+ */
2329
+ DL_CLASS_CODE_TN_FROM = 631,
2330
+ /**
2331
+ * Expiration date of TN driver’s license
2332
+ */
2333
+ DL_CLASS_CODE_TN_TO = 632,
2334
+ /**
2335
+ * Restrictions for TN driver’s license
2336
+ */
2337
+ DL_CLASS_CODE_TN_NOTES = 633,
2338
+ /**
2339
+ * Validity date of D3 driver’s license
2340
+ */
2341
+ DL_CLASS_CODE_D3_FROM = 634,
2342
+ /**
2343
+ * Expiration date of D3 driver’s license
2344
+ */
2345
+ DL_CLASS_CODE_D3_TO = 635,
2346
+ /**
2347
+ * Restrictions for D3 driver’s license
2348
+ */
2349
+ DL_CLASS_CODE_D3_NOTES = 636,
2350
+ /**
2351
+ * Alt Date of expire
2352
+ */
2353
+ ALT_DATE_OF_EXPIRE = 637,
2354
+ /**
2355
+ * Validity date of CD driver’s license
2356
+ */
2357
+ DL_CLASS_CODE_CD_FROM = 638,
2358
+ /**
2359
+ * Expiration date of CD driver’s license
2360
+ */
2361
+ DL_CLASS_CODE_CD_TO = 639,
2362
+ /**
2363
+ * Restrictions for CD driver’s license
2364
+ */
2365
+ DL_CLASS_CODE_CD_NOTES = 640,
2366
+ /**
2367
+ * Issuer identification number
2368
+ */
2369
+ ISSUER_IDENTIFICATION_NUMBER = 641,
2370
+ /**
2371
+ * Second name
2372
+ */
2373
+ FT_SECOND_NAME = 647,
2374
+ /**
2375
+ * Third name
2376
+ */
2377
+ FT_THIRD_NAME = 648,
2378
+ /**
2379
+ * Fourth name
2380
+ */
2381
+ FT_FOURTH_NAME = 649,
2382
+ /**
2383
+ * Last name
2384
+ */
2385
+ FT_LAST_NAME = 650
2386
+ }