Skip to main content

Address Proof

Description

Proof of address document serves as a means of verifying the residential address of an individual. It typically contains personal details and a valid address, often required for identification or regulatory purposes.

Schema Information

{
"type": "object",
"title": "Address Proof",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"documentType",
"name",
"currentAddress",
"issueDate"
],
"properties": {
"name": {
"type": "string"
},
"issueDate": {
"type": "string",
"format": "date-time"
},
"expiryDate": {
"type": "string",
"format": "date-time"
},
"documentType": {
"type": "string"
},
"currentAddress": {
"type": "string"
},
"additionalInformation": {
"type": "object"
}
},
"additionalProperties": false
}