Skip to content

Commit 57c1e0b

Browse files
Merge pull request #313 from regulaforensics/develop
Develop -> Stable
2 parents 78e62d3 + 76d35ef commit 57c1e0b

File tree

5 files changed

+39
-0
lines changed

5 files changed

+39
-0
lines changed

authenticity/e-check-diagnose.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ components:
127127
- 239
128128
- 240
129129
- 241
130+
- 242
130131
- 243
131132
- 244
132133
- 245
@@ -256,6 +257,7 @@ components:
256257
- "DOC_LIVENESS_BLACK_AND_WHITE_COPY_DETECTED"
257258
- "DOC_LIVENESS_ELECTRONIC_DEVICE_DETECTED"
258259
- "DOC_LIVENESS_INVALID_BARCODE_BACKGROUND"
260+
- "DOC_LIVENESS_VIRTUAL_CAMERA_DETECTED"
259261
- "CHD_ICAO_IDB_BASE32_ERROR"
260262
- "CHD_ICAO_IDB_ZIPPED_ERROR"
261263
- "CHD_ICAO_IDB_MESSAGE_ZONE_EMPTY"

e-security-feature-type.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,10 @@ components:
6363
- 55
6464
- 56
6565
- 57
66+
- 58
67+
- 59
68+
- 60
69+
- 61
6670
x-enum-descriptions:
6771
- "Blank element"
6872
- "Personalization element"
@@ -121,6 +125,10 @@ components:
121125
- "Liveness geometry check"
122126
- "Age check"
123127
- "Sex check"
128+
- "RFID vs ghost portrait comparison"
129+
- "Barcode vs ghost portrait comparison"
130+
- "Ghost vs live camera portrait comparison"
131+
- "External vs ghost portrait comparison"
124132
x-enum-varnames:
125133
- "BLANK"
126134
- "FILL"
@@ -179,3 +187,7 @@ components:
179187
- "LIVENESS_GEOMETRY_CHECK"
180188
- "AGE_CHECK"
181189
- "SEX_CHECK"
190+
- "PORTRAIT_COMPARISON_RFID_VS_GHOST"
191+
- "PORTRAIT_COMPARISON_BARCODE_VS_GHOST"
192+
- "PORTRAIT_COMPARISON_GHOST_VS_LIVE"
193+
- "PORTRAIT_COMPARISON_EXT_VS_GHOST"

p-process.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -480,6 +480,9 @@ components:
480480
returnTransliteratedFields:
481481
description: "Allows transliteration to be turned on or off; by default, it is enabled."
482482
type: boolean
483+
bsiTr03135Results:
484+
description: "When enabled, returns processing results in accordance with the BSI TR-03135 standard in addition to the existing processing results."
485+
type: boolean
483486

484487
MRZFormat:
485488
title: "MRZFormat"

rt-bsi-v2.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
openapi: 3.0.4
2+
components:
3+
schemas:
4+
BSIV2Item:
5+
title: "BSIV2Item"
6+
type: object
7+
required:
8+
- XML_buffer
9+
properties:
10+
XML_buffer:
11+
type: string

rt.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ components:
3838
- 50
3939
- 61
4040
- 62
41+
- 73
4142
- 85
4243
- 87
4344
- 97
@@ -78,6 +79,7 @@ components:
7879
- "Contains license"
7980
- "Contains result of MRZ position"
8081
- "Contains result of barcode position"
82+
- "Contains results in accordance with the BSI TR-03135 standard"
8183
- "Contains information about document position on the input image, its center, angle, etc"
8284
- "Contains result of MRZDetectorResult"
8385
- "Contains result of FaceDetection"
@@ -118,6 +120,7 @@ components:
118120
- "LICENSE"
119121
- "MRZ_POSITION"
120122
- "BARCODE_POSITION"
123+
- "BSI_XML_V2"
121124
- "DOCUMENT_POSITION"
122125
- "MRZ_DETECTOR"
123126
- "FACE_DETECTION"
@@ -178,6 +181,7 @@ components:
178181
50: "LicenseResult"
179182
61: "MRZPositionResult"
180183
62: "BarcodePositionResult"
184+
73: "BSIV2Result"
181185
85: "DocumentPositionResult"
182186
87: "MRZDetectorResult"
183187
97: "FaceDetectionResult"
@@ -232,6 +236,7 @@ components:
232236
- $ref: "#/components/schemas/VDSNCDataResult"
233237
- $ref: "#/components/schemas/VDSDataResult"
234238
- $ref: "#/components/schemas/MDLResult"
239+
- $ref: "#/components/schemas/BSIV2Result"
235240

236241
StatusResult:
237242
title: "StatusResult"
@@ -413,3 +418,9 @@ components:
413418
allOf:
414419
- $ref: "#/components/schemas/ResultItem"
415420
- $ref: "./rt-mdl.yml#/components/schemas/MDLItem"
421+
422+
BSIV2Result:
423+
title: "BSIV2Result"
424+
allOf:
425+
- $ref: "#/components/schemas/ResultItem"
426+
- $ref: "./rt-bsi-v2.yml#/components/schemas/BSIV2Item"

0 commit comments

Comments
 (0)