Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 38 additions & 1 deletion rt-rfid-binary-data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@ components:
- Files
properties:
Type:
type: integer
$ref: "#/components/schemas/RfidApplicationType"
Status:
$ref: "./e-rfid-error-codes.yml#/components/schemas/RFIDErrorCodes"
ApplicationID:
Expand All @@ -649,6 +649,43 @@ components:
items:
$ref: "#/components/schemas/RfidDataFile"

RfidApplicationType:
title: "RfidApplicationType"
type: integer
description: "Enumeration contains a set of constants that define the type
of application within the context of the communication session with electronic document"
enum:
- 0
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
x-enum-descriptions:
- "Root files"
- "ePassport application"
- "eID application"
- "eSign application"
- "eDL application"
- "TravelRecords application"
- "VisaRecords application"
- "AddBiometrics application"
- "Digital Travel Credentials"
- "Master File"
x-enum-varnames:
- "ROOT_FILES"
- "E_PASSPORT"
- "E_ID"
- "E_SIGN"
- "E_DL"
- "LDS2_TravelRecords"
- "LDS2_VisaRecords"
- "LDS2_AddBiometrics"
- "eDTC_PC"

RfidDataFile:
title: "RfidDataFile"
description: "Structure is used to describe the contents of a single file of the LDS of electronic document and the analysis
Expand Down