documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "CDC-2014-0005" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| CDC-2014-0005-0020 | CDC | Respiratory Protective Devices Used in Healthcare CDC-2014-0005 | Summary of comments and NIOSH responses | Supporting & Related Material | 2014-09-17T04:00:00Z | 2014 | 9 | 2016-10-31T15:05:18Z | 0 | 0 | 090000648187672b | ||||
| CDC-2014-0005-0017 | CDC | Respiratory Protective Devices Used in Healthcare CDC-2014-0005 | Federal Register Notice NIOSH Docket 272 Comment Date Extended | Notice | 2014-04-24T04:00:00Z | 2014 | 4 | 2014-04-24T13:34:57Z | 0 | 0 | 09000064816c8c8f | ||||
| CDC-2014-0005-0005 | CDC | Respiratory Protective Devices Used in Healthcare CDC-2014-0005 | Respirator Filter Efficiency Testing Against Particulate and Biological Aerosols Under Moderate to High Flow Rates | Supporting & Related Material | 2014-03-14T04:00:00Z | 2014 | 3 | 2014-03-14T12:14:29Z | 0 | 0 | 090000648165fe8d | ||||
| CDC-2014-0005-0003 | CDC | Respiratory Protective Devices Used in Healthcare CDC-2014-0005 | NIOSH Investigation of 3M Model 8000 Filtering Facepiece Respirators as Requested by the California Occupational Safety and Health Adminstration, Division of Occupational Safety and Health | Supporting & Related Material | 2014-03-14T04:00:00Z | 2014 | 3 | 2014-03-14T12:13:34Z | 0 | 0 | 090000648165f282 | ||||
| CDC-2014-0005-0002 | CDC | Respiratory Protective Devices Used in Healthcare CDC-2014-0005 | Assessing Policy Barriers to Effective Public Health Response in the H1N1 Influenza Pandemic: Project Report to the Centers for Disease Control and Prevention | Supporting & Related Material | 2014-03-14T04:00:00Z | 2014 | 3 | 2014-03-14T12:12:18Z | 0 | 0 | 090000648165f281 | ||||
| CDC-2014-0005-0001 | CDC | Respiratory Protective Devices Used in Healthcare CDC-2014-0005 | Respiratory Protective Devices Used in Healthcare | Notice | 2014-03-14T04:00:00Z | 2014 | 3 | 2014-03-14T04:00:00Z | 2014-05-01T03:59:59Z | 2014-05-01T01:02:40Z | 79 FR 14515 | 0 | 0 | 0900006481665344 | |
| CDC-2014-0005-0004 | CDC | Respiratory Protective Devices Used in Healthcare CDC-2014-0005 | Prevalance of Respiratory Protective Devices in U.S. Healthcare Systems | Supporting & Related Material | 2014-03-14T04:00:00Z | 2014 | 3 | 2014-03-14T12:14:13Z | 0 | 0 | 090000648165f283 |
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;