documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "CMS", document_type = "Other" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, posted_date, posted_month, comment_start_date, withdrawn, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
| id | agency_id | docket_id | title | document_type | subtype | posted_date ▲ | posted_year | posted_month | comment_start_date | comment_end_date | last_modified | fr_doc_num | open_for_comment | withdrawn | object_id |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| CMS-2018-0154-0001 | CMS | Advance Notice of Methodological Changes for Calendar Year (CY) 2020 for Medicare Advantage (MA) Capitation Rates, Part C and Part D Payment Policies and 2020 Call Letter CMS-2018-0154 | Part I 2020 Advance Notice | Other | 2018-12-20T05:00:00Z | 2018 | 12 | 2018-12-20T05:00:00Z | 2019-03-02T04:59:59Z | 2019-03-02T02:01:50Z | 0 | 0 | 09000064839bbe46 | ||
| CMS-2018-0076-2278 | CMS | Medicare Program; Revisions to Payment Policies under the Physician Fee Schedule and Other Revisions to Part B for CY 2019; Medicare Shared Savings Program Requirements; Quality Payment Program; and Medicaid Promoting Interoperability Program (CMS-1693-P) CMS-2018-0076 | cost report | Other | 2018-08-17T04:00:00Z | 2018 | 8 | 2018-08-17T04:00:00Z | 2018-08-17T15:12:38Z | 0 | 0 | 0900006483630f27 | |||
| CMS-2018-0078-0001 | CMS | CY 2019 Hospital Outpatient PPS Policy Changes and Payment Rates and Ambulatory Surgical Center Payment System Policy Changes and Payment Rates CMS-1695-P CMS-2018-0078 | Hospital Outpatient PPS Policy Changes and Payment Rates and Ambulatory Surgical Center Payment System Policy Changes and Payment Rates CMS-1695-P | Other | 2018-07-25T04:00:00Z | 2018 | 7 | 2018-07-25T04:00:00Z | 2018-08-01T03:59:59Z | 2018-08-03T01:08:39Z | 0 | 0 | 0900006483559ca5 | ||
| CMS-2018-0075-3033 | CMS | HHS Blueprint to Lower Drug Prices and Reduce Out-of-Pocket Costs CMS-2018-0075 | Blueprint RFI from J Hassell | Other | 2018-07-19T04:00:00Z | 2018 | 7 | 2018-07-19T04:00:00Z | 2018-07-19T15:03:18Z | 0 | 0 | 0900006483512e4d | |||
| CMS-2018-0075-1721 | CMS | HHS Blueprint to Lower Drug Prices and Reduce Out-of-Pocket Costs CMS-2018-0075 | Academy of Independent Pharmacy | Other | 2018-07-11T04:00:00Z | 2018 | 7 | 2018-07-11T04:00:00Z | 2018-07-11T15:17:02Z | 0 | 0 | 090000648343e29d | |||
| CMS-2018-0075-1722 | CMS | HHS Blueprint to Lower Drug Prices and Reduce Out-of-Pocket Costs CMS-2018-0075 | Dorothy Ahlswede | Other | 2018-07-11T04:00:00Z | 2018 | 7 | 2018-07-11T04:00:00Z | 2018-07-11T15:17:21Z | 0 | 0 | 090000648343e29e | |||
| CMS-2018-0075-1723 | CMS | HHS Blueprint to Lower Drug Prices and Reduce Out-of-Pocket Costs CMS-2018-0075 | J & S Professional Pharmacy | Other | 2018-07-11T04:00:00Z | 2018 | 7 | 2018-07-11T04:00:00Z | 2018-07-11T15:17:41Z | 0 | 0 | 090000648343e29f | |||
| CMS-2017-0163-0007 | CMS | Advance Notice of Methodological Changes for Calendar Year (CY) 2019 for the Medicare Advantage (MA) CMS-2017-0163 | Advance Notice of Methodological Changes for Calendar Year (CY) 2019 for Medicare Advantage (MA) Capitation Rates, Part C and Part D Payment Policies and 2019 draft Call Letter | Other | 2018-02-01T05:00:00Z | 2018 | 2 | 2018-02-01T05:00:00Z | 2018-03-06T04:59:59Z | 2018-03-08T14:01:48Z | 0 | 0 | 0900006482ea4951 | ||
| CMS-2017-0163-0006 | CMS | Advance Notice of Methodological Changes for Calendar Year (CY) 2019 for the Medicare Advantage (MA) CMS-2017-0163 | Advance Notice of Methodological Changes for Calendar Year (CY) 2019 for Medicare Advantage (MA) Capitation Rates, Part C and Part D Payment Policies and 2019 draft Call Letter | Other | 2018-02-01T00:00:00Z | 2018 | 2 | 2018-02-01T22:25:09Z | 0 | 1 | 0900006482ea1c9f |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE documents (
id TEXT PRIMARY KEY,
agency_id TEXT,
docket_id TEXT REFERENCES dockets(id),
title TEXT,
document_type TEXT,
subtype TEXT,
posted_date TEXT,
posted_year INTEGER,
posted_month INTEGER,
comment_start_date TEXT,
comment_end_date TEXT,
last_modified TEXT,
fr_doc_num TEXT,
open_for_comment INTEGER,
withdrawn INTEGER,
object_id TEXT
);
CREATE INDEX idx_docs_agency ON documents(agency_id);
CREATE INDEX idx_docs_docket ON documents(docket_id);
CREATE INDEX idx_docs_date ON documents(posted_date);
CREATE INDEX idx_docs_year ON documents(posted_year);
CREATE INDEX idx_docs_type ON documents(document_type);
CREATE INDEX idx_docs_frnum ON documents(fr_doc_num);
CREATE INDEX idx_docs_comment_end ON documents(comment_end_date) WHERE comment_end_date IS NOT NULL AND withdrawn = 0;