Skip to main content

Company Website

Description

Website document represents the official website of a company. It encompasses information about the organization contact details.

Schema Information

{
"type": "object",
"title": "Company Website",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"companyName",
"address",
"phoneNumber",
"emailAddress",
"websiteURL"
],
"properties": {
"address": {
"type": "string"
},
"keyPeople": {
"type": "array",
"items": {
"type": "string"
}
},
"websiteURL": {
"type": "string"
},
"companyName": {
"type": "string"
},
"phoneNumber": {
"type": "string"
},
"emailAddress": {
"type": "string"
},
"additionalInformation": {
"type": "string"
}
},
"additionalProperties": false
}