anchor_conflicts
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
0 rows where entity_id = 2117708
This data as json
0 records
CREATE TABLE anchor_conflicts (
entity_id INTEGER NOT NULL,
conflicting_pair TEXT NOT NULL, -- e.g., 'EIN-vs-LEI'
detail TEXT, -- registry lookup divergence detail
detected_at TEXT NOT NULL,
resolved_at TEXT,
resolution_note TEXT,
FOREIGN KEY (entity_id) REFERENCES entities(entity_id)
);
CREATE INDEX idx_anchor_conflicts_entity ON anchor_conflicts(entity_id);