documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "CMS-2020-0098" and document_type = "Rule" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-2020-0098-0676 | CMS | Medicare Coverage of Innovative Technology (MCIT) and Definition of "Reasonable and Necessary (CMS-3372-P) CMS-2020-0098 | Medicare Program: Medicare Coverage of Innovative Technology and Definition of Reasonable and Necessary | Rule | 2021-11-15T05:00:00Z | 2021 | 11 | 2021-11-15T05:00:00Z | 2021-11-16T04:59:59Z | 2021-11-16T13:03:15Z | 2021-24916 | 0 | 0 | 0900006484e4bdf3 | |
| CMS-2020-0098-0445 | CMS | Medicare Coverage of Innovative Technology (MCIT) and Definition of "Reasonable and Necessary (CMS-3372-P) CMS-2020-0098 | Medicare Program: Medicare Coverage of Innovative Technology and Definition of Reasonable and Necessary; Delay of Effective Date | Rule | 2021-05-18T04:00:00Z | 2021 | 5 | 2021-05-18T04:00:00Z | 2021-05-19T03:59:59Z | 2021-05-24T17:17:04Z | 2021-10466 | 0 | 0 | 0900006484b12f41 | |
| CMS-2020-0098-0347 | CMS | Medicare Coverage of Innovative Technology (MCIT) and Definition of "Reasonable and Necessary (CMS-3372-P) CMS-2020-0098 | Medicare Program: Coverage of Innovative Technology and Definition of Reasonable and Necessary; Delay of Effective Date; Public Comment Period | Rule | 2021-03-17T04:00:00Z | 2021 | 3 | 2021-03-17T04:00:00Z | 2021-04-17T03:59:59Z | 2021-04-18T01:00:37Z | 2021-05490 | 0 | 0 | 0900006484a6e24a | |
| CMS-2020-0098-0346 | CMS | Medicare Coverage of Innovative Technology (MCIT) and Definition of "Reasonable and Necessary (CMS-3372-P) CMS-2020-0098 | Medicare Program; Medicare Coverage of Innovative Technology and Definition of Reasonable and Necessary | Rule | 2021-01-14T05:00:00Z | 2021 | 1 | 2021-01-14T05:00:00Z | 2021-01-15T04:59:59Z | 2021-02-03T11:42:08Z | 2021-00707 | 0 | 0 | 09000064849f282b |
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;