Incorporation Certificate
Description
Certificate of Incorporation document validates the registration and existence of a company or business entity. It contains details such as the legal name, incorporation date, registration number, and jurisdiction.
Schema Information
{
"type": "object",
"title": "Certificate of Incorporation",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"documentType",
"companyName",
"registrationNumber",
"dateOfIncorporation"
],
"properties": {
"companyName": {
"type": "string"
},
"documentType": {
"type": "string"
},
"registeredAddress": {
"type": "string"
},
"registrationNumber": {
"type": "string"
},
"dateOfIncorporation": {
"type": "string",
"format": "date"
},
"additionalInformation": {
"type": "object"
}
},
"additionalProperties": false
}