:Legal
The legal actor data structure in Cadastry is designed to represent a legal entity or company. It contains various attributes and details of the entity, including its industry, legal name, year founded, jurisdiction, registration number, tax ID, headquarters address, contact information, and social media profiles. This documentation page will outline the key fields in this data structure, their data types, and their respective descriptions.
Data Structure
The following table provides a breakdown of the key fields in the legal actor data structure:
| Key | Type | Description |
|---|---|---|
| type | string | The type of legal entity. |
| industry | string | The industry in which the entity operates. |
| legalName | string | The legal name of the entity. |
| yearFounded | integer | The year in which the entity was founded. |
| jurisdiction | string | The jurisdiction under which the entity is registered. |
| registrationID | string | The unique registration number assigned to the entity by the jurisdiction. |
| taxID | string | The tax identification number assigned to the entity by the jurisdiction. |
| headquarters | headquarters object | An object containing the address of the entity's headquarters. |
| contactInfo | contactInfo object | An object containing the contact information of the entity. |
| profiles | profiles object | An object containing the social media profiles of the entity. |
Headquaters
The headquarters object contains the following fields:
| Key | Type | Description ** |
|---|---|---|
| address | string | The street address of the headquarters. |
| city | string | The city in which the headquarters is located. |
| state | string | The state in which the headquarters is located. |
| zipCode | string | The zip code of the headquarters. |
| country | string | The country in which the headquarters is located. |
Contact Information
The contactInfo object contains the following fields:
| Key | Type | Description |
|---|---|---|
| string | The email address of the entity. | |
| mobilePhone | string | The mobile phone number of the entity. |
| address | string | The address of the entity's contact information. |
Profiles
The profiles object contains the following fields:
| Key | Type | Description |
|---|---|---|
| website | string | The website URL of the entity. |
| wiki | string | The Wikipedia page URL of the entity. |
| string | The Twitter handle of the entity. | |
| string | The Instagram handle of the entity. | |
| string | The Facebook page URL of the entity. | |
| string | The LinkedIn page URL of the entity. |
This legal actor data structure provides a comprehensive representation of a entity's key details, contact information, and social media profiles.
Example
"legal": {
"type":"company",
"industry": "Technology",
"legalName": "ACME Corp.",
"yearFounded": 1990,
"jurisdiction": "US",
"registrationID": "123456",
"taxID": "987654321",
"headquarters": {
"address": "123 Main Street",
"city": "New York",
"state": "NY",
"zipCode": "10001",
"country": "United States"
},
"contactInfo": {
"email": "info@acmecorp.com",
"mobilePhone": "+1 (555) 555-5555",
"address": "123 Main Street, Suite 200, New York, NY 10001"
},
"profiles": {
"website": "https://www.acmecorp.com",
"wiki": "https://en.wikipedia.org/wiki/ACME_Corp",
"twitter": "@ACME_Corp",
"instagram": "@acmecorp",
"facebook": "https://www.facebook.com/acmecorp",
"linkedin": "https://www.linkedin.com/company/acme-corp",
}
}