documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "CDC-2013-0002" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| CDC-2013-0002-0006 | CDC | World Trade Center Health Program Eligibility Requirements for Shanksville, Pennsylvania and Pentagon Responders CDC-2013-0002 | The Crash of United Flight 93 in Shanksville, Pennsylvania | Supporting & Related Material | 2013-03-28T04:00:00Z | 2013 | 3 | 2013-03-28T13:49:35Z | 0 | 0 | 0900006481234738 | ||||
| CDC-2013-0002-0005 | CDC | World Trade Center Health Program Eligibility Requirements for Shanksville, Pennsylvania and Pentagon Responders CDC-2013-0002 | Observing and Documenting the Inter-Organizational Response to the September 11th Attack on the Pentagon - Activities and Findings | Supporting & Related Material | 2013-03-28T04:00:00Z | 2013 | 3 | 2013-03-28T13:49:35Z | 0 | 0 | 0900006481234737 | ||||
| CDC-2013-0002-0002 | CDC | World Trade Center Health Program Eligibility Requirements for Shanksville, Pennsylvania and Pentagon Responders CDC-2013-0002 | Flight 93 victim identification long, arduous | Supporting & Related Material | 2013-03-28T04:00:00Z | 2013 | 3 | 2013-03-28T13:49:33Z | 0 | 0 | 0900006481215bdc | ||||
| CDC-2013-0002-0004 | CDC | World Trade Center Health Program Eligibility Requirements for Shanksville, Pennsylvania and Pentagon Responders CDC-2013-0002 | Summary of Evidence For Establishing Dates on which Cleanup of the Pentagon and Shanksville, Pennsylvania Sites of the Terrorist-Related Aircraft Crashes of September 11, 2001 Concluded | Supporting & Related Material | 2013-03-28T04:00:00Z | 2013 | 3 | 2013-03-28T13:49:34Z | 0 | 0 | 0900006481234736 | ||||
| CDC-2013-0002-0007 | CDC | World Trade Center Health Program Eligibility Requirements for Shanksville, Pennsylvania and Pentagon Responders CDC-2013-0002 | WTC Scientific/Technical Advisory Committee Transcript; Meeting Two; Day One; February 15, 2012 | Supporting & Related Material | 2013-03-28T04:00:00Z | 2013 | 3 | 2013-03-28T13:49:35Z | 0 | 0 | 0900006481234739 | ||||
| CDC-2013-0002-0001 | CDC | World Trade Center Health Program Eligibility Requirements for Shanksville, Pennsylvania and Pentagon Responders CDC-2013-0002 | World Trade CenterHealth Program Eligibility Requirements: Shanksville, PA and Pentagon Responders | Rule | 2013-03-28T04:00:00Z | 2013 | 3 | 2013-03-28T04:00:00Z | 2013-05-01T03:59:59Z | 2013-03-30T02:01:02Z | 2013-07146 | 0 | 0 | 090000648124a5a0 | |
| CDC-2013-0002-0003 | CDC | World Trade Center Health Program Eligibility Requirements for Shanksville, Pennsylvania and Pentagon Responders CDC-2013-0002 | Pentagon 9/11 | Supporting & Related Material | 2013-03-28T04:00:00Z | 2013 | 3 | 2013-03-28T13:49:34Z | 0 | 0 | 0900006481234735 |
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;