documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "CMS-2008-0056" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, comment_end_date, last_modified, 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-2008-0056-0141 | CMS | Medicare Program; Revisions to the Medicare Advantage and Prescription Drug Benefit Programs CMS-2008-0056 | Medicare Advantage and Prescription Drug Benefit Programs: Negotiated Pricing and Remaining Revisions; Payments to Sponsors of Retiree Prescription Drug Plans | Rule | 2012-01-12T05:00:00Z | 2012 | 1 | 2012-01-12T05:00:00Z | 2014-08-15T01:05:29Z | 2012-00473 | 0 | 0 | 0900006480f93e77 | ||
| CMS-2008-0056-0150 | CMS | Medicare Program; Revisions to the Medicare Advantage and Prescription Drug Benefit Programs CMS-2008-0056 | Medicare Program: Medicare Advantage and Prescription Drug Benefit Programs | Rule | 2011-09-01T04:00:00Z | 2011 | 9 | 2011-09-01T04:00:00Z | 2016-01-19T20:00:34Z | 2011-22126 | 0 | 0 | 0900006480f0df31 | ||
| CMS-2008-0056-0133 | CMS | Medicare Program; Revisions to the Medicare Advantage and Prescription Drug Benefit Programs CMS-2008-0056 | Medicare Program: Medicare Advantage and Prescription Drug Benefit Programs; Negotiated Pricing and Remaining Revisions | Rule | 2009-01-12T05:00:00Z | 2009 | 1 | 2009-01-12T05:00:00Z | 2009-03-14T03:59:59Z | 2011-06-11T15:25:46Z | E9-00148 | 0 | 0 | 090000648081b718 | |
| CMS-2008-0056-0132 | CMS | Medicare Program; Revisions to the Medicare Advantage and Prescription Drug Benefit Programs CMS-2008-0056 | Medicare Program: Prescription Drug Benefit Program; Payments to Sponsors of Retiree Prescription Drug Plans | Proposed Rule | 2009-01-12T05:00:00Z | 2009 | 1 | 2009-01-12T05:00:00Z | 2009-03-14T03:59:59Z | 2011-06-11T15:25:46Z | E9-00151 | 0 | 0 | 090000648081b71c | |
| CMS-2008-0056-0142 | CMS | Medicare Program; Revisions to the Medicare Advantage and Prescription Drug Benefit Programs CMS-2008-0056 | Medicare Program; Medicare Advantage and Prescription Drug Benefit Programs: Final Marketing Provisions | Rule | 2008-09-18T04:00:00Z | 2008 | 9 | 2008-09-18T04:00:00Z | 2012-01-12T15:38:24Z | E8-21674 | 0 | 0 | 090000648070cd38 | ||
| CMS-2008-0056-0001 | CMS | Medicare Program; Revisions to the Medicare Advantage and Prescription Drug Benefit Programs CMS-2008-0056 | Medicare Program; Revisions to the Medicare Advantage and Prescription Drug Benefit Programs | Proposed Rule | 2008-05-16T04:00:00Z | 2008 | 5 | 2008-05-16T04:00:00Z | 2008-07-16T03:59:59Z | 2011-06-11T15:25:45Z | 08-01244 | 0 | 0 | 09000064805d5391 |
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;