documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "CMS-2013-0043" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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-2013-0043-0003 | CMS | Medicare Program; Extension of the Payment Adjustment for Low-volume Hospitals and the Medicare-dependent Hospital (MDH) Program Under the Hospital Inpatient Prospective Payment Systems (IPPS) for Acute Care Hospitals for Fiscal Year 2013 (CMS-1588-N) CMS-2013-0043 | Medicare Program: Hospital Inpatient Prospective Payment Systems for Acute Care Hospitals and the Long Term Care Hospital Prospective Payment System and Fiscal Year 2013 Rates; Hospitals' Resident Caps for Graduate Medical Education Payment Purposes, etc.; Corrections | Rule | 2014-03-18T04:00:00Z | 2014 | 3 | 2014-03-18T04:00:00Z | 2014-03-19T11:08:39Z | 2014-05836 | 0 | 0 | 090000648166c32f | ||
| CMS-2013-0043-0002 | CMS | Medicare Program; Extension of the Payment Adjustment for Low-volume Hospitals and the Medicare-dependent Hospital (MDH) Program Under the Hospital Inpatient Prospective Payment Systems (IPPS) for Acute Care Hospitals for Fiscal Year 2013 (CMS-1588-N) CMS-2013-0043 | Medicare Program: Hospital Inpatient Prospective Payment Systems for Acute Care Hospitals and the Long Term Care Hospital Prospective Payment System, etc.; Correction | Rule | 2013-03-13T04:00:00Z | 2013 | 3 | 2013-03-13T04:00:00Z | 2013-03-14T12:53:25Z | 2013-05724 | 0 | 0 | 09000064812277f1 | ||
| CMS-2013-0043-0001 | CMS | Medicare Program; Extension of the Payment Adjustment for Low-volume Hospitals and the Medicare-dependent Hospital (MDH) Program Under the Hospital Inpatient Prospective Payment Systems (IPPS) for Acute Care Hospitals for Fiscal Year 2013 (CMS-1588-N) CMS-2013-0043 | Medicare Program: Extension of the Payment Adjustment for Low-volume Hospitals and the Medicare-dependent Hospital Program Under the Hospital Inpatient Prospective Payment Systems; Acute Care Hospitals, Fiscal Year 2013 | Rule | 2013-03-07T05:00:00Z | 2013 | 3 | 2013-03-07T05:00:00Z | 2013-03-11T13:05:26Z | 2013-05263 | 0 | 0 | 090000648121e014 | ||
| CMS-2013-0043-0004 | CMS | Medicare Program; Extension of the Payment Adjustment for Low-volume Hospitals and the Medicare-dependent Hospital (MDH) Program Under the Hospital Inpatient Prospective Payment Systems (IPPS) for Acute Care Hospitals for Fiscal Year 2013 (CMS-1588-N) CMS-2013-0043 | Medicare Programs: Hospital Inpatient Prospective Payment Systems for Acute Care Hospitals and Long Term Care Hospital Prospective Payment System, etc. | Rule | 2012-10-03T04:00:00Z | 2012 | 10 | 2012-10-03T04:00:00Z | 2016-01-19T19:58:59Z | 2012-24307 | 0 | 0 | 0900006481132835 |
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;