SCHEMA REFERENCE
Company object
The GovFiles dataset contains a single normalized Company object per entity.
Fields the registry does not publish are returned as null. List fields are null when unknown and [] when known-empty. Dates are ISO 8601 (YYYY-MM-DD).
Top-level fields
Four fields are required on every record. All others are optional and nullable.
us_de, us_ca, us_ny, etc."Active", "Good Standing", "Revoked", "Withdrawn". Varies by state."LLC", "Corporation", "Limited Partnership", "Nonprofit".Nested objects
These submodels appear inside the Company object's structured fields. Field types marked null are optional.
Address
A postal address. Returned as an object when structured fields could be parsed; returned as a raw string otherwise. At least one of street_address, postal_code, or locality is always present.
Officer
A director, manager, member, registered agent, or other company officer.
"Director", "CEO", "Registered Agent", etc.Filing
A statutory filing — annual report, amendment, certificate, dissolution, etc. Requires date and at least one of title, description, or filing_type_name.
Identifier
An external ID tied to the company.
"us_fein", "us_sec_cik", "lei", etc.IndustryCode
"541512"."us_naics_2007", "uk_sic_2007", "eu_nace_2", etc.PreviousName
AlternativeName
DBAs, trade names, abbreviations, and alternate-language legal names.
AllAttributes
Extended fields for foreign-qualified entities, registered agents, and mergers.
"10-49").surviving_company (name, company_number, jurisdiction) and effective_date.Enums
BranchType
"F"- Foreign-qualified registration.
"L"- Local / domestic.
EntityType
"Person"- Natural person.
"Company"- Legal entity.
AlternativeNameType
"trading"- DBA / trade name.
"abbreviation"- Short form of the legal name.
"legal"- Alternate-language legal name.
"alias"- Known-as name.
"unknown"- Type not classified by the registry.
Full example
{
"company_number": "5910230",
"name": "VERTICAL VENTURES LLC",
"jurisdiction_code": "us_de",
"retrieved_at": "2026-04-09",
"incorporation_date": "2021-06-08",
"dissolution_date": null,
"current_status": "Good Standing",
"company_type": "Limited Liability Company",
"registry_url": "https://icis.corp.delaware.gov/ecorp/entitysearch/...",
"website": "https://verticalventures.example",
"telephone_number": "+1-302-555-0199",
"fax_number": null,
"branch": "L",
"registered_address": {
"street_address": "1209 Orange St",
"locality": "Wilmington",
"region": "DE",
"postal_code": "19801",
"country": "United States",
"country_code": "US"
},
"headquarters_address": {
"street_address": "220 Main St, Suite 400",
"locality": "Austin",
"region": "TX",
"postal_code": "78701",
"country_code": "US"
},
"mailing_address": "PO Box 1024, Austin, TX 78767",
"officers": [
{
"name": "Michael J. Torres",
"position": "Member",
"other_attributes": {
"type": "Person"
}
}
],
"filings": [
{
"title": "Annual Report",
"date": "2025-02-28",
"uid": "AR-2025-0291847",
"filing_type_name": "Annual Report"
},
{
"title": "Certificate of Formation",
"date": "2021-06-08",
"uid": "CF-2021-0591023",
"filing_type_name": "Certificate of Formation"
}
],
"identifiers": [
{ "uid": "87-1234567", "identifier_system_code": "us_fein" }
],
"industry_codes": [
{ "code": "541512", "code_scheme_id": "us_naics_2022", "name": "Computer Systems Design Services" }
],
"previous_names": [
{ "company_name": "TORRES HOLDINGS LLC", "con_date": "2023-02-15" }
],
"alternative_names": [
{ "company_name": "Vertical Ventures Capital", "type": "trading" }
],
"total_shares": { "number": 10000, "share_class": "Common" },
"all_attributes": {
"registered_agent_name": "CT Corporation System",
"registered_agent_address": "1209 Orange St, Wilmington, DE 19801",
"number_of_employees": "10-49"
}
}