lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "0a5a8bea-a3ac-4083-9e00-e5eb6d2f23c3" and issue_code = "HCR" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 3198910 | NATIONAL MULTIPLE SCLEROSIS SOCIETY 0a5a8bea-a3ac-4083-9e00-e5eb6d2f23c3 | Q2 | NATIONAL MULTIPLE SCLEROSIS SOCIETY | 69674 | NATIONAL MULTIPLE SCLEROSIS SOCIETY | 2024 | second_quarter | HCR | S.652 - Safe Step Act (Murkowski/Hassan), support passage H.R. 830 - HELP Copays Act, support passage S.935- Fair Accountability and Innovative Research Drug Pricing Act of 2023, support passage H.R. 485, Protecting Health Care For All Patients Act, oppose passage as currently written S.127, the Pharmacy Benefit Manager Transparency Act, support passage Urged HELP and House Energy and Commerce Committee to hold roundtables and advance proposals that address workforce issues within the healthcare community. S. 2333 - Pandemic and All-Hazards Preparedness and Response Act, support passage H.R. 824, Telehealth Benefit Expansion for Workers Act of 2023, oppose passage H.R. 4421, Preparing for All Hazards and Pathogens Reauthorization Act, monitor legislation H.R. 4420, Preparedness and Response Reauthorization Act, monitor legislation Committee Draft -The Primary Care and Health Workforce Expansion Act, support passage S. 1339, the Pharmacy Benefit Manager Reform Act, support passage S.127, the PBM Transparency Act of 2023, support passage S.113, The Prescription Pricing for the People Act of 2023, support passage S.2052, Protect Patient Access to Pharmacies Act H.R. 3561, the PATIENT Act of 2023, support passage H.R. 3284, Providers and Payers Compete Act, support passage H.R. 4507, Transparency in Coverage Act, support passage H.R. 4508, Hidden Fee Disclosure Act, support passage H.R. 2816, PBM Sunshine and Accountability Act, support passage S.79- Interagency Patent Coordination and Improvement Act of 2023, support passage S. 142- Preserve Access to Affordable Generics and Biosimilars Act, support passage S.148- Stop STALLING Act, support passage S.150- Affordable Prescriptions for Patients Act of 2023, support passage S.775-Increasing Transparency in Generic Drug Applications Act, monitoring S.1067-Ensuring Timely Access to Generics Act of 2023, support passage S. 2780 Medication Affordability and Patent Integrity Ac H.R. 4189, the CONNECT for Health Act, support passage H.R. 1843, the Telehealth Expansion Act, s… | Centers For Disease Control & Prevention (CDC),Centers For Medicare and Medicaid Services (CMS),Food & Drug Administration (FDA),Health & Human Services, Dept of (HHS),HOUSE OF REPRESENTATIVES,SENATE | 41572 | 0 | 0 | 2024-07-18T12:57:22-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);