Skip to content

Commit 78e62d3

Browse files
Merge pull request #305 from regulaforensics/develop
Develop -> Stable
2 parents df86120 + e16d728 commit 78e62d3

File tree

5 files changed

+29
-11
lines changed

5 files changed

+29
-11
lines changed

rt-mdl.yml

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

rt-rfid-binary-data.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -386,6 +386,7 @@ components:
386386
description: "List of remarks arisen during the analysis of SO data structure. Can be ParsingErrorCodes or ParsingNotificationCodes enum."
387387
type: array
388388
items:
389+
format: int64
389390
type: integer
390391
SignerInfos:
391392
description: "List of containers to store information about digital signature objects contained in the SO"
@@ -449,6 +450,7 @@ components:
449450
description: "Can be ParsingErrorCodes or ParsingNotificationCodes enum."
450451
type: array
451452
items:
453+
format: int64
452454
type: integer
453455

454456
RfidCertificateEx:
@@ -501,6 +503,7 @@ components:
501503
structure and its validity verification. Can be ParsingErrorCodes or ParsingNotificationCodes enum."
502504
type: array
503505
items:
506+
format: int64
504507
type: integer
505508
Origin:
506509
$ref: "#/components/schemas/RfidCertificateOrigin"
@@ -711,6 +714,7 @@ components:
711714
Can be ParsingErrorCodes or ParsingNotificationCodes enum."
712715
type: array
713716
items:
717+
format: int64
714718
type: integer
715719
DocFields_Text:
716720
description: "List of document text fields formed on the basis of the file contents"
@@ -805,6 +809,7 @@ components:
805809
description: "List of remarks arisen during the procedure. Can be ParsingErrorCodes or ParsingNotificationCodes enum."
806810
type: array
807811
items:
812+
format: int64
808813
type: integer
809814
AccessControlOptions:
810815
description: "List of structures with are used to describe the variants of the authentication or secure data access procedure

rt-vds-data.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ components:
3535
Notifications:
3636
type: array
3737
items:
38+
format: int64
3839
type: integer
3940
Signature:
4041
$ref: "./rt-rfid-binary-data.yml#/components/schemas/TrfFtBytes"

rt-vds-nc-data.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ components:
2727
Notifications:
2828
type: array
2929
items:
30+
format: int64
3031
type: integer
3132
Signature:
3233
$ref: "./rt-rfid-binary-data.yml#/components/schemas/TrfFtBytes"

rt.yml

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,7 @@ components:
4747
- 104
4848
- 105
4949
- 109
50-
- 120
5150
- 121
52-
- 122
53-
- 123
5451
- 124
5552
- 125
5653
x-enum-descriptions:
@@ -90,10 +87,7 @@ components:
9087
- "Contains RFID binary data"
9188
- "Contains RFID original graphics data"
9289
- "Digital Travel Credential data"
93-
- "Contains mDL device raw response"
94-
- "Contains mDL device parsed response"
95-
- "Contains mDL server raw response"
96-
- "Contains mDL server parsed response"
90+
- "Contains mDL parsed response"
9791
- "Contains result of VDS NC"
9892
- "Contains result of VDS"
9993
x-enum-varnames:
@@ -133,10 +127,7 @@ components:
133127
- "RFID_BINARY_DATA"
134128
- "RFID_ORIGINAL_GRAPHICS"
135129
- "DTC_VC"
136-
- "MDL_DEVICE_RAW_RESPONSE"
137-
- "MDL_DEVICE_PARSED_RESPONSE"
138-
- "MDL_SERVER_RAW_RESPONSE"
139-
- "MDL_SERVER_PARSED_RESPONSE"
130+
- "MDL_PARSED_RESPONSE"
140131
- "VDS_NC"
141132
- "VDS"
142133

@@ -196,6 +187,7 @@ components:
196187
104: "DocumentBinaryInfoResult"
197188
105: "RFIDGraphicsInfoResult"
198189
109: "ByteArrayResult"
190+
121: "MDLResult"
199191
124: "VDSNCDataResult"
200192
125: "VDSDataResult"
201193

@@ -239,6 +231,7 @@ components:
239231
- $ref: "#/components/schemas/RFIDTextDataResult"
240232
- $ref: "#/components/schemas/VDSNCDataResult"
241233
- $ref: "#/components/schemas/VDSDataResult"
234+
- $ref: "#/components/schemas/MDLResult"
242235

243236
StatusResult:
244237
title: "StatusResult"
@@ -414,3 +407,9 @@ components:
414407
allOf:
415408
- $ref: "#/components/schemas/ResultItem"
416409
- $ref: "./rt-vds-data.yml#/components/schemas/VDSDataItem"
410+
411+
MDLResult:
412+
title: "MDLResult"
413+
allOf:
414+
- $ref: "#/components/schemas/ResultItem"
415+
- $ref: "./rt-mdl.yml#/components/schemas/MDLItem"

0 commit comments

Comments
 (0)