home / openregs

entity_aliases

Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API

0 rows where entity_id = 43731

✎ View and edit SQL

This data as json

0 records

CREATE TABLE entity_aliases (
    entity_id INTEGER NOT NULL,
    alias_name TEXT NOT NULL,
    alias_normalized TEXT NOT NULL,
    alias_source TEXT NOT NULL,          -- '990_filer' | 'sec_former_name' | 'lobbying_client'
                                         -- | 'fara_registrant' | 'sam_legal_name' | 'manual'
    effective_start TEXT,
    effective_end TEXT,
    FOREIGN KEY (entity_id) REFERENCES entities(entity_id),
    PRIMARY KEY (entity_id, alias_name, alias_source)
);
CREATE INDEX idx_alias_norm ON entity_aliases(alias_normalized);
CREATE INDEX idx_alias_norm_src ON entity_aliases(alias_normalized, alias_source);
Powered by Datasette · Queries took 113.944ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API