documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "CMS-2014-0145" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, posted_date (date), comment_start_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-2014-0145-0006 | CMS | Medicare Program; Prior Authorization of Repetitive Scheduled Nonemergent Ambulance Transports (CMS-6063-N) CMS-2014-0145 | Medicare Program: National Expansion of the Prior Authorization Model for Repetitive, Scheduled Non Emergent Ambulance Transports | Notice | 2020-11-23T05:00:00Z | 2020 | 11 | 2020-11-23T05:00:00Z | 2020-11-23T14:04:35Z | 2020-25728 | 0 | 0 | 09000064849706a4 | ||
| CMS-2014-0145-0005 | CMS | Medicare Program; Prior Authorization of Repetitive Scheduled Nonemergent Ambulance Transports (CMS-6063-N) CMS-2014-0145 | Medicare Program: Extension of Prior Authorization for Repetitive Scheduled Non Emergent Ambulance Transports | Notice | 2019-09-16T04:00:00Z | 2019 | 9 | 2019-09-16T04:00:00Z | 2019-10-09T20:37:21Z | 2019-19886 | 0 | 0 | 0900006483f6e55b | ||
| CMS-2014-0145-0004 | CMS | Medicare Program; Prior Authorization of Repetitive Scheduled Nonemergent Ambulance Transports (CMS-6063-N) CMS-2014-0145 | Medicare Program: Extension of Prior Authorization for Repetitive Scheduled Non-Emergent Ambulance Transports | Notice | 2018-12-04T05:00:00Z | 2018 | 12 | 2018-12-04T05:00:00Z | 2018-12-26T19:43:21Z | 2018-26334 | 0 | 0 | 09000064839394a6 | ||
| CMS-2014-0145-0002 | CMS | Medicare Program; Prior Authorization of Repetitive Scheduled Nonemergent Ambulance Transports (CMS-6063-N) CMS-2014-0145 | CMS-6063-N2 Medicare Program: Expansion of Prior authorization for Repetitive Scheduled Non-Emergent Ambulance Transports | Notice | 2017-12-12T05:00:00Z | 2017 | 12 | 2017-12-12T05:00:00Z | 2017-12-12T14:02:00Z | 0 | 0 | 0900006482cfbf45 | |||
| CMS-2014-0145-0003 | CMS | Medicare Program; Prior Authorization of Repetitive Scheduled Nonemergent Ambulance Transports (CMS-6063-N) CMS-2014-0145 | Medicare Programs: Extension of Prior Authorization for Repetitive Scheduled Non Emergent Ambulance Transports | Notice | 2017-12-12T05:00:00Z | 2017 | 12 | 2017-12-12T05:00:00Z | 2017-12-12T15:16:05Z | 2017-26759 | 0 | 0 | 0900006482cfd0fd | ||
| CMS-2014-0145-0001 | CMS | Medicare Program; Prior Authorization of Repetitive Scheduled Nonemergent Ambulance Transports (CMS-6063-N) CMS-2014-0145 | Medicare Program: Prior Authorization of Repetitive Scheduled Nonemergent Ambulance Transports | Notice | 2014-11-14T05:00:00Z | 2014 | 11 | 2014-11-14T05:00:00Z | 2014-11-14T16:49:55Z | 2014-26987 | 0 | 0 | 090000648192e82d |
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;