documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "CDC" and posted_year = 2010 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, 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-2010-0002-0004 | CDC | Implementation of Section 2695 (42 U.S.C. 300ff–131) of Public Law 111– 87: Infectious Diseases and Circumstances Relevant to Notification Requirements CDC-2010-0002 | Ryan White HIV/AIDS Treatment Extension Act of 2009 (Pub. L. 111-87, to be codified at 42 U.S.C. 300ff-131 et seq.). | Supporting & Related Material | 2010-12-17T05:00:00Z | 2010 | 12 | 2010-12-17T16:07:05Z | 0 | 0 | 0900006480bb8e1e | ||||
| CDC-2010-0002-0002 | CDC | Implementation of Section 2695 (42 U.S.C. 300ff–131) of Public Law 111– 87: Infectious Diseases and Circumstances Relevant to Notification Requirements CDC-2010-0002 | Siegel JD, Rhinehart E, Jackson M, Chiarello L, and the Healthcare Infection Control Practices Advisory Committee. 2007 Guideline for Isolation Precautions: Preventing Transmission of Infectious Agents in Healthcare Settings. http://www.cdc.gov/hicpac/pdf/isolation/Isolation2007.pdf. Accessed September 23, 2010 | Supporting & Related Material | 2010-12-17T05:00:00Z | 2010 | 12 | 2010-12-17T16:06:45Z | 0 | 0 | 0900006480bb8815 | ||||
| CDC-2010-0002-0005 | CDC | Implementation of Section 2695 (42 U.S.C. 300ff–131) of Public Law 111– 87: Infectious Diseases and Circumstances Relevant to Notification Requirements CDC-2010-0002 | Baron P. Generation and Behavior of Airborne Particles (Aerosols). PowerPoint Presentation. U.S. Department of Health and Human Services, Centers for Disease Control and Prevention, National Institute for Occupational Safety and Health, Division of Applied Technology. http://www.cdc.gov/niosh/topics/aerosols/pdfs/Aerosol_101.pdf. Accessed September 23, 2010. | Supporting & Related Material | 2010-12-17T05:00:00Z | 2010 | 12 | 2010-12-17T16:07:14Z | 0 | 0 | 0900006480bb8e20 | ||||
| CDC-2010-0002-0003 | CDC | Implementation of Section 2695 (42 U.S.C. 300ff–131) of Public Law 111– 87: Infectious Diseases and Circumstances Relevant to Notification Requirements CDC-2010-0002 | Unofficial figures: Procedures for Notification of Possible Exposure to Infectious Diseases under the Ryan White HIV/AIDS Treatment Extension Act of 2009 | Supporting & Related Material | 2010-12-17T05:00:00Z | 2010 | 12 | 2010-12-17T16:06:57Z | 0 | 0 | 0900006480bb8e1c | ||||
| CDC-2010-0002-0001 | CDC | Implementation of Section 2695 (42 U.S.C. 300ff–131) of Public Law 111– 87: Infectious Diseases and Circumstances Relevant to Notification Requirements CDC-2010-0002 | Implementation of Section 2695 (42 U.S.C. 300ff–131) of Public Law 111– 87: Infectious Diseases and Circumstances Relevant to Notification Requirements | Notice | 2010-12-16T05:00:00Z | 2010 | 12 | 2010-12-16T05:00:00Z | 2011-02-12T04:59:59Z | 2011-04-07T13:28:40Z | 0 | 0 | 0900006480bb84a2 | ||
| CDC-2010-0001-0004 | CDC | Total Inward Leakage Requirements for Respirators CDC-2010-0001 | Total Inward Leakage Requirements for Respirators | Proposed Rule | 2010-10-01T04:00:00Z | 2010 | 10 | 2010-10-01T04:00:00Z | 2010-10-01T03:59:59Z | 2011-07-14T15:52:01Z | 2010-09085 | 0 | 0 | 0900006480b65031 | |
| CDC-2010-0001-0001 | CDC | Total Inward Leakage Requirements for Respirators CDC-2010-0001 | Meeting: Total Inward Leakage Requirements for Respirators | Proposed Rule | 2010-05-27T04:00:00Z | 2010 | 5 | 2010-05-27T04:00:00Z | 2014-01-17T21:33:07Z | 2010-12744 | 0 | 0 | 0900006480af4d2b |
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;