documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "CDC", document_type = "Other" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, comment_end_date, 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-2019-0105-0001 | CDC | Assessment of Technical Assistance and Training Approaches to Accelerate Comprehensive Cancer Control Outcomes CDC-2019-0105 | Assessment of Technical Assistance and Training Approaches to Accelerate Comprehensive Cancer Control Outcomesn2019-26373 | Other | 2019-12-06T05:00:00Z | 2019 | 12 | 2019-12-06T05:00:00Z | 2020-02-07T04:59:59Z | 2019-12-07T02:03:57Z | 0 | 0 | 09000064841edb53 | ||
| CDC-2019-0108-0001 | CDC | Developmental Projects to Improve the National Health and Nutrition Examination Survey and Related Programs Generic CDC-2019-0108 | Developmental Projects to Improve the National Health and Nutrition Examination Survey and Related Programs Generic 2019-26374 | Other | 2019-12-06T05:00:00Z | 2019 | 12 | 2019-12-06T05:00:00Z | 2020-02-07T04:59:59Z | 2019-12-07T02:01:13Z | 0 | 0 | 09000064841edb57 | ||
| CDC-2019-0106-0001 | CDC | Asthma Information Reporting System (AIRS) CDC-2019-0106 | Asthma Information Reporting System (AIRS) 2019-26372 | Other | 2019-12-06T05:00:00Z | 2019 | 12 | 2019-12-06T05:00:00Z | 2020-02-07T04:59:59Z | 2019-12-07T02:03:56Z | 0 | 0 | 09000064841edb55 | ||
| CDC-2019-0079-0001 | CDC | Aerosols from cyanobacterial blooms exposures and health effects in highly exposed populations CDC-2019-0079 | Aerosols from cyanobacterial blooms exposures and health effects in highly exposed populations CDC-2019-0079 | Other | 2019-09-24T04:00:00Z | 2019 | 9 | 2019-09-24T04:00:00Z | 2019-11-19T04:59:59Z | 2019-11-20T02:01:20Z | 0 | 0 | 0900006483fbf74b | ||
| CDC-2019-0012-0027 | CDC | The National Healthcare Safety Network’s Requirement for Submission of International Classification of Diseases, Tenth Revision, Procedural Classification System (ICD-10-PCS) data codes or Current Procedures Terminology (CPT) Codes as part of Surgical Site Infection (SSI) Event reporting; Request for Information. CDC-2019-0012 | DOC050219-05022019133630 | Other | 2019-05-02T04:00:00Z | 2019 | 5 | 2019-05-02T04:00:00Z | 2019-05-02T19:04:46Z | 0 | 0 | 0900006483c2bcd7 | |||
| CDC-2019-0007-0168 | CDC | The National Healthcare Safety Network's Outpatient Procedure Component (OPC) Surveillance Protocol and the Bloodstream Infection (BSI) Surveillance Protocol; Request for Information CDC-2019-0007 | BSI NHSN UCIMC Input | Other | 2019-04-16T04:00:00Z | 2019 | 4 | 2019-04-16T04:00:00Z | 2019-04-17T11:50:29Z | 0 | 0 | 0900006483bad66f |
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;