documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "CMS-2019-0109" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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-2019-0109-3885 | CMS | CY 2020 Hospital Outpatient PPS Policy Changes and Payment Rates and Ambulatory Surgical Center Payment System Policy Changes and Payment Rates CMS-1717-P CMS-2019-0109 | Medicare Program: Changes to Hospital Outpatient Prospective Payment and Ambulatory Surgical Center Payment Systems and Quality Reporting Programs; Revisions of Organ Procurement Organizations Conditions of Coverage, etc. | Rule | 2020-02-14T05:00:00Z | 2020 | 2 | 2020-02-14T05:00:00Z | 2020-02-15T04:59:59Z | 2020-02-14T14:49:33Z | 2020-02847 | 0 | 0 | 09000064843694ea | |
| CMS-2019-0109-3884 | CMS | CY 2020 Hospital Outpatient PPS Policy Changes and Payment Rates and Ambulatory Surgical Center Payment System Policy Changes and Payment Rates CMS-1717-P CMS-2019-0109 | Medicare Program: Changes to Hospital Outpatient Prospective Payment and Ambulatory Surgical Center Payment Systems and Quality Reporting Programs, etc. | Rule | 2020-01-03T05:00:00Z | 2020 | 1 | 2020-01-03T05:00:00Z | 2020-01-04T04:59:59Z | 2020-01-13T16:25:28Z | 2019-28364 | 0 | 0 | 0900006484267dcf | |
| CMS-2019-0109-3861 | CMS | CY 2020 Hospital Outpatient PPS Policy Changes and Payment Rates and Ambulatory Surgical Center Payment System Policy Changes and Payment Rates CMS-1717-P CMS-2019-0109 | Medicare and Medicaid Programs: CY 2020 Hospital Outpatient PPS Policy Changes and Payment Rates and Ambulatory Surgical Center Payment System Policy Changes and Payment Rates; Price Transparency Requirements for Hospitals to Make Standard Charges Public | Rule | 2019-11-27T05:00:00Z | 2019 | 11 | 2019-11-27T05:00:00Z | 2019-11-28T04:59:59Z | 2019-11-29T14:12:47Z | 2019-24931 | 0 | 0 | 09000064841bf8c5 | |
| CMS-2019-0109-3860 | CMS | CY 2020 Hospital Outpatient PPS Policy Changes and Payment Rates and Ambulatory Surgical Center Payment System Policy Changes and Payment Rates CMS-1717-P CMS-2019-0109 | Medicare Program: Changes to Hospital Outpatient Prospective Payment and Ambulatory Surgical Center Payment Systems and Quality Reporting Programs; Revisions of Organ Procurement Organizations Conditions of Coverage; Prior Authorization Process and Requirements for Certain Covered Outpatient Department Services; etc. | Rule | 2019-11-12T05:00:00Z | 2019 | 11 | 2019-11-12T05:00:00Z | 2019-12-03T04:59:59Z | 2019-12-04T02:03:55Z | 2019-24138 | 0 | 0 | 0900006484143216 | |
| CMS-2019-0109-3859 | CMS | CY 2020 Hospital Outpatient PPS Policy Changes and Payment Rates and Ambulatory Surgical Center Payment System Policy Changes and Payment Rates CMS-1717-P CMS-2019-0109 | CMS-1717-FC Display | Rule | 2019-11-01T04:00:00Z | 2019 | 11 | 2019-11-01T04:00:00Z | 2019-11-13T04:59:59Z | 2019-11-15T14:46:31Z | 0 | 0 | 0900006484116d52 | ||
| CMS-2019-0109-0002 | CMS | CY 2020 Hospital Outpatient PPS Policy Changes and Payment Rates and Ambulatory Surgical Center Payment System Policy Changes and Payment Rates CMS-1717-P CMS-2019-0109 | Medicare Program: Proposed Changes to Hospital Outpatient Prospective Payment and Ambulatory Surgical Center Payment Systems and Quality Reporting Programs; Price Transparency of Hospital Standard Charges; etc. | Proposed Rule | 2019-08-09T04:00:00Z | 2019 | 8 | 2019-08-09T04:00:00Z | 2019-09-28T03:59:59Z | 2020-07-18T01:00:45Z | 2019-16107 | 0 | 0 | 0900006483e1d6d8 | |
| CMS-2019-0109-0001 | CMS | CY 2020 Hospital Outpatient PPS Policy Changes and Payment Rates and Ambulatory Surgical Center Payment System Policy Changes and Payment Rates CMS-1717-P CMS-2019-0109 | CY 2020 Hospital Outpatient PPS Changes and Payment Rates and Ambulatory Surgical Center Payment System Policy Changes and Payment Rates CMS-1717-P Display | Proposed Rule | 2019-07-29T04:00:00Z | 2019 | 7 | 2019-07-29T04:00:00Z | 2019-08-13T03:59:59Z | 2019-09-24T01:05:56Z | 0 | 0 | 0900006483dc9849 |
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;