lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "84fcc83d-e267-46dc-8a84-4e45f0b8f542" and issue_code = "TAX" sorted by filing_year descending
This data as json, CSV (advanced)
Suggested facets: received_date (date)
| 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 3158926 | PANASONIC CORPORATION OF NORTH AMERICA (PNA) 84fcc83d-e267-46dc-8a84-4e45f0b8f542 | Q1 | PANASONIC CORPORATION OF NORTH AMERICA (PNA) | 24032 | PANASONIC CORPORATION OF NORTH AMERICA (PNA) | 2024 | first_quarter | TAX | H.R. 1319 - American Rescue Plan Act of 2021 - Provides additional relief to address the continued impact of COVID-19 on the economy, public health, state and local governments, individuals, and businesses H.R. 2688 - To amend the Internal Revenue Code of 1986 to permanently allow a tax deduction for the mining, reclaiming, or recycling of critical minerals and metals from the United States, and to support the development of domestic supply chains for rare earth elements and other critical materials essential to United States technology, manufacturing, energy, healthcare and advanced medical devices, broadband infrastructure, transportation, and national defense - Critical Minerals tax deduction credit for EV battery production W.H. Made in America Tax Plan - Corporation tax reform plan W.H. The American Jobs Plan - Infrastructure plan that includes billions of dollars in tax credits and incentives H.R. 5376 - The Build Back Better Act - EV Tax incentives, new corporate tax rate, and other tax increases H.R. 4534 - FAIR Transition and Competition Act - Carbon Border Adjustment Tax Implementation of Pub. Law 117-169 - Inflation Reduction Act of 2022 - EV and clean energy incentives S. 5020 - Affordable Electric Vehicles for America Act of 2022 - Fix to IRA 30D implementation schedule H.R. 3665 - Defending American Jobs and Investment Act - A bill proposing penalties against companies headquartered in countries with a UTPR OECD Pillar 2 Implementation - Urging improved treatment of refundable and non-refundable tax credits in the United States that will conform to a global compliance regime H.R. 7024, the Tax Relief for American Families and Workers Act of 2024 - Includes a title that allows taxpayers to delay the date on which they must begin deducting their domestic R&D costs over a 5-year period; also, extends allowance for depreciation, amortization, or depletion in determining limitation of the business interest deduction, and extends 100% bonus depreciation and increases limitations on expensing depreciable b… | HOUSE OF REPRESENTATIVES,SENATE,Treasury, Dept of,White House Office | 190000 | 0 | 0 | 2024-04-19T16:28:04-04:00 |
Advanced export
JSON shape: default, array, newline-delimited, object
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);