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 NameData TypeDescriptionExample
enigma_idStringA unique ID for the entity.L000017e91c91
legal_entity_typeStringThe legal form of the entity, e.g. corporation, LLC, etc.Corporation
formation_dateStringThe earliest non-null issue_date from the entity’s registrations, formatted YYYY-MM-DD.2024-09-25
data_sourcesArray[String]The data sources from which the business record was derived.["Corporate Registrations"]
registrationsArray[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]
}