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

9 rows where filing_uuid = "d0141153-3e56-4e94-a238-4a2ed350ec65" sorted by filing_year descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: received_date (date)

issue_code 9

  • AGR 1
  • ENV 1
  • FOO 1
  • INS 1
  • LBR 1
  • RET 1
  • TAX 1
  • TRA 1
  • TRD 1

filing_year 1

  • 2014 9

filing_period 1

  • second_quarter 9
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
1552520 NESTLE USA d0141153-3e56-4e94-a238-4a2ed350ec65 Q2 NESTLE USA 29037 NESTLE USA 2014 second_quarter INS Terrorism Risk insurance Agriculture, Dept of (USDA),Environmental Protection Agency (EPA),HOUSE OF REPRESENTATIVES,Pension Benefit Guaranty Corporation (PBGC),SENATE,State, Dept of (DOS),White House Office   333621 0 0 2014-07-16T11:48:33.280000-04:00
1552521 NESTLE USA d0141153-3e56-4e94-a238-4a2ed350ec65 Q2 NESTLE USA 29037 NESTLE USA 2014 second_quarter TRA HR 793 Safe and Efficient Transportation Act; entire bill. Driver safety and compliance. FY 2015 Transportation, Housing & Urban Development Bill. Agriculture, Dept of (USDA),Environmental Protection Agency (EPA),HOUSE OF REPRESENTATIVES,Pension Benefit Guaranty Corporation (PBGC),SENATE,State, Dept of (DOS),White House Office   333621 0 0 2014-07-16T11:48:33.280000-04:00
1552522 NESTLE USA d0141153-3e56-4e94-a238-4a2ed350ec65 Q2 NESTLE USA 29037 NESTLE USA 2014 second_quarter TAX General issues related to tax policy and reform. Agriculture, Dept of (USDA),Environmental Protection Agency (EPA),HOUSE OF REPRESENTATIVES,Pension Benefit Guaranty Corporation (PBGC),SENATE,State, Dept of (DOS),White House Office   333621 0 0 2014-07-16T11:48:33.280000-04:00
1552523 NESTLE USA d0141153-3e56-4e94-a238-4a2ed350ec65 Q2 NESTLE USA 29037 NESTLE USA 2014 second_quarter ENV Carbon Pollution Standards Agriculture, Dept of (USDA),Environmental Protection Agency (EPA),HOUSE OF REPRESENTATIVES,Pension Benefit Guaranty Corporation (PBGC),SENATE,State, Dept of (DOS),White House Office   333621 0 0 2014-07-16T11:48:33.280000-04:00
1552524 NESTLE USA d0141153-3e56-4e94-a238-4a2ed350ec65 Q2 NESTLE USA 29037 NESTLE USA 2014 second_quarter TRD Country of Origin Labeling. Anti-dumping/countervailing duties cases related to sugar. Agriculture, Dept of (USDA),Environmental Protection Agency (EPA),HOUSE OF REPRESENTATIVES,Pension Benefit Guaranty Corporation (PBGC),SENATE,State, Dept of (DOS),White House Office   333621 0 0 2014-07-16T11:48:33.280000-04:00
1552525 NESTLE USA d0141153-3e56-4e94-a238-4a2ed350ec65 Q2 NESTLE USA 29037 NESTLE USA 2014 second_quarter AGR Issues related to the Farm Bill implementation. Issues related to global food security. Agriculture, Dept of (USDA),Environmental Protection Agency (EPA),HOUSE OF REPRESENTATIVES,Pension Benefit Guaranty Corporation (PBGC),SENATE,State, Dept of (DOS),White House Office   333621 0 0 2014-07-16T11:48:33.280000-04:00
1552526 NESTLE USA d0141153-3e56-4e94-a238-4a2ed350ec65 Q2 NESTLE USA 29037 NESTLE USA 2014 second_quarter RET General pension issues including multiemployer pension plans. Agriculture, Dept of (USDA),Environmental Protection Agency (EPA),HOUSE OF REPRESENTATIVES,Pension Benefit Guaranty Corporation (PBGC),SENATE,State, Dept of (DOS),White House Office   333621 0 0 2014-07-16T11:48:33.280000-04:00
1552527 NESTLE USA d0141153-3e56-4e94-a238-4a2ed350ec65 Q2 NESTLE USA 29037 NESTLE USA 2014 second_quarter FOO Issues related to food safety, food packaging, food and beverage labeling, food imports and the First Lady's Let's Move initiative. Issues related to non-communicable diseases and sodium. Issues related to food manufacturing. S.1468 Revitalize American Manufacturing: Innovation Act. HR 4978 Bottled Water Quality Information Act. Agriculture, Dept of (USDA),Environmental Protection Agency (EPA),HOUSE OF REPRESENTATIVES,Pension Benefit Guaranty Corporation (PBGC),SENATE,State, Dept of (DOS),White House Office   333621 0 0 2014-07-16T11:48:33.280000-04:00
1552528 NESTLE USA d0141153-3e56-4e94-a238-4a2ed350ec65 Q2 NESTLE USA 29037 NESTLE USA 2014 second_quarter LBR Framework of Action/Child Labor Cocoa Coordinating Group. Workplace relations. Agriculture, Dept of (USDA),Environmental Protection Agency (EPA),HOUSE OF REPRESENTATIVES,Pension Benefit Guaranty Corporation (PBGC),SENATE,State, Dept of (DOS),White House Office   333621 0 0 2014-07-16T11:48:33.280000-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 167.387ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API