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

1 row where filing_uuid = "fdd9f636-cb59-4ccf-8359-eecf9efeb05a" and issue_code = "BAN" sorted by filing_year descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: received_date (date)

issue_code 1

  • BAN · 1 ✖

filing_year 1

  • 2024 1

filing_period 1

  • fourth_quarter 1
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
3309571 AMERICAN BANKERS ASSOCIATION fdd9f636-cb59-4ccf-8359-eecf9efeb05a Q4 AMERICAN BANKERS ASSOCIATION 1785 AMERICAN BANKERS ASSOCIATION 2024 fourth_quarter BAN Bank On Certification Program Central Bank Digital Currency Cryptocurrency Deposit Insurance Reform Digital Assets Bank Capital Requirements/Basel Capital Proposal Postal Banking S.1323 & H.R.2891, Secure and Fair Enforcement (SAFE) Banking Act of 2023 H.R.4177 & S.2007, Improving Corporate Governance Through Diversity Act of 2023 H.R.2547, Comprehensive Debt Collection Improvement Act S.3937 & H.R.758, Promoting Access to Capital in Underbanked Communities Act of 2023 H.R. 1533 & S. 2252, Promoting New and Diverse Depository Institutions Act Emergency Capital Investment Issues for CDFI and MDI Institutions H.R.7351, To amend the Consumer Financial Protection Act of 2010 to provide for the supervision of non-depository persons offering or making small business loans, and for other purposes S. 2677, Stop Overdraft Profiteering Act of 2021 S. 4356, Responsible Financial Innovation Act The impact of Environmental, Social and Governance guidance and regulatory proposals on banking UDAAP Supervisory Policies and Adjudication Procedures Community Reinvestment Act Final Rule Applying Community Reinvestment Act to credit unions S.1838 & H.R.3881 Credit Card Competition Act of 2023 S.4760, Digital Commodities Consumer Protection Act of 2022 Merchant Category Codes S.1790, Failed Bank Executives Clawback Act S.293 & H.R.2743, Fair Access to Banking Act H.R.2799, Expanding Access to Capital Act of 2023 H.R.2603, To require the Securities and Exchange Commission to revise certain thresholds related to smaller reporting companies, accelerated filers, and large accelerated filers, and for other purposes H.R.2798, Consumer Financial Protection Bureau Transparency and Accountability Reform Act H.R.1382, TABS Act of 2023 H.R.1411, Consumer Financial Protection Bureau-Inspector General Reform Act H.R.2489, the Consumer Financial Protection Bureau Dual Mandate and Economic Analysis Act H.R.1313, the Transparency in Consumer Financial Protection Bureau Cost-Benefit Analysis Act H.R.1719, Making the Consumer Financial Protection Bure… HOUSE OF REPRESENTATIVES,SENATE,Treasury, Dept of   1570000 0 0 2025-01-21T13:32:20-05: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 58.608ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API