documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "CMS-2013-0027" and posted_year = 2014 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-2013-0027-0010 | CMS | Medicare, Medicaid, and Children’s Health Insurance Programs; Meeting of the Advisory Panel on Outreach and Education (APOE), March 27, 2013 (CMS-7027-N) CMS-2013-0027 | Meetings: Health Insurance Marketplace, Medicare, Medicaid, and Children's Health Insurance Programs; Advisory Panel on Outreach and Education | Notice | 2014-11-28T05:00:00Z | 2014 | 11 | 2014-11-28T05:00:00Z | 2014-12-02T04:59:59Z | 2014-12-01T11:47:52Z | 2014-28217 | 0 | 0 | 090000648194b28e | |
| CMS-2013-0027-0009 | CMS | Medicare, Medicaid, and Children’s Health Insurance Programs; Meeting of the Advisory Panel on Outreach and Education (APOE), March 27, 2013 (CMS-7027-N) CMS-2013-0027 | Meetings: Advisory Panel on Outreach and Education; Health Insurance Marketplace, Medicare, Medicaid, and Children's Health Insurance Programs | Notice | 2014-08-20T04:00:00Z | 2014 | 8 | 2014-08-20T04:00:00Z | 2014-09-03T12:46:37Z | 2014-19698 | 0 | 0 | 0900006481833c18 | ||
| CMS-2013-0027-0008 | CMS | Medicare, Medicaid, and Children’s Health Insurance Programs; Meeting of the Advisory Panel on Outreach and Education (APOE), March 27, 2013 (CMS-7027-N) CMS-2013-0027 | Meetings: Advisory Panel on Outreach and Education; Health Insurance Marketplace, Medicare, Medicaid, and Children's Health Insurance Programs; Corrections | Notice | 2014-05-16T04:00:00Z | 2014 | 5 | 2014-05-16T04:00:00Z | 2014-05-16T14:38:35Z | 2014-11380 | 0 | 0 | 09000064816ff26a | ||
| CMS-2013-0027-0007 | CMS | Medicare, Medicaid, and Children’s Health Insurance Programs; Meeting of the Advisory Panel on Outreach and Education (APOE), March 27, 2013 (CMS-7027-N) CMS-2013-0027 | Meetings: Advisory Panel on Outreach and Education, Health Insurance Marketplace, Medicare, Medicaid, and Children's Health Insurance Programs | Notice | 2014-05-02T04:00:00Z | 2014 | 5 | 2014-05-02T04:00:00Z | 2014-05-02T14:22:43Z | 2014-09989 | 0 | 0 | 09000064816dcd7e | ||
| CMS-2013-0027-0006 | CMS | Medicare, Medicaid, and Children’s Health Insurance Programs; Meeting of the Advisory Panel on Outreach and Education (APOE), March 27, 2013 (CMS-7027-N) CMS-2013-0027 | Meetings: Advisory Panel on Outreach and Education | Notice | 2014-02-24T05:00:00Z | 2014 | 2 | 2014-02-24T05:00:00Z | 2014-02-24T14:23:10Z | 2014-03909 | 0 | 0 | 09000064815a6a25 |
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;