home / openregs

entity_relationships

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

31 rows where parent_entity_id = 8184

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: created_at (date)

relationship_id ▼ parent_entity_id child_entity_id relationship_type source source_ref gen effective_start effective_end confidence_score notes created_at
57 8184 8184 8188 8188 bmf_group_exemption bmf   9154     1.0   2026-04-19 18:34:11
59 8184 8184 8195 8195 bmf_group_exemption bmf   9154     1.0   2026-04-19 18:34:11
61 8184 8184 8201 8201 bmf_group_exemption bmf   9154     1.0   2026-04-19 18:34:11
106 8184 8184 8415 8415 bmf_group_exemption bmf   9154     1.0   2026-04-19 18:34:11
132 8184 8184 8510 8510 bmf_group_exemption bmf   9154     1.0   2026-04-19 18:34:11
134 8184 8184 8521 8521 bmf_group_exemption bmf   9154     1.0   2026-04-19 18:34:11
137 8184 8184 8531 8531 bmf_group_exemption bmf   9154     1.0   2026-04-19 18:34:11
155 8184 8184 8649 8649 bmf_group_exemption bmf   9154     1.0   2026-04-19 18:34:11
195 8184 8184 8824 8824 bmf_group_exemption bmf   9154     1.0   2026-04-19 18:34:11
240 8184 8184 9042 9042 bmf_group_exemption bmf   9154     1.0   2026-04-19 18:34:11
241 8184 8184 9046 9046 bmf_group_exemption bmf   9154     1.0   2026-04-19 18:34:11
267 8184 8184 9170 9170 bmf_group_exemption bmf   9154     1.0   2026-04-19 18:34:11
327 8184 8184 9451 9451 bmf_group_exemption bmf   9154     1.0   2026-04-19 18:34:11
342 8184 8184 9490 9490 bmf_group_exemption bmf   9154     1.0   2026-04-19 18:34:11
347 8184 8184 9517 9517 bmf_group_exemption bmf   9154     1.0   2026-04-19 18:34:11
367 8184 8184 9570 9570 bmf_group_exemption bmf   9154     1.0   2026-04-19 18:34:11
466 8184 8184 9946 9946 bmf_group_exemption bmf   9154     1.0   2026-04-19 18:34:11
480 8184 8184 9999 9999 bmf_group_exemption bmf   9154     1.0   2026-04-19 18:34:11
566 8184 8184 10455 10455 bmf_group_exemption bmf   9154     1.0   2026-04-19 18:34:11
1956 8184 8184 17354 17354 bmf_group_exemption bmf   9154     1.0   2026-04-19 18:34:11
35583 8184 8184 194912 194912 bmf_group_exemption bmf   9154     1.0   2026-04-19 18:34:11
35591 8184 8184 194932 194932 bmf_group_exemption bmf   9154     1.0   2026-04-19 18:34:11
37143 8184 8184 202271 202271 bmf_group_exemption bmf   9154     1.0   2026-04-19 18:34:11
50767 8184 8184 246803 246803 bmf_group_exemption bmf   9154     1.0   2026-04-19 18:34:11
52880 8184 8184 250745 250745 bmf_group_exemption bmf   9154     1.0   2026-04-19 18:34:11
53765 8184 8184 252416 252416 bmf_group_exemption bmf   9154     1.0   2026-04-19 18:34:11
57387 8184 8184 257602 257602 bmf_group_exemption bmf   9154     1.0   2026-04-19 18:34:11
62408 8184 8184 266299 266299 bmf_group_exemption bmf   9154     1.0   2026-04-19 18:34:11
103609 8184 8184 417769 417769 bmf_group_exemption bmf   9154     1.0   2026-04-19 18:34:11
133473 8184 8184 566284 566284 bmf_group_exemption bmf   9154     1.0   2026-04-19 18:34:11
199825 8184 8184 836345 836345 bmf_group_exemption bmf   9154     1.0   2026-04-19 18:34:11

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE entity_relationships (
    relationship_id INTEGER PRIMARY KEY,
    parent_entity_id INTEGER,            -- NULL when parent is unknown (e.g., BMF GEN with no resolved central)
    child_entity_id INTEGER NOT NULL,
    relationship_type TEXT NOT NULL,     -- 'subsidiary_of' | 'parent_of' | 'affiliated_pac'
                                         -- | 'founder_family' | 'foreign_controlled' | 'joint_venture'
                                         -- | 'predecessor_to' | 'successor_to'
                                         -- | 'bmf_group_exemption' | 'lobbying_affiliate'
    source TEXT NOT NULL,                -- 'bmf' | 'sec_exhibit_21' | 'lobbying_affiliated_orgs'
                                         -- | 'gleif_successor' | 'fec_connected_org' | 'manual'
    source_ref TEXT,                     -- filing_uuid / accession_number / GEN / etc.
    gen TEXT,                            -- IRS Group Exemption Number when source='bmf'
    effective_start TEXT,
    effective_end TEXT,
    confidence_score REAL NOT NULL DEFAULT 1.0,
    notes TEXT,
    created_at TEXT NOT NULL,
    FOREIGN KEY (parent_entity_id) REFERENCES entities(entity_id),
    FOREIGN KEY (child_entity_id) REFERENCES entities(entity_id),
    CHECK (parent_entity_id IS NULL OR parent_entity_id != child_entity_id)
);
CREATE INDEX idx_er_parent ON entity_relationships(parent_entity_id) WHERE parent_entity_id IS NOT NULL;
CREATE INDEX idx_er_child ON entity_relationships(child_entity_id);
CREATE INDEX idx_er_type ON entity_relationships(relationship_type);
CREATE INDEX idx_er_gen ON entity_relationships(gen) WHERE gen IS NOT NULL;
CREATE INDEX idx_er_source ON entity_relationships(source);
CREATE INDEX idx_er_gen_child ON entity_relationships(gen, child_entity_id);
Powered by Datasette · Queries took 1058.432ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API