documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "CMS-2012-0012" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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-2012-0012-0323 | CMS | Medicaid Program; Covered Outpatient Drugs (CMS-2345-IFC2) CMS-2012-0012 | Medicaid Program: Covered Outpatient Drug; Further Delay of Inclusion of Territories in Definitions of States and United States (CMS-2345-IFC3) | Rule | 2019-11-25T05:00:00Z | 2019 | 11 | 2019-11-25T05:00:00Z | 2020-01-25T04:59:59Z | 2020-01-25T02:01:26Z | 2019-25514 | 0 | 0 | 09000064841ac6ea | |
| CMS-2012-0012-0320 | CMS | Medicaid Program; Covered Outpatient Drugs (CMS-2345-IFC2) CMS-2012-0012 | Medicaid Program: Covered Outpatient Drug; Line Extension Definition; and Change to the Rebate Calculation for Line Extension Drugs | Rule | 2019-04-01T04:00:00Z | 2019 | 4 | 2019-04-01T04:00:00Z | 2019-06-01T03:59:59Z | 2019-06-01T01:01:27Z | 2019-06274 | 0 | 0 | 0900006483b51252 | |
| CMS-2012-0012-0315 | CMS | Medicaid Program; Covered Outpatient Drugs (CMS-2345-IFC2) CMS-2012-0012 | Medicaid Program: Covered Outpatient Drug; Delay in Change in Definitions of States and United States | Rule | 2016-11-15T05:00:00Z | 2016 | 11 | 2016-11-15T05:00:00Z | 2017-01-18T04:59:59Z | 2017-01-24T02:02:01Z | 2016-27423 | 0 | 0 | 09000064823962c7 | |
| CMS-2012-0012-0281 | CMS | Medicaid Program; Covered Outpatient Drugs (CMS-2345-IFC2) CMS-2012-0012 | Medicaid Program: Covered Outpatient Drugs CMS-2345-FC | Rule | 2016-02-01T05:00:00Z | 2016 | 2 | 2016-02-01T05:00:00Z | 2016-04-02T03:59:59Z | 2016-04-01T23:00:28Z | 2016-01274 | 0 | 0 | 0900006481e40319 | |
| CMS-2012-0012-0002 | CMS | Medicaid Program; Covered Outpatient Drugs (CMS-2345-IFC2) CMS-2012-0012 | Medicaid Program: Covered Outpatient Drugs | Proposed Rule | 2012-02-02T05:00:00Z | 2012 | 2 | 2012-02-02T05:00:00Z | 2012-04-03T03:59:59Z | 2012-05-24T02:01:11Z | 2012-02014 | 0 | 0 | 0900006480fabd6e | |
| CMS-2012-0012-0001 | CMS | Medicaid Program; Covered Outpatient Drugs (CMS-2345-IFC2) CMS-2012-0012 | Medicaid Program; Covered Outpatient Drugs | Proposed Rule | 2012-01-30T05:00:00Z | 2012 | 1 | 2012-01-30T05:00:00Z | 2012-02-03T04:59:59Z | 2012-01-30T21:06:02Z | 0 | 0 | 0900006480fa8e85 |
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;