lobbying_activities
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 = "ENG" sorted by filing_year descending
This data as json, CSV (advanced)
Suggested facets: received_date (date)
| 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2481407 | OCEAN CONSERVANCY 84de775d-1f34-4e72-a77d-80eefe3db3aa | 2A | OCEAN CONSERVANCY | 8635 | OCEAN CONSERVANCY | 2020 | second_quarter | ENG | Offshore oil and gas, OCSLA reforms, DoI five year plan, offshore oil safety rules (well control rule), oil spill response, offshore wind energy, port energy infrastructure, CZMA consistency, renewable marine energy resources. H.R.205 - Protecting and Securing Floridas Coastline Act of 2019 H.R.279 - California Clean Coast Act of 2019 H.R.286 - Florida Coastal Protection Act H.R.287 - New England Coastal Protection Act H.R.291 - Coastal Economies Protection Act H.R.309 - Stop Arctic Ocean Drilling Act of 2019 H.R.310 - West Coast Ocean Protection Act of 2019 H.R.337 - Defend our Coast Act H.R.341 - COAST Anti-Drilling Act H.R.1149 - Atlantic Coastal Economies Protection Act H.R.1335 - Safe COAST Act H.R.1606/S.828 - Atlantic Seismic Airgun Protection Act H.R.1941 - Coastal and Marine Economies Protection Act H.R.2352 - Marine Oil Spill Prevention Act H.R.3585 - Bolstering Economies, Anglers, Coastal Habitats, Ecosystems and Security in Florida Act H.R.5186/S.2906 - Stop Giving Big Oil Free Money Act of 2019 H.R.5695 - Offshore Accountability Act of 2020 H.R.7024/S.4046 - Climate Smart Ports Act S.13 - Florida Shores Protection and Fairness Act S.828 - Atlantic Seismic Airgun Protection Act S.1296 - New England Coastal Protection Act S.1304 - COAST Anti-Drilling Act S.1318 - West Coast Ocean Protection Act of 2019 S.1523 - Stop Arctic Ocean Drilling Act of 2019 S.1821/H.R.3203 - Marine Energy Research and Development Act of 2019 S.3485 - OFFSHORE Act of 2020 | 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
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);