IdCardDocument
The document corresponding to an ID card
type IdCardDocument {
id: String!
type: DocumentType!
issueDate: Date
expiryDate: Date
mrz: String
number: String
files: [IdCardDocumentFile!]!
}
Fields
IdCardDocument.id ● String! non-null scalar
Unique identifier of the ID card document
IdCardDocument.type ● DocumentType! non-null enum
The type of the document
IdCardDocument.issueDate ● Date scalar
The date at which the ID card was issued
IdCardDocument.expiryDate ● Date scalar
The date at which the ID card expires
IdCardDocument.mrz ● String scalar
Machine-readable zone code of the ID card
IdCardDocument.number ● String scalar
Number of the ID card
IdCardDocument.files ● [IdCardDocumentFile!]! non-null object
List of the associated files
Implemented By
IdentificationDocument union