home / openregs

anchor_conflicts

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

✎ View and edit SQL

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);
Powered by Datasette · Queries took 504.243ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API