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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: received_date (date)

issue_code 1

  • FOO · 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
598540 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 FOO Agriculture/food-related provisions of: H.R.45, to authorize grants to promote increased access to fresh fruit and vegetables in low-income areas. H.R.166, to amend the 2002 Farm Security and Rural Investment Act. H.R.206, to amend the 1977 Food Stamp Act. H.R.215, to amend the Food, Drug and Cosmetic Act and meat and poultry inspection laws. H.R.292, to amend the 2002 Farm Security and Rural Investment Act. H.R.357, to amend the 1946 Agricultural Marketing Act. H.R.912, to provide more funds for food safety research. H.R.992, to amend the Federal Food, Drug and Cosmetic Act and the Federal Meat Inspection Act. H.R.1148, to establish the Food Safety Administration. H.R.1344, to improve federal nutrition programs. H.R.1363, to amend the 1966 Child Nutrition Act. H.R.1396, to amend the 1990 Organic Foods Production Act. H.R.1616, to amend the 2002 Farm Security and Rural Investment Act. H.R.1938, to reduce hunger in the U.S. H.R.2129, to strengthen the 1977 Food Stamp Act. H.R.2301, to establish a livestock identification board. H.R.2315, to enhance the state inspection of meat and poultry in the U.S. H.R.2364, to promote expanded economic opportunities for farmers and ranchers. H.R.2629, to restore import and entry agricultural inspection functions to the USDA. H.R.2667, to establish a disabled farmers market nutrition pilot program. H.R.2997, to help certify the safety certification of imported food. H.R.3030, to amend Richard B. Russell Nation School Lunch Act to improve summer program. H.R.3077, to amend Food, Drug and Cosmetic Act to aid imported seafood safety. H.R.3115, amend Food, Drug and Cosmetic Act to limit carbon monoxide use in meat, poultry and seafood. H.R.3172, to modify eligibility rules of food stamp program. H.R.3340, to amend the 1946 Agricultural Manufacturing Act to require raw ginseng labeling. H.R.3484, to amend federal meat and poultry inspection laws and the Food, Drug and Cosmetic Act. H.R.3485, to amend meat, poultry, egg products inspection and the Food, Drug and Cosmetic Acts. H.R.361… 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 1534.152ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API