lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where filing_uuid = "601dd4e3-d2e5-4a3e-aad8-2aa1b2aa7a73" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 3011111 | TD BANK, NA 601dd4e3-d2e5-4a3e-aad8-2aa1b2aa7a73 | Q2 | TD BANK, NA | 400761286 | TD BANK, NA | 2023 | second_quarter | FIN | Discussions regarding mortgage finance Issues regarding implementation of Dodd-Frank act Basel III implementation; budget and fiscal policy Cyber-Security Fintech AML/BSA Data privacy Payments issues Consumer issues M&A policy (Mergers & Acquisitions) Sanctions Digital Assets/Cryptocurrencies/Stable coin Credit interchange Discussions around banking risk management including capital and liquidity management Issues surrounding regional bank failures Executive compensation clawbacks | Commodity Futures Trading Commission (CFTC),Consumer Financial Protection Bureau (CFPB),Federal Deposit Insurance Corporation (FDIC),Federal Reserve System,HOUSE OF REPRESENTATIVES,Office of the Comptroller of the Currency (OCC),SENATE,Treasury, Dept of | 260000 | 0 | 0 | 2023-07-18T15:15:44-04:00 | |
| 3011112 | TD BANK, NA 601dd4e3-d2e5-4a3e-aad8-2aa1b2aa7a73 | Q2 | TD BANK, NA | 400761286 | TD BANK, NA | 2023 | second_quarter | TAX | General tax policy Extension of expiring tax provisions Provisions related to social spending legislation New Markets Tax Credits International tax issues | HOUSE OF REPRESENTATIVES,Internal Revenue Service (IRS),SENATE,Treasury, Dept of | 260000 | 0 | 0 | 2023-07-18T15:15:44-04:00 | |
| 3011113 | TD BANK, NA 601dd4e3-d2e5-4a3e-aad8-2aa1b2aa7a73 | Q2 | TD BANK, NA | 400761286 | TD BANK, NA | 2023 | second_quarter | SMB | Issues related to small business lending and tax relief | Agriculture, Dept of (USDA),HOUSE OF REPRESENTATIVES,SENATE,Small Business Administration (SBA),Treasury, Dept of | 260000 | 0 | 0 | 2023-07-18T15:15:44-04:00 | |
| 3011114 | TD BANK, NA 601dd4e3-d2e5-4a3e-aad8-2aa1b2aa7a73 | Q2 | TD BANK, NA | 400761286 | TD BANK, NA | 2023 | second_quarter | HOU | Discussions related to housing finance and GSE Reform | HOUSE OF REPRESENTATIVES,Natl Economic Council (NEC),SENATE | 260000 | 0 | 0 | 2023-07-18T15:15:44-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);