lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where filing_uuid = "71a0d8a8-5ad7-4f83-995b-7c265e7061ba" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 3808629 | TD BANK, NA 71a0d8a8-5ad7-4f83-995b-7c265e7061ba | Q1 | TD BANK, NA | 400761286 | TD BANK, NA | 2026 | first_quarter | FIN | Commercial real estate finance Issues regarding implementation of Dodd-Frank Act Basel III capital standards Budget and fiscal policy Cybersecurity Fintech AML/BSA Data privacy Payments issues including Reg E Consumer issues Mergers & Acquisitions Sanctions Tariffs Digital Assets/Cryptocurrencies/Stablecoins Credit and debit interchange Bank risk management including capital and liquidity management Community Reinvestment Act Section 16 of the Securities Exchange Act Artificial Intelligence Open Banking Rate Caps Debanking and "operation choke point" Safeguarding Consumers from Advertising Misconduct(SCAM) Act | Consumer Financial Protection Bureau (CFPB),Federal Deposit Insurance Corporation (FDIC),Federal Reserve System,HOUSE OF REPRESENTATIVES,Office of Management & Budget (OMB),Office of the Comptroller of the Currency (OCC),SENATE,Treasury, Dept of | 630000 | 0 | 0 | 2026-04-15T07:52:30-04:00 | |
| 3808630 | TD BANK, NA 71a0d8a8-5ad7-4f83-995b-7c265e7061ba | Q1 | TD BANK, NA | 400761286 | TD BANK, NA | 2026 | first_quarter | TAX | General tax policy Extension of expiring tax provisions New Markets Tax Credits (NMTC) International tax issues Low Income Housing Tax Credits (LIHTC) | HOUSE OF REPRESENTATIVES,SENATE,Treasury, Dept of | 630000 | 0 | 0 | 2026-04-15T07:52:30-04:00 | |
| 3808631 | TD BANK, NA 71a0d8a8-5ad7-4f83-995b-7c265e7061ba | Q1 | TD BANK, NA | 400761286 | TD BANK, NA | 2026 | first_quarter | SMB | Issues related to small business lending and SBA 7a program Dodd Frank Act Section 1071 small business data collection | HOUSE OF REPRESENTATIVES,SENATE,Small Business Administration (SBA),Treasury, Dept of | 630000 | 0 | 0 | 2026-04-15T07:52:30-04:00 | |
| 3808632 | TD BANK, NA 71a0d8a8-5ad7-4f83-995b-7c265e7061ba | Q1 | TD BANK, NA | 400761286 | TD BANK, NA | 2026 | first_quarter | HOU | Discussions related to housing finance and GSE Reform | HOUSE OF REPRESENTATIVES,Office of Management & Budget (OMB),SENATE,Treasury, Dept of | 630000 | 0 | 0 | 2026-04-15T07:52:30-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);