entity_relationships
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where parent_entity_id = 992584
This data as json, CSV (advanced)
Suggested facets: source_ref, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 402110 | 992584 992584 | 96 96 | lobbying_affiliate | lobbying_affiliated_orgs | 20300bfc-6bc9-4c16-9320-0c8a82aa0f8d | 1.0 | 2026-04-19 18:34:11 | ||||
| 402111 | 992584 992584 | 2272137 2272137 | lobbying_affiliate | lobbying_affiliated_orgs | 20300bfc-6bc9-4c16-9320-0c8a82aa0f8d | 1.0 | 2026-04-19 18:34:11 | ||||
| 402112 | 992584 992584 | 2215359 2215359 | lobbying_affiliate | lobbying_affiliated_orgs | 20300bfc-6bc9-4c16-9320-0c8a82aa0f8d | 1.0 | 2026-04-19 18:34:11 | ||||
| 402454 | 992584 992584 | 328 328 | lobbying_affiliate | lobbying_affiliated_orgs | b92f9f3a-833e-4ee3-9dce-29a103ecb182 | 1.0 | 2026-04-19 18:34:11 | ||||
| 402503 | 992584 992584 | 2007043 2007043 | lobbying_affiliate | lobbying_affiliated_orgs | 1bb59709-8cd1-4560-8a9d-feb9e3432eb6 | 1.0 | 2026-04-19 18:34:11 | ||||
| 402504 | 992584 992584 | 2196089 2196089 | lobbying_affiliate | lobbying_affiliated_orgs | 1bb59709-8cd1-4560-8a9d-feb9e3432eb6 | 1.0 | 2026-04-19 18:34:11 | ||||
| 402549 | 992584 992584 | 1112 1112 | lobbying_affiliate | lobbying_affiliated_orgs | d26bf5cd-1154-4caf-8ba0-4a766cfef61d | 1.0 | 2026-04-19 18:34:11 | ||||
| 402577 | 992584 992584 | 4541 4541 | lobbying_affiliate | lobbying_affiliated_orgs | 4d1dd743-3227-43b3-b993-c226f6adb7eb | 1.0 | 2026-04-19 18:34:11 | ||||
| 402595 | 992584 992584 | 523 523 | lobbying_affiliate | lobbying_affiliated_orgs | b0a04263-0074-4342-b840-914ef1fab855 | 1.0 | 2026-04-19 18:34:11 | ||||
| 402632 | 992584 992584 | 3227 3227 | lobbying_affiliate | lobbying_affiliated_orgs | 3780d0b2-d6f4-4a86-b0a8-9e6ed9ca2c6a | 1.0 | 2026-04-19 18:34:11 |
Advanced export
JSON shape: default, array, newline-delimited, object
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);