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 = "ea770e26-ffc1-4e76-973e-0cffd7606e52" 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

  • 2023 1

filing_period 1

  • third_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
3077519 AMERICAN BANKERS ASSOCIATION ea770e26-ffc1-4e76-973e-0cffd7606e52 Q3 AMERICAN BANKERS ASSOCIATION 1785 AMERICAN BANKERS ASSOCIATION 2023 third_quarter BAN Bank On Central Bank Digital Currency Cryptocurrency Deposit Insurance Digital Assets Nominations Bank Capital Requirements 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 H.R. 758, Promoting Access to Capital in Underbanked Communities Act of 2023 H.R.1533, Promoting New and Diverse Depository Institutions Act Emergency Capital Investment Issues for CDFI and MDI 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. H.R.7003, Expanding Financial Access for Underserved Communities Act 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 modernization Deposit Insurance Assessment Rates S.1838, Credit Card Competition Act H.R. 3881, Credit Card Competition Act 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 Prot… Federal Reserve System,HOUSE OF REPRESENTATIVES,SENATE,Treasury, Dept of   2160000 0 0 2023-10-20T14:49:50-04: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 59.69ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API