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_uuid = "d785e508-eefc-48ab-8829-eb742e49ad01" sorted by filing_year descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: government_entities, received_date (date)

issue_code 6

  • CPT 1
  • HCR 1
  • HOU 1
  • IMM 1
  • TAX 1
  • TRD 1

filing_year 1

  • 2022 6

filing_period 1

  • second_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
2818993 CENTER FOR INDIVIDUAL FREEDOM d785e508-eefc-48ab-8829-eb742e49ad01 Q2 CENTER FOR INDIVIDUAL FREEDOM 63952 CENTER FOR INDIVIDUAL FREEDOM 2022 second_quarter CPT H.R. 4130 - American Music Fairness Act - Correspondence with United States House of Representatives in support of the American Music Fairness Act (H.R. 4130) to address inequities in copyright royalties for recorded performances of music; research relating thereto. HOUSE OF REPRESENTATIVES   10000 0 0 2022-07-14T13:07:12-04:00
2818994 CENTER FOR INDIVIDUAL FREEDOM d785e508-eefc-48ab-8829-eb742e49ad01 Q2 CENTER FOR INDIVIDUAL FREEDOM 63952 CENTER FOR INDIVIDUAL FREEDOM 2022 second_quarter TAX H.R. 5376 - Build Back Better Act - Correspondence with United States Senate in opposition to the 95% tax on prescription medicines contained in Section 139002 of the Build Back Better Act (H.R. 5376); research relating thereto. S. 4393 - Middle-Class Savings and Investment Act - Correspondence with United States Senate in support of the Middle Class Savings and Investment Act (S. 4393); research relating thereto. SENATE   10000 0 0 2022-07-14T13:07:12-04:00
2818995 CENTER FOR INDIVIDUAL FREEDOM d785e508-eefc-48ab-8829-eb742e49ad01 Q2 CENTER FOR INDIVIDUAL FREEDOM 63952 CENTER FOR INDIVIDUAL FREEDOM 2022 second_quarter TRD Correspondence with Office of the United States Trade Representative (USTR) and United States Department of Commerce in opposition to the proposal before the World Trade Organization (WTO) to undermine intellectual property (IP) rights for Covid vaccines via compulsory waiver of IP protections existing under the Agreement on Trade-Related Aspects of Intellectual Property (TRIPS); research relating thereto. Commerce, Dept of (DOC),U.S. Trade Representative (USTR)   10000 0 0 2022-07-14T13:07:12-04:00
2818996 CENTER FOR INDIVIDUAL FREEDOM d785e508-eefc-48ab-8829-eb742e49ad01 Q2 CENTER FOR INDIVIDUAL FREEDOM 63952 CENTER FOR INDIVIDUAL FREEDOM 2022 second_quarter IMM H.R.4521 - America Creating Opportunities for Manufacturing, Pre-Eminence in Technology, and Economic Strength (COMPETES) Act S.1260 - United States Innovation and Competition Act (USICA) - Correspondence with the U.S. Senate in support of welcoming greater numbers of science, technology, engineering and mathematics (STEM) talent to the United States; research relating thereto. SENATE   10000 0 0 2022-07-14T13:07:12-04:00
2818997 CENTER FOR INDIVIDUAL FREEDOM d785e508-eefc-48ab-8829-eb742e49ad01 Q2 CENTER FOR INDIVIDUAL FREEDOM 63952 CENTER FOR INDIVIDUAL FREEDOM 2022 second_quarter HOU Housing Finance - 12 CFR Part 1254 - Correspondence with Federal Housing Finance Agency (FHFA) urging the highest measure of oversight and caution as the FHFA evaluates options for the housing enterprises Fannie Mae and Freddie Mac under the Validation and Approval of Credit Score Models Rule; research relating thereto. Federal Housing Finance Agency (FHFA)   10000 0 0 2022-07-14T13:07:12-04:00
2818998 CENTER FOR INDIVIDUAL FREEDOM d785e508-eefc-48ab-8829-eb742e49ad01 Q2 CENTER FOR INDIVIDUAL FREEDOM 63952 CENTER FOR INDIVIDUAL FREEDOM 2022 second_quarter HCR Prescription Drug Importation S.4348 - FDASLA Act of 2022 - Correspondence with United States Senate in opposition to proposals to introduce drug importation to the United States from foreign countries; research relating thereto. SENATE   10000 0 0 2022-07-14T13:07:12-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 6.717ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API