Skip to content

Commit 2f86e9b

Browse files
Merge pull request #304 from regulaforensics/feature/48428
48428 - add mDL
2 parents b785c1e + db62fae commit 2f86e9b

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
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.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,7 @@ components:
196196
104: "DocumentBinaryInfoResult"
197197
105: "RFIDGraphicsInfoResult"
198198
109: "ByteArrayResult"
199+
121: "MDLResult"
199200
124: "VDSNCDataResult"
200201
125: "VDSDataResult"
201202

@@ -239,6 +240,7 @@ components:
239240
- $ref: "#/components/schemas/RFIDTextDataResult"
240241
- $ref: "#/components/schemas/VDSNCDataResult"
241242
- $ref: "#/components/schemas/VDSDataResult"
243+
- $ref: "#/components/schemas/MDLResult"
242244

243245
StatusResult:
244246
title: "StatusResult"
@@ -414,3 +416,9 @@ components:
414416
allOf:
415417
- $ref: "#/components/schemas/ResultItem"
416418
- $ref: "./rt-vds-data.yml#/components/schemas/VDSDataItem"
419+
420+
MDLResult:
421+
title: "MDLResult"
422+
allOf:
423+
- $ref: "#/components/schemas/ResultItem"
424+
- $ref: "./rt-mdl.yml#/components/schemas/MDLItem"

0 commit comments

Comments
 (0)