lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where filing_uuid = "338e0d0a-e3ee-4575-a538-7c4ebee5b911" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1197922 | CVS HEALTH (AND SUBSIDIARIES) 338e0d0a-e3ee-4575-a538-7c4ebee5b911 | Q4 | CVS HEALTH (AND SUBSIDIARIES) | 302778 | CVS CAREMARK INC | 2011 | fourth_quarter | TAX | Issues related to restructuring of corporate tax rates. | Centers For Medicare and Medicaid Services (CMS),HOUSE OF REPRESENTATIVES,SENATE | 2845000 | 0 | 0 | 2012-01-19T16:16:04-05:00 | |
| 1197923 | CVS HEALTH (AND SUBSIDIARIES) 338e0d0a-e3ee-4575-a538-7c4ebee5b911 | Q4 | CVS HEALTH (AND SUBSIDIARIES) | 302778 | CVS CAREMARK INC | 2011 | fourth_quarter | MMM | Medicare/Medicaid-Issues related to plan design and cost savings proposals. | Centers For Medicare and Medicaid Services (CMS),HOUSE OF REPRESENTATIVES,SENATE | 2845000 | 0 | 0 | 2012-01-19T16:16:04-05:00 | |
| 1197924 | CVS HEALTH (AND SUBSIDIARIES) 338e0d0a-e3ee-4575-a538-7c4ebee5b911 | Q4 | CVS HEALTH (AND SUBSIDIARIES) | 302778 | CVS CAREMARK INC | 2011 | fourth_quarter | LBR | Issues relating to a proposed anti-trust exemption for certain pharmacies and healthcare competition. HR 1409 Quality Health Care Coalition Act of 2011 HR 1839 - Community Pharmacy Fairness Act of 2011 HR 1946 - Preserving Our Hometown Independent Pharmacies Act | Centers For Medicare and Medicaid Services (CMS),HOUSE OF REPRESENTATIVES,SENATE | 2845000 | 0 | 0 | 2012-01-19T16:16:04-05:00 | |
| 1197925 | CVS HEALTH (AND SUBSIDIARIES) 338e0d0a-e3ee-4575-a538-7c4ebee5b911 | Q4 | CVS HEALTH (AND SUBSIDIARIES) | 302778 | CVS CAREMARK INC | 2011 | fourth_quarter | HCR | Issues related to Medicare Part D and anti-PBM legislation. Other issues include health care delivery system reforms, cost containment, medication adherence, restrictions on PBM cost saving tools like mail order, generics and restrictions on PBM audit practices. HR 979 - FEHBP Prescription Drug Integrity, Transparency and Cost Savings Act S 1058 Pharmacy Competition and Consumer Choice HR 1971 Pharmacy Competition and Consumer Choice HR 605 - Patients' Freedom to Choose Act S 312 - Patients' Freedom to Choose Act HR 2529-Restoring Access to Medication Act S 1368-Restoring Access to Medication Act | Centers For Medicare and Medicaid Services (CMS),HOUSE OF REPRESENTATIVES,SENATE | 2845000 | 0 | 0 | 2012-01-19T16:16:04-05:00 | |
| 1197926 | CVS HEALTH (AND SUBSIDIARIES) 338e0d0a-e3ee-4575-a538-7c4ebee5b911 | Q4 | CVS HEALTH (AND SUBSIDIARIES) | 302778 | CVS CAREMARK INC | 2011 | fourth_quarter | PHA | Issues related to drug safety and the drug supply chain. | Centers For Medicare and Medicaid Services (CMS),HOUSE OF REPRESENTATIVES,SENATE | 2845000 | 0 | 0 | 2012-01-19T16:16:04-05:00 | |
| 1197927 | CVS HEALTH (AND SUBSIDIARIES) 338e0d0a-e3ee-4575-a538-7c4ebee5b911 | Q4 | CVS HEALTH (AND SUBSIDIARIES) | 302778 | CVS CAREMARK INC | 2011 | fourth_quarter | COM | Privacy Issues relating to the inadvertent disclosure of protected health information. HR 654-Do Not Track Me Online Act S 1151 - Personal Data Privacy and Security Act S 1207- Data Security and Breach Notification Act of 2011 HR 2577- SAFE Data Act HR 1841-Data Accountability and Trust Act (DATA) of 2011 S 1408-Data Breach Notification Act of 2011 S 1535-Personal Data Protection and Breach Accountability Act of 2011 | Centers For Medicare and Medicaid Services (CMS),HOUSE OF REPRESENTATIVES,SENATE | 2845000 | 0 | 0 | 2012-01-19T16:16:04-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);