Properties
| Name | Type | Description |
|---|---|---|
| homepage | string | The company website's home page. |
| name | string | The company name. |
| registrationNumber | string | Registration number of the company. |
| registryLocation | string | Registry location of the company. |
| taxId | string | Tax ID of the company. |
| type | string | The company type. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Company",
"title": "Company",
"properties": {
"homepage": {
"description": "The company website's home page.",
"type": "string"
},
"name": {
"description": "The company name.",
"type": "string"
},
"registrationNumber": {
"description": "Registration number of the company.",
"type": "string"
},
"registryLocation": {
"description": "Registry location of the company.",
"type": "string"
},
"taxId": {
"description": "Tax ID of the company.",
"type": "string"
},
"type": {
"description": "The company type.",
"type": "string"
}
},
"type": "object"
}