lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
2 rows where filing_uuid = "884a2cdb-e3d9-4ece-9271-46c9982012e8" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 3803992 | ROBERTSON, MONAGLE, & EASTAUGH LLC (FKA ROBERTSON, MONAGLE & EASTAUGH PC) 884a2cdb-e3d9-4ece-9271-46c9982012e8 | Q1 | ROBERTSON, MONAGLE, & EASTAUGH LLC (FKA ROBERTSON, MONAGLE & EASTAUGH PC) | 33454 | WEST COAST SEAFOOD PROCESSORS ASSN | 2026 | first_quarter | MAR | ● Advise Client on opportunity to provide comments to USFWS on definitional change of squid as shellfish ● Provide Client with information/implications of S.4236 and gaining access to agriculture programs ● Participate in Hill staff discussions on MSA/ESA/MMPA reforms; continue to oppose the transfer of protected species management authority from NOAA to USFWS; advise Client on West Coast whale petition ● Outreach to NOAA on implementation of seafood EO and deregulatory agenda ● Continue to monitor federal agency activities, hearings (reports on US-CAN-MEX Senate & House IUU hearings in Q1) and legislation (S.688 & S.1369) related to IUU fishing and forced labor in the seafood industry; updates on NOAA MMPA comparability findings and status of industry-driven litigation; monitor S.2586 for Client interests ● Monitor Offshore Wind developments, related EOs, and track BOEM activities and House passage of the SPEED Act (H.R. 4776); share NAS OSW West Coast final report on impacts to fisheries | HOUSE OF REPRESENTATIVES,Interior, Dept of (DOI),Natl Oceanic & Atmospheric Administration (NOAA),SENATE,U.S. Fish & Wildlife Service (USFWS) | 15000 | 0 | 0 | 2026-04-08T13:40:23-04:00 | |
| 3803993 | ROBERTSON, MONAGLE, & EASTAUGH LLC (FKA ROBERTSON, MONAGLE & EASTAUGH PC) 884a2cdb-e3d9-4ece-9271-46c9982012e8 | Q1 | ROBERTSON, MONAGLE, & EASTAUGH LLC (FKA ROBERTSON, MONAGLE & EASTAUGH PC) | 33454 | WEST COAST SEAFOOD PROCESSORS ASSN | 2026 | first_quarter | TRD | ● No lobbying activity - continue to monitor NOAA trade developments around the Boston Seafood Show | Natl Oceanic & Atmospheric Administration (NOAA) | 15000 | 0 | 0 | 2026-04-08T13:40:23-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);