home / lobbying

lobbying_activities

Individual lobbying activities reported in quarterly filings. Each row is one issue area for one client — includes the specific issues lobbied on, government entities contacted, and income/expense amounts.

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

6 rows where filing_year = 2026 and issue_code = "IMM" sorted by filing_year descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: filing_type, registrant_name, registrant_id, client_name, specific_issues, government_entities, income_amount, is_termination, received_date (date)

issue_code 1

  • IMM · 6 ✖

filing_year 1

  • 2026 · 6 ✖

filing_period 1

  • first_quarter 6
id filing_uuid filing_type registrant_name registrant_id client_name filing_year ▲ filing_period issue_code specific_issues government_entities income_amount expense_amount is_no_activity is_termination received_date
3528117 MORRISON PUBLIC AFFAIRS GROUP 60d0d13e-4c28-4f14-b8d0-b5d4649b7b62 Q1 MORRISON PUBLIC AFFAIRS GROUP 67193 O'GRADY PEYTON INTERNATIONAL (USA) 2026 first_quarter IMM Healthcare immigration legislation HOUSE OF REPRESENTATIVES,SENATE,State, Dept of (DOS) 40000   0 0 2026-01-04T16:41:50-05:00
3528118 MORRISON PUBLIC AFFAIRS GROUP e226da6f-6af8-43e2-86eb-2e20b1206fd0 Q1 MORRISON PUBLIC AFFAIRS GROUP 67193 SEAMUS LITERARY & EDITORIAL SERVICES 2026 first_quarter IMM Private immigration legislation HOUSE OF REPRESENTATIVES,SENATE     0 0 2026-01-04T16:44:50-05:00
3528119 MORRISON PUBLIC AFFAIRS GROUP 423410e6-9f4c-416b-955c-c5b23b492d2d Q1 MORRISON PUBLIC AFFAIRS GROUP 67193 AMERICAN HOSPITAL ASSOCIATION 2026 first_quarter IMM Healthcare immigration legislation HOUSE OF REPRESENTATIVES,SENATE,State, Dept of (DOS) 20000   0 0 2026-01-04T16:48:45-05:00
3528120 MORRISON PUBLIC AFFAIRS GROUP d80f4851-5ed4-41f7-bd3d-223f9e4d3ac1 Q1 MORRISON PUBLIC AFFAIRS GROUP 67193 AMERICAN HOSPITAL ASSOCIATION 2026 first_quarter IMM Healthcare immigration legislation HOUSE OF REPRESENTATIVES,SENATE,State, Dept of (DOS) 20000   0 0 2026-01-04T16:49:06-05:00
3528121 MORRISON PUBLIC AFFAIRS GROUP 5ddf0af0-4787-48fb-a9c5-ef926377bbdc Q1 MORRISON PUBLIC AFFAIRS GROUP 67193 AMERICAN IMMIGRANT INVESTOR ALLIANCE 2026 first_quarter IMM Investor immigration legislation HOUSE OF REPRESENTATIVES,SENATE 20000   0 0 2026-01-04T16:58:52-05:00
3528252 HJ TOBIN POLICY CONSULTING 77d87955-19fe-4864-bcc7-08363d23301f 1T HJ TOBIN POLICY CONSULTING 401105892 INTERACT: ADVOCATES FOR INTERSEX YOUTH (FKA INTERACT) 2026 first_quarter IMM Privacy and civil liberties issues in the context of immigration administration and enforcement. Bureau of Citizenship & Immigration Services (BCIS),Homeland Security, Dept of (DHS)     0 1 2026-02-28T12:41:19-05:00

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE lobbying_activities (
            id INTEGER PRIMARY KEY,
            filing_uuid TEXT NOT NULL,
            filing_type TEXT NOT NULL,
            registrant_name TEXT NOT NULL,
            registrant_id INTEGER,
            client_name TEXT NOT NULL,
            filing_year INTEGER NOT NULL,
            filing_period TEXT NOT NULL,
            issue_code TEXT,
            specific_issues TEXT,
            government_entities TEXT,
            income_amount INTEGER,
            expense_amount INTEGER,
            is_no_activity INTEGER DEFAULT 0,
            is_termination INTEGER DEFAULT 0,
            received_date TEXT,
            CONSTRAINT fk_activity_filing FOREIGN KEY (filing_uuid)
                REFERENCES lobbying_filings_raw(filing_uuid)
        );
CREATE INDEX idx_act_client_name ON lobbying_activities(client_name COLLATE NOCASE);
CREATE INDEX idx_act_issue_code ON lobbying_activities(issue_code);
CREATE INDEX idx_act_filing_year ON lobbying_activities(filing_year);
CREATE INDEX idx_act_filing_uuid ON lobbying_activities(filing_uuid);
Powered by Datasette · Queries took 475.171ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API