lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
3 rows where filing_uuid = "53301cb3-bdae-4e9c-a482-53d5fc202fbc" sorted by filing_year descending
This data as json, CSV (advanced)
Suggested facets: government_entities, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2866675 | NAIOP 53301cb3-bdae-4e9c-a482-53d5fc202fbc | Q3 | NAIOP | 26865 | NAIOP | 2022 | third_quarter | TAX | Lobbied to extend deferred gain recognition date in Opportunity Zones program until 2028. Lobbied to oppose proposals in the Inflation Reduction Act to change the tax treatment and characterization of real estate partnership profits interests (known as carried interests) from their current treatment as capital gains to being treated as ordinary income for tax purposes. Lobbied for revisions to Section 179D (the Energy Efficient Commercial Buildings deduction) in the Inflation Reduction Act and for other enhancements of energy-efficiency incentives. Lobbied for tax incentives to facilitate conversions of commercial office buildings with high vacancy rates to affordable housing, and for enhancements to proposed Revitalizing Downtowns Act (S.2511; HR 4759). | HOUSE OF REPRESENTATIVES,SENATE,Treasury, Dept of | 229346 | 0 | 0 | 2022-10-16T14:13:37-04:00 | |
| 2866676 | NAIOP 53301cb3-bdae-4e9c-a482-53d5fc202fbc | Q3 | NAIOP | 26865 | NAIOP | 2022 | third_quarter | INS | Lobbied for the creation of a federal program, similar to the Terrorism Risk Insurance Act, to provide compensation to businesses for interruption losses resulting from a pandemic or outbreak of communicable disease (The Pandemic Risk Insurance Act of 2020, H.R. 7011). | HOUSE OF REPRESENTATIVES,SENATE | 229346 | 0 | 0 | 2022-10-16T14:13:37-04:00 | |
| 2866677 | NAIOP 53301cb3-bdae-4e9c-a482-53d5fc202fbc | Q3 | NAIOP | 26865 | NAIOP | 2022 | third_quarter | ENV | Lobbied on the Securities and Exchange Commissions proposed rule (titled The Enhancement and Standardization of Climate-Related Disclosure for Investors), requiring certain disclosures of climate-change related information by public companies. | HOUSE OF REPRESENTATIVES,SENATE | 229346 | 0 | 0 | 2022-10-16T14:13:37-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);