documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "CMS-2018-0051" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-0051-0299 | CMS | Medicare Program; Prospective Payment System and Consolidated Billing for Skilled Nursing Facilities (SNF) Proposed Rule for FY 2019, SNF Value-Based Purchasing Program, and SNF Quality Reporting Program (CMS-1696-P) CMS-2018-0051 | Medicare Programs: Prospective Payment System and Consolidated Billing for Skilled Nursing Facilities (SNF) Final Rule for FY 2019, SNF Value-Based Purchasing Program, and SNF Quality Reporting Program; Correction | Rule | 2018-10-03T04:00:00Z | 2018 | 10 | 2018-10-03T04:00:00Z | 2018-10-24T19:55:16Z | 2018-21499 | 0 | 0 | 090000648379002a | ||
| CMS-2018-0051-0298 | CMS | Medicare Program; Prospective Payment System and Consolidated Billing for Skilled Nursing Facilities (SNF) Proposed Rule for FY 2019, SNF Value-Based Purchasing Program, and SNF Quality Reporting Program (CMS-1696-P) CMS-2018-0051 | Medicare Program: Prospective Payment System and Consolidated Billing for Skilled Nursing Facilities (SNF) Final Rule for FY 2019, SNF Value-Based Purchasing Program, and SNF Quality Reporting Program | Rule | 2018-08-08T04:00:00Z | 2018 | 8 | 2018-08-08T04:00:00Z | 2018-08-13T12:32:19Z | 2018-16570 | 0 | 0 | 09000064835f0a77 | ||
| CMS-2018-0051-0297 | CMS | Medicare Program; Prospective Payment System and Consolidated Billing for Skilled Nursing Facilities (SNF) Proposed Rule for FY 2019, SNF Value-Based Purchasing Program, and SNF Quality Reporting Program (CMS-1696-P) CMS-2018-0051 | Display Version of CMS-1696-F Medicare Program: Prospective Payment System and Consolidated Billing for Skilled Nursing Facilites (SNF) Final Rule for FY2019 SNF Value-Based Purchasing Program, and SNF Quality Reporting Progrqam | Rule | 2018-07-31T04:00:00Z | 2018 | 7 | 2018-07-31T04:00:00Z | 2018-08-01T03:59:59Z | 2018-08-01T10:08:27Z | 0 | 0 | 09000064835aaae1 | ||
| CMS-2018-0051-0004 | CMS | Medicare Program; Prospective Payment System and Consolidated Billing for Skilled Nursing Facilities (SNF) Proposed Rule for FY 2019, SNF Value-Based Purchasing Program, and SNF Quality Reporting Program (CMS-1696-P) CMS-2018-0051 | Medicare Program: Prospective Payment System and Consolidated Billing for Skilled Nursing Facilities (SNF) Proposed Rule for FY 2019, SNF Value-Based Purchasing Program, and SNF Quality Reporting Program | Proposed Rule | 2018-05-08T04:00:00Z | 2018 | 5 | 2018-05-08T04:00:00Z | 2018-06-27T03:59:59Z | 2019-12-11T02:01:26Z | 2018-09015 | 0 | 0 | 090000648323febc | |
| CMS-2018-0051-0001 | CMS | Medicare Program; Prospective Payment System and Consolidated Billing for Skilled Nursing Facilities (SNF) Proposed Rule for FY 2019, SNF Value-Based Purchasing Program, and SNF Quality Reporting Program (CMS-1696-P) CMS-2018-0051 | Display version 042718 Medicare Program: Prospective Payment System and Consolidate Billing for Skilled Nursing Facilities (SNF) Proposed Rule for Fy 2019, SNF Value -Based Purchasing Program, SNF Quality Reporting Program (CMS-1696-P) | Proposed Rule | 2018-04-30T04:00:00Z | 2018 | 4 | 2018-04-30T04:00:00Z | 2018-05-09T03:59:59Z | 2018-05-08T01:03:50Z | 1-266 | 0 | 0 | 09000064831f5521 |
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;