Skip to content

Commit e32fd45

Browse files
SP-19592: Add DTC
1 parent 164248b commit e32fd45

File tree

4 files changed

+26
-21
lines changed

4 files changed

+26
-21
lines changed

p-process.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ components:
187187
properties:
188188
generateDTCVC:
189189
type: boolean
190-
description: "This parameter is used to generate DTC-VC"
190+
description: "This parameter is used to generate separate DTC-VC data container from RFID session data."
191191
lcidFilter:
192192
description: "The list of LCID types to recognize. If empty, values with all LCID types will be extracted. Empty by default."
193193
type: array

rt-dtc-data.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
openapi: 3.0.3
2+
components:
3+
schemas:
4+
DTCVCResult:
5+
type: object
6+
required:
7+
- buf_length
8+
- light
9+
- list_idx
10+
- page_idx
11+
properties:
12+
ByteArray:
13+
type: string
14+
buf_length:
15+
type: integer
16+
light:
17+
type: integer
18+
list_idx:
19+
type: integer
20+
page_idx:
21+
type: integer
22+
result_type:
23+
$ref: "./rt.yml#/components/schemas/ContainerType"

rt-image-data.yml

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,6 @@ components:
1515
$ref: "#/components/schemas/GraphicFieldsList"
1616
- $ref: "./rt.yml#/components/schemas/ResultItem"
1717

18-
DTCVCResult:
19-
type: object
20-
required:
21-
- buf_length
22-
- light
23-
- list_idx
24-
- page_idx
25-
properties:
26-
buf_length:
27-
type: integer
28-
light:
29-
type: integer
30-
list_idx:
31-
type: integer
32-
page_idx:
33-
type: integer
34-
result_type:
35-
$ref: "./rt.yml#/components/schemas/ContainerType"
36-
3718
GraphicFieldsList:
3819
type: object
3920
required:

rt.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@ components:
165165
- $ref: "#/components/schemas/DocBarCodeInfo"
166166
- $ref: "#/components/schemas/LicenseResult"
167167
- $ref: "#/components/schemas/EncryptedRCLResult"
168+
- $ref: "#/components/schemas/DTCVCResult"
168169

169170
DocumentPositionResult:
170171
$ref: "./rt-document-position.yml#/components/schemas/DocumentPositionResult"
@@ -191,7 +192,7 @@ components:
191192
$ref: "./rt-image-data.yml#/components/schemas/GraphicsResult"
192193

193194
DTCVCResult:
194-
$ref: "./rt-image-data.yml#/components/schemas/DTCVCResult"
195+
$ref: "./rt-dtc-data.yml#/components/schemas/DTCVCResult"
195196

196197
DocumentTypesCandidatesResult:
197198
$ref: "./rt-doc-type-old.yml#/components/schemas/DocumentTypesCandidatesResult"

0 commit comments

Comments
 (0)