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 = "d0021aa5-b2d2-4e9f-90ae-c4d4bdf4c676" and issue_code = "ENV" sorted by filing_year descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: received_date (date)

issue_code 1

  • ENV · 1 ✖

filing_year 1

  • 2014 1

filing_period 1

  • second_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
1566450 INDEPENDENT PETROLEUM ASSOCIATION OF AMERICA d0021aa5-b2d2-4e9f-90ae-c4d4bdf4c676 Q2 INDEPENDENT PETROLEUM ASSOCIATION OF AMERICA 19230 INDEPENDENT PETROLEUM ASSOCIATION OF AMERICA 2014 second_quarter ENV H.R. 2513: Fracturing Regulations are Effective in State Hands Act H.AMDT.234: Amendment requires the Secretary of the Interior to include those areas requested by State Governors in any environmental review conducted or statement prepared for the leasing program under the National Environmental Policy ActH.R. 1154: BREATHE Act H.R. 1175: Focused Reduction of Effluence and Stormwater runoff through Hydrofracking Environmental Regulation Act of 2013 H.R. 1314: To amend the Endangered Species Act of 1973 to establish a procedure for approval of certain settlements H.R. 1921: Fracturing Responsibility and Awareness of Chemicals Act of 2013 H.R. 2825: CLEANER Act of 2013 H.R.2850 - EPA Hydraulic Fracturing Study Improvement Act H.R. 3080: The Water Resources Reform and Development Act S. 19: A bill to amend the Endangered Species Act of 1973 to establish a procedure for approval of certain settlements S.696: Safe Chemicals Act of 2013 S.1009: Chemical Safety Improvement Act S. 1234: Fracturing Regulations are Effective in State Hands Act S.AMDT.803: To create the National Endowment for the Oceans to promote the protection and conservation of United States ocean, coastal, and Great Lakes ecosystems Bureau of Land Management (BLM),Council on Environmental Quality (CEQ),Energy, Dept of,Environmental Protection Agency (EPA),Executive Office of the President (EOP),HOUSE OF REPRESENTATIVES,Interior, Dept of (DOI),SENATE,Small Business Administration (SBA),U.S. Fish & Wildlife Service (USFWS),U.S. Forest Service   427783 0 0 2014-07-21T10:32:06.577000-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 63.468ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API