Driving License
Description
The Driving License document serves as an official identification and authorization to operate a motor vehicle. It includes personal information, a photograph, driver details, and relevant license classifications.
Schema Information
{
"type": "object",
"title": "Driver's License",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"itemName",
"lastName",
"firstName",
"dateOfBirth",
"countryOfBirth",
"licenseAcquiredDate",
"licenseExpiryDate",
"issuingEntity",
"licenseID",
"socialSecurityNumber"
],
"properties": {
"itemName": {
"type": "string"
},
"lastName": {
"type": "string"
},
"firstName": {
"type": "string"
},
"licenseID": {
"type": "string"
},
"dateOfBirth": {
"type": "string",
"format": "date"
},
"issuingEntity": {
"type": "string"
},
"countryOfBirth": {
"type": "string"
},
"licenseExpiryDate": {
"type": "string",
"format": "date"
},
"licenseAcquiredDate": {
"type": "string",
"format": "date"
},
"socialSecurityNumber": {
"type": "string"
},
"additionalInformation": {
"type": "object"
}
},
"additionalProperties": false
}