lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "5c0de7bc-e77a-4e2e-8219-dbe29ab131c3" and issue_code = "MMM" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1738804 | KAISER FOUNDATION HEALTH PLAN INC. 5c0de7bc-e77a-4e2e-8219-dbe29ab131c3 | Q3 | KAISER FOUNDATION HEALTH PLAN INC. | 21027 | KAISER FOUNDATION HEALTH PLAN INC | 2015 | third_quarter | MMM | Department of Health & Human Services: Medicare Advantage: operational issues, annual payment updates and policy changes. HR 2505 - Medicare Advantage Coverage Transparency Act of 2015: To amend title XVIII of the Social Security Act to require the annual reporting of data on enrollment in Medicare Advantage plans. Kelly (R-PA) HR 2507 - Increasing Regulatory Fairness Act of 2015: To amend title XVIII of the Social Security Act to establish an annual rulemaking schedule for payment rates under Medicare Advantage. Brady (R-TX) HR 2570 - Strengthening Medicare Advantage through Innovation and Transparency for Seniors of 2015: To amend title XVIII of the Social Security Act with respect to the treatment of patient encounters in ambulatory surgical centers in determining meaningful EHR use, establish a demonstration program requiring the utilization of Value-Based Insurance Design to demonstrate that reducing the copayments or coinsurance charged to Medicare beneficiaries for selected high-value prescription medications and clinical services can increase their utilization and ultimately improve clinical outcomes and lower health care expenditures, and for other purposes. Black (R-TN) HR 2581 - Preservation of Access for Seniors in Medicare Advantage Act of 2015: To amend title XVIII of the Social Security Act to establish a 3-year demonstration program to test the use of value-based insurance design methodologies under eligible Medicare Advantage plans, to preserve Medicare beneficiary choice under Medicare Advantage, to revise the treatment under the Medicare program of infusion drugs furnished through durable medical equipment, and for other purposes. Brady (R-TX) HR 2582 - Seniors' Health Care Plan Protection Act of 2015: To amend title XVIII of the Social Security Act to delay the authority to terminate Medicare Advantage contracts for MA plans failing to achieve minimum quality ratings, to make improvements to the Medicare Adjustment risk adjustment system, and for other purposes. Buchanan (R-FL) | Health & Human Services, Dept of (HHS),HOUSE OF REPRESENTATIVES,SENATE | 140000 | 0 | 0 | 2015-10-19T13:27:05.190000-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);