Skip to content

Commit 2bec6b3

Browse files
49106 - add bsiTr03135Results, BSIV2Result
1 parent e16d728 commit 2bec6b3

File tree

3 files changed

+25
-0
lines changed

3 files changed

+25
-0
lines changed

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)