lobbying_lobbyists
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where filing_uuid = "e76e0ccd-07a6-4b7f-907a-e2d0b1da0a5a" sorted by lobbyist_name
This data as json, CSV (advanced)
| id | filing_uuid | lobbyist_name ▼ | covered_position | is_new |
|---|---|---|---|---|
| 2784280 | VENABLE LLP e76e0ccd-07a6-4b7f-907a-e2d0b1da0a5a | DARIS MEEKS | Senate Banking, Housing, and Urban Affairs Committee, Counsel; Director of Domestic Policy, Office of the Vice President | 1 |
| 2784278 | VENABLE LLP e76e0ccd-07a6-4b7f-907a-e2d0b1da0a5a | DAVID MULLON | 0 | |
| 2784279 | VENABLE LLP e76e0ccd-07a6-4b7f-907a-e2d0b1da0a5a | RALPH HARDY | 0 | |
| 2784277 | VENABLE LLP e76e0ccd-07a6-4b7f-907a-e2d0b1da0a5a | ROBERT SMITH | 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);