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 = "3d5fdaf8-559b-4de2-bd4d-e3fd9012cc05" and issue_code = "INS" sorted by filing_year descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: received_date (date)

issue_code 1

  • INS · 1 ✖

filing_year 1

  • 2024 1

filing_period 1

  • second_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
3218905 AMERICAN PROPERTY CASUALTY INSURANCE ASSOCIATION FKA PROPERTY CASUALTY INSURERS ASSOC. OF AMERICA 3d5fdaf8-559b-4de2-bd4d-e3fd9012cc05 Q2 AMERICAN PROPERTY CASUALTY INSURANCE ASSOCIATION FKA PROPERTY CASUALTY INSURERS ASSOC. OF AMERICA 26854 AMERICAN PROPERTY CASUALTY INSURANCE ASSOCIATION 2024 second_quarter INS H.R. 900 Flood Insurance Coverage S. 601 Flood Insurance Coverage S. 602 Flood Mapping H.R. 1306 Flood Mitigation H.R. 1307 Flood Insurance Coverage H.R. 1308 Flood Mapping H.R. 1309 Flood Insurance Coverage H.R. 1392 National Flood Insurance Program Extension S. 721 Flood Insurance Coverage **Issues lobbied without specific bill number: Crop Insurance and Wildfire **Issues lobbied without specific bill number: National Flood Insurance Program **Issues lobbied without specific bill number: Implementation of Risk-Rating 2.0 **Issues lobbied without specific bill number: SAFE Banking Act **Issues lobbied without specific bill number: Business of Insurance **Issues lobbied without specific bill number: Credit-based Insurance Underwriting S. 1039 National Flood Insurance Program H.R. 2568 National Flood Insurance Program H.R. 2891 SAFE Banking S. 1323 SAFE Banking S. 1359 Insurance for Cannabis Businesses S. 1417 National Flood Insurance Program H.R. 2984 Insurance for Cannabis Businesses H.R. 3880 Auto Insurance S. 2108 National Flood Insurance Program S. 2109 National Flood Insurance Program S. 2110 National Flood Insurance Program S. 2142 National Flood Insurance Program H.R. 4349 National Flood Insurance Program **Issues lobbied without specific bill number: FAA Reauthorization **Issues lobbied without specific bill number: Farm Bill Reauthorization H.R. 4686 National Flood Insurance Program S. 2391 National Flood Insurance Program Reauthorization H.R. 5535 Insurance Data Protection S. 2852 National Flood Insurance Program S. 2968 National Flood Insurance Program Reauthorization H.R. 5828 National Flood Insurance Program Reauthorization H.R. 5843 National Flood Insurance Program Reauthorization S. 2928 Surety Bonds for Water Infrastructure Projects S. 2860 SAFER Banking **Issues lobbied without specific bill number: Cyber Insurance S. 3153 National Flood Insurance Program H.R. 6082 National Flood Insurance Program H.R. 6304 National Flood Insurance Program H.R. 6365 Hindering Illegal Oil Shipments S. 3349 FIO Dat… Agriculture, Dept of (USDA),Federal Housing Finance Agency (FHFA),Homeland Security, Dept of (DHS),HOUSE OF REPRESENTATIVES,SENATE,Treasury, Dept of   1600000 0 0 2024-07-22T15:21:39-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 55.24ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API