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 = "84de775d-1f34-4e72-a77d-80eefe3db3aa" and issue_code = "MAR" sorted by filing_year descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: received_date (date)

issue_code 1

  • MAR · 1 ✖

filing_year 1

  • 2020 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
2481406 OCEAN CONSERVANCY 84de775d-1f34-4e72-a77d-80eefe3db3aa 2A OCEAN CONSERVANCY 8635 OCEAN CONSERVANCY 2020 second_quarter MAR Legislation pertaining to ocean acidification, harmful algal blooms, hypoxia, red tide/blue-green algae generally, Arctic shipping, red snapper/bluefin/groundfish fishing regulations, fisheries and the Magnuson-Stevens Act generally including fishery disaster assistance, USCG PARS, implementation of EO 13840, maritime shipping, ocean exploration/mapping, climate change and our oceans, marine debris, regional ocean data portals and ocean data legislation generally. NEPA regulations regarding GHG emissions and climate change. Marine Debris: S.1982 - Save Our Seas 2.0 Act S.2660 - Save Our Seas 2.0: Improving Domestic Infrastructure to Prevent Marine Debris Act S.2364 - Save Our Seas 2.0: Enhancing the Domestic Marine Debris Response Act S.2372 - Save Our Seas 2.0: Enhanced Global Engagement to Combat Marine Debris Act H.R.3969 - SOS 2.0 Act H.R.4636 - PLASTIC Seas Act H.R.5845/S.3263/S.3944 - Break Free From Plastic Pollution Act of 2020 S.3281 - Original Recycle Bottle Act of 2020 H.R.5902/S.3306 - MICRO Plastics Act of 2020 S.3306/H.R.5902 - MICRO Plastics Act of 2020 Ocean Acidification/Harmful Algal Blooms/Water Quality: H.R.335/S.10 - South Florida Coastal Waters Act of 2019 H.R.414 - Protecting Local Communities from Harmful Algal Blooms Act H.R.462 - Everglades for the Next Generation Act H.R.988 - NEAR Act of 2019 H.R.1237 - COAST Research Act of 2019 H.R.1716/S.778 - Coastal Communities Ocean Acidification Act of 2019 H.R.1834 - Defending Our National Marine Sanctuaries from Damaging Chemicals Act of 2019 H.R.1921 - Ocean Acidification Innovation Act of 2019 H.R.2448 - Ocean Acidification Research Partnerships Act H.R.2587/S.1375 - Reef Safe Act of 2019 H.R.2588/S.1371 - Oxybenzone and Octinoxate Impact Study of 2019 H.R.3297 - Harmful Algal Bloom Essential Forecasting Act H.R.3324 - Prioritizing Revised Operations to Eliminate Cyanobacteria Toxins in Florida Act H.R.4160/S.2429 - Restoring Resilient Reefs Act of 2019 H.R.6738 - Coral Reef Conservation Reauthorization Act of 2020 S. 778 - Coastal Communi… Commerce, Dept of (DOC),Council on Environmental Quality (CEQ),HOUSE OF REPRESENTATIVES,Interior, Dept of (DOI),Natl Oceanic & Atmospheric Administration (NOAA),Office of Management & Budget (OMB),Office of Science & Technology Policy (OSTP),SENATE,State, Dept of (DOS),U.S. Coast Guard (USCG)   146044 0 0 2020-07-20T10:57:00.453000-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.465ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API