lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where filing_uuid = "9ddb57bb-90c7-400a-bc9f-b362fc62ec7d" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 3487949 | PORT SIDE STRATEGIES, LLC 9ddb57bb-90c7-400a-bc9f-b362fc62ec7d | Q4 | PORT SIDE STRATEGIES, LLC | 401105394 | CENTER FOR HEALTH AND DEMOCRACY | 2025 | fourth_quarter | MMM | S.1506 Medicare for All Act - in support. H.R.3069 - Medicare for All Act - in support. Issues related to the Centers for Medicare and Medicaid Services. Issues related to Medicare Advantage. S. 2032 Choose Medicare Act - in support. S.1105 - No UPCODE Act - in support. H.Res.704 - Expressing the sense of the House of Representatives that the Wasteful and Inappropriate Service Reduction Model undermines beneficiary access to health care and should not be implemented - in support. H.R.6109 - To amend title XVIII of the Social Security Act to establish certain requirements with respect to rates of reversed prior authorization coverage determinations under Medicare Advantage plans. - in support. H.R.6110 - To amend title XVIII of the Social Security Act to require Medicare Advantage plans to automatically reconsider determinations denying coverage. - in support. H.R.6111 - To amend title XVIII of the Social Security Act to require any advertisement of a Medicare Advantage plan to include information related to the rates of prior authorization denials under such plan. - in support. H.R.6108 - To amend title XI of the Social Security Act to require the Secretary to exclude certain individuals and entities who commit fraud from participation in any Federal health care program. - in support. H.R.6112 - To amend title XVIII of the Social Security Act to establish certain requirements with respect to the average monthly cost to provide coverage to an enrollee under Medicare Advantage plans. - in support. H.R.6113 - To amend title XVIII of the Social Security Act to impose limitations on contracts with Medicare Advantage organizations offering multiple Medicare Advantage plans under the Medicare program. - in support. H.R.6114 - To prohibit funds made available to the Department of Health and Human Services by previous Appropriations Acts from being used for any activity that makes Medicare Advantage the default under the Medicare program. - in support. H.R.6115 - To amend title XVIII of the Social Security Act to require … | HOUSE OF REPRESENTATIVES,SENATE | 20000 | 0 | 0 | 2026-01-16T09:42:27-05:00 | |
| 3487950 | PORT SIDE STRATEGIES, LLC 9ddb57bb-90c7-400a-bc9f-b362fc62ec7d | Q4 | PORT SIDE STRATEGIES, LLC | 401105394 | CENTER FOR HEALTH AND DEMOCRACY | 2025 | fourth_quarter | HCR | Issues related to out of pocket costs. | HOUSE OF REPRESENTATIVES,SENATE | 20000 | 0 | 0 | 2026-01-16T09:42:27-05:00 | |
| 3487951 | PORT SIDE STRATEGIES, LLC 9ddb57bb-90c7-400a-bc9f-b362fc62ec7d | Q4 | PORT SIDE STRATEGIES, LLC | 401105394 | CENTER FOR HEALTH AND DEMOCRACY | 2025 | fourth_quarter | PHA | Issues related to pharmacy benefit managers. H.R.9096 - Pharmacists Fight Back Act - in support. | HOUSE OF REPRESENTATIVES,SENATE | 20000 | 0 | 0 | 2026-01-16T09:42:27-05:00 | |
| 3487952 | PORT SIDE STRATEGIES, LLC 9ddb57bb-90c7-400a-bc9f-b362fc62ec7d | Q4 | PORT SIDE STRATEGIES, LLC | 401105394 | CENTER FOR HEALTH AND DEMOCRACY | 2025 | fourth_quarter | BUD | Issues related to H.R. 1 -- One Big Beautiful Bill Act. | HOUSE OF REPRESENTATIVES,SENATE | 20000 | 0 | 0 | 2026-01-16T09:42:27-05:00 | |
| 3487953 | PORT SIDE STRATEGIES, LLC 9ddb57bb-90c7-400a-bc9f-b362fc62ec7d | Q4 | PORT SIDE STRATEGIES, LLC | 401105394 | CENTER FOR HEALTH AND DEMOCRACY | 2025 | fourth_quarter | LBR | H.R.5433 - POP Act - in support. S.2836 - A bill to prohibit health insurance issuers and certain health care providers under Medicare from being under common ownership, and for other purposes - in support. | HOUSE OF REPRESENTATIVES,SENATE | 20000 | 0 | 0 | 2026-01-16T09:42:27-05: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);