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 = "AGR" sorted by filing_year descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: received_date (date)

issue_code 1

  • AGR · 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
598539 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 AGR Agriculture/food-related provisions of: H.CON.RES.25, expresses goal of U.S. to provide at least 25 percent of energy from renewable resources. H.CON.RES.142, expresses goal of U.S. to provide at least 25 percent of energy from renewable resources. H.R.80, to provide for activities to develop farms that produce food and energy. H.R.124, to require restoration of integrity to commodity limitation requirements. H.R.167, to provide for financial aid for farmers markets. H.R.185 to provide compensation for certain livestock losses. H.R.293, to provide financial aid for farmers markets. H.R.419, to provide aid to producers for crop and livestock losses. H.R.809, to repeal a section of the Federal Power Act. H.R.829 to amend the Federal Power Act. H.R.925, to provide emergency disaster aid to California for farm losses. H.R.926, to restrict assistance to any entity using eminent domain to obtain property for private development or that fails to pay relocation costs. H.R.1018, to amend Animal Health Protection Act. H.R.1152 to provide for challenge grants to encourage conservation easement purchases. H.R.1371, to amend the 2002 Farm Security and Rural Investment Act. H.R.1551, to reauthorize USDA conservation and energy programs. H.R.1583, to amend the 2002 Farm Security and Rural Investment Act. H.R.1600, to continue efforts to ensure good supply of fruits, vegetables, nuts and other specialty crops. H.R.1649, to delay closure or relocation of Farm Service Agency offices. H.R.1709, to authorize research to address bee Colony Collapse Disorder. H.R.1760, to amend the Federal Meat Inspection and the Poultry Products Inspection Acts. H.R.1882, to amend the 1986 Internal Revenue Code. H.R.2088, to provide cost-share payments in support of on-farm water conservation projects. H.R.2135, to enhance fair and open competition in agricultural commodity production and sale. H.R.2144, to extend USDA farm programs. H.R.2213, to amend the 1921 Packers and Stockyards Act. H.R.2235, to amend the 1981 Agriculture and Food Act. H.R.234… 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 57.864ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API