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

4 rows where filing_uuid = "5c8a4ac7-24f7-4e49-8aa2-46fd8518fbc5" sorted by filing_year descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: government_entities, received_date (date)

issue_code 4

  • CPI 1
  • ECN 1
  • TAX 1
  • TRD 1

filing_year 1

  • 2022 4

filing_period 1

  • first_quarter 4
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
2780377 TAIWAN SEMICONDUCTOR MANUFACTURING COMPANY (TSMC) 5c8a4ac7-24f7-4e49-8aa2-46fd8518fbc5 Q1 TAIWAN SEMICONDUCTOR MANUFACTURING COMPANY (TSMC) 401105575 TAIWAN SEMICONDUCTOR MANUFACTURING COMPANY (TSMC) 2022 first_quarter ECN HR4521 - America Competes Act of 2022 S3933 - CHIPS for America Act HR7178 - CHIPS for America Act S3832 - Endless Frontiers Act HR6978 - Endless Frontiers Act S.1260 - U.S. Innovation and Competitiveness Act Commerce, Dept of (DOC),HOUSE OF REPRESENTATIVES,SENATE   520000 0 0 2022-04-18T16:58:08-04:00
2780378 TAIWAN SEMICONDUCTOR MANUFACTURING COMPANY (TSMC) 5c8a4ac7-24f7-4e49-8aa2-46fd8518fbc5 Q1 TAIWAN SEMICONDUCTOR MANUFACTURING COMPANY (TSMC) 401105575 TAIWAN SEMICONDUCTOR MANUFACTURING COMPANY (TSMC) 2022 first_quarter TAX S3933 - CHIPS for America Act HR6978 - CHIPS for America Act S2107 - FABS Act - Bill to amend the Internal Revenue Code of 1986 to establish semiconductor manufacturing investment credit. Commerce, Dept of (DOC),HOUSE OF REPRESENTATIVES,SENATE   520000 0 0 2022-04-18T16:58:08-04:00
2780379 TAIWAN SEMICONDUCTOR MANUFACTURING COMPANY (TSMC) 5c8a4ac7-24f7-4e49-8aa2-46fd8518fbc5 Q1 TAIWAN SEMICONDUCTOR MANUFACTURING COMPANY (TSMC) 401105575 TAIWAN SEMICONDUCTOR MANUFACTURING COMPANY (TSMC) 2022 first_quarter TRD Discussions with the Department of Commerce Bureau of Information Security on amendments to the Export Administration Regulations (85 Fed. Reg. 23460). Discussions with the Department of Commerce, National Security Council and Congressional Staff regarding semiconductor chain challenges related to the "America's Supply Chains" Executive Order. Discussions related to the Department of Commerce Bureau of Industry and Security's notice of request for public comments on "Risks in the Semiconductor Manufacturing and Advanced Packaging Supply Chain."(86 Fed. Reg. 14308) Discussions with the Department of Commerce and the United States Trade Representative regarding the United States and European Union Trade & Technology Council and the proposed Indo-Pacific Economic Framework. Trade Act of 2021 Facilitating American-Built Semiconductors (FABS) Act Commerce, Dept of (DOC),HOUSE OF REPRESENTATIVES,Natl Security Council (NSC),SENATE,U.S. Trade Representative (USTR)   520000 0 0 2022-04-18T16:58:08-04:00
2780380 TAIWAN SEMICONDUCTOR MANUFACTURING COMPANY (TSMC) 5c8a4ac7-24f7-4e49-8aa2-46fd8518fbc5 Q1 TAIWAN SEMICONDUCTOR MANUFACTURING COMPANY (TSMC) 401105575 TAIWAN SEMICONDUCTOR MANUFACTURING COMPANY (TSMC) 2022 first_quarter CPI S3832 - Endless Frontiers Act HR6978 - Endless Frontiers Act HOUSE OF REPRESENTATIVES,SENATE   520000 0 0 2022-04-18T16:58:08-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 9.905ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API