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

1 row where filing_uuid = "7b3d43ee-321f-41ee-aa7f-cf2f9e4ecc61" and issue_code = "BUD" sorted by filing_year descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: received_date (date)

issue_code 1

  • BUD · 1 ✖

filing_year 1

  • 2024 1

filing_period 1

  • third_quarter 1
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
3240529 AMERICAN SOCIETY OF CIVIL ENGINEERS 7b3d43ee-321f-41ee-aa7f-cf2f9e4ecc61 Q3 AMERICAN SOCIETY OF CIVIL ENGINEERS 3413 AMERICAN SOCIETY OF CIVIL ENGINEERS 2024 third_quarter BUD FY 2024 Appropriations H.R. 4394- Energy and Water Development and Related Agencies Appropriations Act H.R. 4367- Department of Homeland Security Appropriations Act S. 2443 - Energy and Water Development and Related Agencies Appropriations Act S.2437/H.R. 4820 - Transportation, Housing and Urban Development, and Related Agencies Appropriations Act, 2024 H.R. 5343/S. 2721 - Federal Disaster Responsibility Act H.R. 5860 - Continuing Appropriations Act, 2024 and Other Extensions Act H.R.6363 - Further Continuing Appropriations and Other Extensions Act, 2024 Transportation, Housing and Urban Development, and Related Agencies Appropriations Act, 2025(H.R.9028/ S.4796) Continuing Appropriations and Extensions Act, 2025(H.R. 9747 ) Water Resources Development Act of 2024 (H.R. 8812/S.4367) Department of Homeland Security Appropriations Act, 2025 (H.R.8752) Commerce, Justice, Science, and Related Agencies Appropriations Act, 2025 (H.R.9026/ S. 4795) Energy and Water Development and Related Agencies Appropriations Act, 2025 (HR.8997/ S.4927) Army, Dept of (Corps of Engineers),Education, Dept of,Energy, Dept of,Environmental Protection Agency (EPA),Federal Emergency Management Agency (FEMA),Health & Human Services, Dept of (HHS),Homeland Security, Dept of (DHS),HOUSE OF REPRESENTATIVES,Labor, Dept of (DOL),Natl Institute of Standards & Technology (NIST),Natl Oceanic & Atmospheric Administration (NOAA),Natl Science Foundation (NSF),SENATE,Transportation, Dept of (DOT),U.S. Geological Survey (USGS)   110981 0 0 2024-10-16T14:15:26-04: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 98.036ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API