lobbying_lobbyists
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "1a44ea5c-e7e1-49a3-af1c-e82cef367b1b" sorted by lobbyist_name
This data as json, CSV (advanced)
| id | filing_uuid | lobbyist_name ▼ | covered_position | is_new |
|---|---|---|---|---|
| 3282352 | REPUBLIC CONSULTING, LLC 1a44ea5c-e7e1-49a3-af1c-e82cef367b1b | GEORGE ROGERS | Leg. Asst., US Senate; Oversight Counsel, US House; General Counsel, Rules Committee, Counsel & Policy Advisor, Min Leader; Asst to Speaker, Speaker of the House | 0 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE lobbying_lobbyists (
id INTEGER PRIMARY KEY,
filing_uuid TEXT NOT NULL,
lobbyist_name TEXT NOT NULL,
covered_position TEXT,
is_new INTEGER DEFAULT 0,
CONSTRAINT fk_lobbyist_filing FOREIGN KEY (filing_uuid)
REFERENCES lobbying_filings_raw(filing_uuid)
);
CREATE INDEX idx_lob_filing_uuid ON lobbying_lobbyists(filing_uuid);
CREATE INDEX idx_lob_name ON lobbying_lobbyists(lobbyist_name COLLATE NOCASE);