entity_dominance
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where entity_id = 1709848
This data as json, CSV (advanced)
| name_normalized ▼ | entity_id | dominance_ratio | candidate_count | size | notes |
|---|---|---|---|---|---|
| 1011 FOUNDATION | 1709848 1709848 | 999999.0 | 2 | 122761244.0 | unrelated_100x |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE entity_dominance (
name_normalized TEXT PRIMARY KEY,
entity_id INTEGER NOT NULL,
dominance_ratio REAL NOT NULL, -- size(top) / size(#2)
candidate_count INTEGER NOT NULL,
size REAL NOT NULL,
notes TEXT,
FOREIGN KEY (entity_id) REFERENCES entities(entity_id)
);
CREATE INDEX idx_ed_nn ON entity_dominance(name_normalized);