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", filing_year = 2014 and issue_code = "ENG" sorted by filing_year descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: received_date (date)

issue_code 1

  • ENG · 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
1566451 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 ENG S.244: Amend the Energy Policy Act of 2005 to modify the Pilot Project offices of the Federal Permit Streamlining Pilot Project H.R. 6: Domestic Prosperity and Global Freedom Act H.R.767: Amend the Energy Policy Act of 2005 to modify the Pilot Project offices of the Federal Permit Streamlining Pilot ProjectH.R. 1154: BREATHE Act H.R. 1582: Energy Consumers Relief Act of 2013 H.R. 1613: Outer Continental Shelf Transboundary Hydrocarbon Agreements Authorization Act H.R. 1900: Natural Gas Pipeline Permitting Reform Act H.R. 1921: Fracturing Responsibility and Awareness of Chemicals Act of 2013 H.R. 1965: Federal Lands Jobs and Energy Security Act H.R. 2081: No More Excuses Energy Act of 2013 H.R. 2231: Offshore Energy and Jobs Act H.R. 2259: North Fork Watershed Protection Act of 2013 H.R. 2265: More Energy More Jobs Act H.R. 2511: Federal Land Freedom Act of 2013 H.R. 2513: Fracturing Regulations are Effective in State Hands Act H.R.2542: Regulatory Flexibility Improvements Act of 2013 H.R. 2728: Protecting States' Rights to Promote American Energy Security Act 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 H.R. 3826: Electricity Security and Affordability Act H.R. 4293: Natural Gas Gathering Enhancement Act H.R. 4304: Jumpstarting Opportunities with Bold Solutions 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 Act H.AMDT.237: Amendment limits Bureau of Ocean Energy and Ocean Energy Safety Service activities related to the National Ocean Policy developed under Executive Order 13547. The amendment requires a report be submitted to Congress identifying expenditures for fiscal years 2011-2013 by the Bureau of Ocean Energy, Ocean Energy Safety Service, and their predecessor agencies H.AMDT.240: An amendment numbered… 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 1463.445ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API