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