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 = "47edaaa7-b47e-4c19-bc77-2204d35358e4" and issue_code = "TAX" sorted by filing_year descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: received_date (date)

issue_code 1

  • TAX · 1 ✖

filing_year 1

  • 2008 1

filing_period 1

  • first_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
598544 FARMERS EDUCATIONAL COOPERATIVE UNION OF AMERICA 47edaaa7-b47e-4c19-bc77-2204d35358e4 Q1 FARMERS EDUCATIONAL COOPERATIVE UNION OF AMERICA 14187 FARMERS EDUCATIONAL COOPERATIVE UNION OF AMERICA 2008 first_quarter TAX Agriculture/food-related provisions of: H.R.182, to amend the 1986 Internal Revenue Code to impose excise tax on non-alternative-fueled cars. H.R.498, to amend the 1986 Internal Revenue Code to repeal oil and gas tax subsidies. H.R.517, to amend the 1986 Internal Revenue Code to give incentives for alternative energy. H.R.603, to amend the 1986 Internal Revenue Code to expand rural employment. H.R.604, to amend the 1986 Internal Revenue Code to raise incentives for E-85 fuel vehicle refueling property. H.R.793, to amend the 1986 Internal Revenue Code to make permanent renewable electricity production credit. H.R.794, to amend the 1986 Internal Revenue Code to make permanent the credit for wind-produced electricity. H.R.824, to amend the 1986 Internal Revenue Code to reclassify ethanol and biodiesel refining property. H.R.825, to amend the 1986 Internal Revenue Code to increase tax incentives for renewable fuels. H.R.833, to amend the 1986 Internal Revenue Code to change interest handling on farm real estate and housing. H.R.927, to amend the 1986 Internal Revenue Code to increase the credit for biodiesel used as fuel. H.R.1182, to amend the 1986 Internal Revenue Code regarding Section 1031 treatment of certain stock. H.R.1217, to amend the 1986 Internal Revenue Code to give a credit to certain livestock feeding operations. H.R.1772, to amend the 1986 Internal Revenue Code to give credits for installation of wind energy property. H.R.1882, to amend the 1986 Internal Revenue Code to allow tax-exempt farm risk management accounts. H.R.1929, to amend the 1986 Internal Revenue Code to exempt certain farmland from the estate tax. H.R.1965, to amend the 1986 Internal Revenue Code to modify credit to clean-renewable-energy bond holders. H.R.1987, to amend the 1986 Internal Revenue Code to allow credit for waste-vegetable-oil biodiesel. H.R.2110, to amend the 1986 Internal Revenue Code to provide for bonds to finance farm processing property. H.R.2280, to amend the 1986 Internal Revenue Code to treat certain farming bus… Agriculture, Dept of (USDA),Bureau of Citizenship & Immigration Services (BCIS),Bureau of Indian Affairs (BIA),Commodity Futures Trading Commission (CFTC),Council of Economic Advisers (CEA),Education, Dept of,Energy, Dept of,Environmental Protection Agency (EPA),Executive Office of the President (EOP),Farm Credit Administration,Federal Emergency Management Agency (FEMA),Federal Reserve System,Federal Trade Commission (FTC),Food & Drug Administration (FDA),Government Accountability Office (GAO),Health & Human Services, Dept of (HHS),Homeland Security, Dept of (DHS),HOUSE OF REPRESENTATIVES,Housing & Urban Development, Dept of (HUD),Interior, Dept of (DOI),Internal Revenue Service (IRS),Justice, Dept of (DOJ),Labor, Dept of (DOL),Maritime Administration (MARAD),Natl Aeronautics & Space Administration (NASA),Occupational Safety & Health Administration (OSHA),Office of Management & Budget (OMB),SENATE,Small Business Administration (SBA),State, Dept of (DOS),Surface Transportation Board (STB),Transportation, Dept of (DOT),Treasury, Dept of,U.S. Customs & Border Protection,U.S. Immigration & Customs Enforcement (ICE),U.S. International Trade Commission (ITC),U.S. Trade Representative (USTR)   210369 0 0 2008-04-18T11:33:12-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 56.006ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API