lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "2ba7f870-a924-48cd-a45e-e069823a4e82" and issue_code = "TAX" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1771020 | COMMUNITY BANKERS ASSOCIATION OF ILLINOIS 2ba7f870-a924-48cd-a45e-e069823a4e82 | Q4 | COMMUNITY BANKERS ASSOCIATION OF ILLINOIS | 400531588 | COMMUNITY BANKERS ASSOCIATION OF ILLINOIS | 2015 | fourth_quarter | TAX | Community Bankers Association of Illinois (CBAI) 2015 Federal Policy Priorities (House and Senate, FDIC, OCC) Credit Union Taxation and Expansion of Powers - Credit unions now indistinguishable from community banks, grown to control a significant share of the banking services market. Original business model now outdated. Credit unions strayed from founding purpose of serving individuals of modest means and with a common bond. Same financial services as community banks. Federal tax-exempt status, in exchange for serving their original mission is no longer justified. Credit unions paying their fair share of income taxes. Credit unions adhering to a common bond or operating within a well-defined local community, neighborhood or rural district. Credit unions similarity to other types of mutually owned financial institutions - savings banks (SB) and savings and loans (S&L). The exemption for SBs and S&Ls repealed by Congress in 1951 - (reason) - active competition with taxable institutions [community banks]. The Office of Management and Budget tax expenditure analysis - tax-exemption for credit unions result in loss of tax revenues of $9.46 billion over fiscal years 2014-2018. Credit union expansion of commercial lending powers - increasing the percentage of assets cap on member business lending (MBL). Loan growth at the expense of tax-paying community banks. Fundamental altering the exclusive member-focused character of credit unions - a condition for their original tax exemption. Applying Community Reinvestment Act (CRA) requirements to credit unions - same asset size distinction as banks and thrifts. The same Call Report filing requirements for credit unions as those imposed on community banks. Tax subsidy and level the playing field between credit unions and tax-paying community banks. Farm Credit System - Expansionist agenda of the Farm Credit System (FCS). FCS almost the equivalent of commercial banks yet retaining the benefits of Government Sponsored Enterprise (GSE) status. Tax advantages… | 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 | 50000 | 0 | 0 | 2016-01-18T12:59:15.390000-05: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);