lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "f356a8c3-e2e5-4f7e-b5eb-93ddc31fa066" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 3142760 | INDEPENDENT PHARMACY COOPERATIVE f356a8c3-e2e5-4f7e-b5eb-93ddc31fa066 | Q1 | INDEPENDENT PHARMACY COOPERATIVE | 313098 | INDEPENDENT PHARMACY COOPERATIVE | 2024 | first_quarter | PHA | IPC supports Drug Transparency in Medicaid Act (H.R. 1613) ICP supports Promoting Access to Treatments and Increasing Extremely Needed Transparent (PATIENT) Act (HR 3561) IPC supports Drug Transparency in Medicaid Act (S. 1038) IPC supports The Modernizing and Ensuring PBM Accountability Act (S 2973) IPC supports Pharmacy and Medically Underserved Areas Enhancement Act (S 1491) IPC supports Protecting Patients Access to Pharmacy Act (S. 2052) IPC supports The Health Care Price Transparency Act (H.R. 4822) IPC supports Lower Cost, More Transparency Act (LCMT) (H.R. 5378) IPC supports Protecting Patients Against PBM Abuses Act (H.R. 2880) IPC Transparency and Fairness for Pharmacies Act (H.R. 5393) IPC supports Senate Bi-Partisan Working Group for 340B Reform - RFI response. IPC Supports FDA - Development of Small Dispensers Assessment Under the Drug Supply Chain Security Act; Request for Comments (FDA-2023-N-3103) IPC supports the Inflation Reduction Act of 2022 and CMS implementation. IPC opposes S. 1339 Pharmacy Benefits Reform Act - because it may preempt state PBM laws relating to ERISA. IPC supports S. 1491 Pharmacy and Medically Underserved Areas Enhancement Act IPC supports S. 127 Pharmacy Benefit Manager Transparency Act IPC supports (H.R. 1770/S. 2477) The Equitable Community Access to Pharmacists Services Act CMS Implementation of PY 2024 Medicare Part D drug rule CMS Implementation of drug provisions of the IRA 2022. | Centers For Medicare and Medicaid Services (CMS),Federal Trade Commission (FTC),HOUSE OF REPRESENTATIVES,SENATE | 130000 | 0 | 0 | 2024-04-12T14:20:59-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);