lobbying_lobbyists
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where filing_uuid = "3dfc52db-d23f-449e-b41d-e66ebaa10cc4" sorted by lobbyist_name
This data as json, CSV (advanced)
| id | filing_uuid | lobbyist_name ▼ | covered_position | is_new |
|---|---|---|---|---|
| 1853152 | GREENBERG TRAURIG, LLP 3dfc52db-d23f-449e-b41d-e66ebaa10cc4 | ALAN SLOMOWITZ | Staff Member, House Transportation Cmte. | 0 |
| 1853155 | GREENBERG TRAURIG, LLP 3dfc52db-d23f-449e-b41d-e66ebaa10cc4 | DIANE BLAGMAN | House Appropriations Committee | 0 |
| 1853151 | GREENBERG TRAURIG, LLP 3dfc52db-d23f-449e-b41d-e66ebaa10cc4 | ED BARRON | Senate Agriculture Committee | 0 |
| 1853154 | GREENBERG TRAURIG, LLP 3dfc52db-d23f-449e-b41d-e66ebaa10cc4 | J WALSH | Legislative Assistant Rep. Jack Buecner | 0 |
| 1853153 | GREENBERG TRAURIG, LLP 3dfc52db-d23f-449e-b41d-e66ebaa10cc4 | MICHAEL WILLIAMS | 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);