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 = "ec3fd4e5-4d9f-412f-a67f-9400c8fa8f22", filing_year = 2024 and issue_code = "LBR" sorted by filing_year descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: received_date (date)

issue_code 1

  • LBR · 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
3217639 CHAMBER OF COMMERCE OF THE U.S.A. ec3fd4e5-4d9f-412f-a67f-9400c8fa8f22 Q2 CHAMBER OF COMMERCE OF THE U.S.A. 38756 CHAMBER OF COMMERCE OF THE U.S.A. 2024 second_quarter LBR H.R. 17, Paycheck Fairness Act H.R. 20/S. 567, Richard L. Trumka Protecting the Right to Organize Act of 2023 H.R. 443, Enhancing Detection of Human Trafficking Act H.R. 1163/S. 1587, Protecting Taxpayers and Victims of Unemployment Fraud Act H.R. 1209/S. 537, Fair and Open Competition (FOCA) Act H.R. 2700/S. 1201, Employee Rights Act H.R. 2826/S. 1261, Save Local Business Act H.R. 3400, Small Businesses before Bureaucrats Act H.R. 5967, Unemployment Integrity Act of 2023 H.R. 6655, A Stronger Workforce for America Act H.R. 7367, Overtime Pay Flexibility Act H.R. 7784, Start Applying Labor Transparency (SALT) Act H.R. 8028/S. 4477 Second Chance Reauthorization Act of 2024 H.R. 8442, Worker Flexibility and Choice Act H.R. 8573, Union Members Right to Know Act S. 532, National Right-to-Work Act S. 781, Tipped Employee Protection Act S. 2624, Departments of Labor, Health and Human Services, and Education, and Related Agencies Appropriations Act, 2024 S. 4260, Warehouse Worker Protection Act H.J.Res. 98/S.J.Res. 49, Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the National Labor Relations Board relating to Standard for Determining Joint Employer Status H.J.Res. 116/S.J.Res. 63, CRA Resolution to invalidate regulation on Employee or Independent Contractor Classification Under the Fair Labor Standards Act H.J.Res. 147, Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Occupational Safety and Health Administration relating to "Worker Walkaround Representative Designation Process" Draft legislation titled Fiscal Year 2025 Labor, Health and Human Services, Education, and Related Agencies Appropriations Act Draft legislation titled Healthy Families Act Draft legislation titled Working Families Flexibility Act Re-nomination of Lauren McFerran to be the Chair of the National Labor Relations Board Nomination of Joshua Ditelberg to the National Labor Relations Board Proposed Rule, Office of Fed… Commerce, Dept of (DOC),Executive Office of the President (EOP),Federal Trade Commission (FTC),HOUSE OF REPRESENTATIVES,Justice, Dept of (DOJ),Labor, Dept of (DOL),Natl Labor Relations Board (NLRB),Occupational Safety & Health Administration (OSHA),Office of Management & Budget (OMB),Patent & Trademark Office (PTO),SENATE,U.S. Trade Representative (USTR)   13930000 0 0 2024-07-22T14:27:27-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 1736.615ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API