Legal Entity
Enigma’s legal entity contains its legal type and, within the Registrations array, the registration filings made by that entity.
In the future, the legal entity may contain information such as Articles of Incorporation, Ultimate Beneficial Owners, etc.
Child attributes:
Column Name | Data Type | Description | Example |
---|---|---|---|
enigma_id | String | A unique ID for the entity. | L000017e91c91 |
legal_entity_type | String | The legal form of the entity, e.g. corporation, LLC, etc. | Corporation |
formation_date | String | The earliest non-null issue_date from the entity’s registrations, formatted YYYY-MM-DD. | 2024-09-25 |
data_sources | Array[String] | The data sources from which the business record was derived. | ["Corporate Registrations"] |
registrations | Array[Object] | The entity's US state-level registration filings. When there are multiple filings, the domestic filing is listed first, followed by foreign filings ordered from oldest to newest. | See Registrations |
{
"enigma_id": string,
"legal_entity_type": string,
"formation_date": string // YYYY-MM-DD
"data_sources": array[string],
"match_confidence": number,
"matched_fields": object, // {"field": "value"} for fields that were matched on
"registrations": array[object]
}
Updated 2 months ago