documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "CMS-2008-0035" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, comment_end_date, withdrawn, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
- Proposed Rule 4
- Notice 1
- Rule 1
agency_id 1
- CMS 6
| 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-2008-0035-0473 | CMS | Medicaid Program: Home and Community -Based State Plan Services CMS-2008-0035 | Medicaid Program: State Plan Home and Community-Based Services, 5-Year Period for Waivers, etc. | Rule | 2014-01-16T05:00:00Z | 2014 | 1 | 2014-01-16T05:00:00Z | 2014-01-16T15:47:17Z | 2014-00487 | 0 | 0 | 090000648150d518 | ||
| CMS-2008-0035-0059 | CMS | Medicaid Program: Home and Community -Based State Plan Services CMS-2008-0035 | Medicaid Program: State Plan Home and Community-Based Services, 5-Year Period for Waivers, Provider Payment Reassignment, and Setting Requirements for Community First Choice; Correction | Notice | Correction | 2012-05-03T04:00:00Z | 2012 | 5 | 2012-05-03T04:00:00Z | 2012-07-03T03:59:59Z | 2012-07-04T02:01:13Z | 2012-10677 | 0 | 0 | 090000648100d3ff |
| CMS-2008-0035-0058 | CMS | Medicaid Program: Home and Community -Based State Plan Services CMS-2008-0035 | Medicaid Program: State Plan Home and Community-Based Services, 5-Year Period for Waivers, etc. | Proposed Rule | 2012-05-03T04:00:00Z | 2012 | 5 | 2012-05-03T04:00:00Z | 2012-07-03T03:59:59Z | 2012-10-16T02:01:22Z | 2012-10385 | 0 | 0 | 0900006481004329 | |
| CMS-2008-0035-0057 | CMS | Medicaid Program: Home and Community -Based State Plan Services CMS-2008-0035 | Medicaid Program: State Plan Home and Community-Based Services, 5-Year Period for Waivers, Provider Payment Reassignment, and Setting Requirements for Community First Choice; Correction | Proposed Rule | 2012-05-03T00:00:00Z | 2012 | 5 | 2012-05-14T14:28:19Z | 0 | 1 | 0900006481004273 | ||||
| CMS-2008-0035-0056 | CMS | Medicaid Program: Home and Community -Based State Plan Services CMS-2008-0035 | Medicaid Program; State Plan Home and Community-Based Services, 5-Year Period for Waivers, Provider Payment Reassignment, and Setting Requirements for Community First Choice | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2012-04-27T04:00:00Z | 2012 | 4 | 2012-04-27T04:00:00Z | 2012-04-28T03:59:59Z | 2012-04-27T13:27:58Z | 0 | 0 | 0900006480ffeafa | |
| CMS-2008-0035-0001 | CMS | Medicaid Program: Home and Community -Based State Plan Services CMS-2008-0035 | Medicaid Program: Home and Community-Based State Plan Services(CMS-2249-P) | Proposed Rule | 2008-04-04T04:00:00Z | 2008 | 4 | 2008-04-04T04:00:00Z | 2008-06-04T03:59:59Z | 2012-05-24T02:01:01Z | 08-01084 | 0 | 0 | 0900006480439f48 |
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;