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 = "f819185d-e1e2-4e4f-a9b9-e43e876d3da7" and issue_code = "TAX" sorted by filing_year descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: received_date (date)

issue_code 1

  • TAX · 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
1548268 DICKSTEIN SHAPIRO LLP f819185d-e1e2-4e4f-a9b9-e43e876d3da7 Q2 DICKSTEIN SHAPIRO LLP 12208 THE VILLAGE OF BALD HEAD ISLAND 2014 second_quarter TAX Monitor the implementation of P.L. 112-141, National Flood Insurance Program Extension Act, 2012. Monitor federal action by the Internal Revenue Service regarding ferry commuter benefits, and congressional outreach regarding same.Monitor federal action and Congressional outreach regarding U.S. Fish and Wildlife Services proposed rule on Designation of Critical Habitat for the Northwest Atlantic Ocean Distinct Population Segment of the Loggerhead Sea Turtle. (Docket No. FWS-R4-ES-2012-0103). Congressional outreach regarding U.S. Army Corps of Engineer projects affecting Bald Head Island. Monitor passage of FY 2014 omnibus appropriations bill (P.L. 113-76). Monitor the process of the U.S. Army Corps of Engineers Environmental Impact Statement for the Installation of a Terminal Groin Structure at Bald Head Island, NC (Federal Register Docket #COE-2012-0017). H.R. 2288, Commuter Parity Act of 2013. H.R. 3080, Water Resources Reform and Development Act of 2013. S. 601, Water Resources Development Act of 2013. H.R. 3370, Homeowner Flood Insurance Affordability Act of 2013. S. 1846, Homeowner Flood Insurance Affordability Act of 2013. H.R. 3511, Keeping Flood Insurance Affordable Act of 2013. H.R. 3693, Flood Insurance Relief and Transparency Act of 2013. Draft, House Energy and Water Development and Related Agencies Appropriations Act, 2015. Draft, Senate Energy and Water Development and Related Agencies Appropriations Act, 2015. HOUSE OF REPRESENTATIVES,SENATE 30000   0 0 2014-07-10T22:40:22.407000-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 55.725ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API