Skip to main content

Passport

Description

Passport serves as an internationally recognized identification and travel document. It includes personal information, a photograph, nationality, and other essential details.

Schema Information

{
"type": "object",
"title": "Passport Information",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"passportNumber",
"givenNames",
"surname",
"nationality",
"dateOfBirth",
"sex",
"dateOfIssue",
"dateOfExpiry",
"issuingAuthority"
],
"properties": {
"sex": {
"type": "string"
},
"surname": {
"type": "string"
},
"givenNames": {
"type": "string"
},
"dateOfBirth": {
"type": "string",
"format": "date"
},
"dateOfIssue": {
"type": "string",
"format": "date"
},
"nationality": {
"type": "string"
},
"dateOfExpiry": {
"type": "string",
"format": "date"
},
"passportNumber": {
"type": "string"
},
"issuingAuthority": {
"type": "string"
},
"additionalInformation": {
"type": "object"
}
},
"additionalProperties": false
}