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 = "e1c9c7f6-00a2-46bf-829e-4df25ad1e06f" and issue_code = "BUD" sorted by filing_year descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: received_date (date)

issue_code 1

  • BUD · 1 ✖

filing_year 1

  • 2013 1

filing_period 1

  • fourth_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
1474789 MARCUS G. FAUST, PC e1c9c7f6-00a2-46bf-829e-4df25ad1e06f Q4 MARCUS G. FAUST, PC 14223 NV ENERGY 2013 fourth_quarter BUD H.J. RES 59 - Continuing Appropriations Resolution (PL 113-67), H.R. 1, the Senate vehicle for Disaster Relief Appropriations, (HUD CDBG Super storm Sandy Assistance); H.R. 152, the Disaster Relief Appropriations Act, 2013, (HUD CDBG Super storm Sandy Assistance); H.R. 2216, FY 2014 Military Construction/Veterans Appropriations, (potential appropriations issues related to smart meters, energy efficiency/renewable energy, micro grids and grid security); H.R. 2217, FY 2014 Homeland Security Appropriations, (potential appropriations issues related to Threat Scenario Project, Spare Transformer Equipment Program and Electric Sector PS-Prep); H.R. 2397, FY 2014 Defense Appropriations, (potential appropriations issues related to electric transportation, micro grids and grid security, smart meters, energy efficiency/renewable energy and Troops to Energy Jobs program); H.R. 2609, FY 2014 Energy and Water Appropriations, (potential appropriations issues related to fossil energy, nuclear energy, electric transportation, smart gird, energy innovation HUBs, transmission and renewable energy); H.R. 2610, FY 2014 Transportation, Housing and Urban Development, and Related Agencies Appropriations, (potential appropriations issues related to NHTSA Corporate Average Fuel Economy standards); H.R. 2786, FY 2014 Financial Services Appropriations, (potential appropriations issues related to public safety broadband network and electric utility pole attachments); H.R. 2787, FY 2014 Commerce/Justice/Science Appropriations, (potential appropriations issues related to public safety broadband network, NIST smart grid interoperability, cyber security standards and NSF STEM funding); H. Con. Res. 25, FY 2014 Budget Resolution, (budget issues generally); H.J. Res. 59, FY 2014 Continuing Resolution, (budget issues generally); FY 2014 Interior/Environment Appropriations, (potential appropriations issues related to 316(b) regulation governing power plant cooling water systems, CCR regulation and Regional Haze regulation); S. 1243, FY 2014 Transp… HOUSE OF REPRESENTATIVES,SENATE 50000   0 0 2014-01-13T10:19:57.023000-05: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 684.565ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API