documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "CDC-2019-0015" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-0015-0002 | CDC | Request for the Technical Review of 10 Draft Skin Notation Assignments and Skin Notation Profiles CDC-2019-0015 | Draft -Skin Notation Profile: beta-Chloroprene | Supporting & Related Material | 2019-03-15T04:00:00Z | 2019 | 3 | 2019-03-15T12:01:25Z | 0 | 0 | 0900006483ad285c | ||||
| CDC-2019-0015-0008 | CDC | Request for the Technical Review of 10 Draft Skin Notation Assignments and Skin Notation Profiles CDC-2019-0015 | Draft -Skin Notation Profile: Diacetyl and 2,3-Pentanedione | Supporting & Related Material | 2019-03-15T04:00:00Z | 2019 | 3 | 2019-03-15T12:11:15Z | 0 | 0 | 0900006483ad2d73 | ||||
| CDC-2019-0015-0005 | CDC | Request for the Technical Review of 10 Draft Skin Notation Assignments and Skin Notation Profiles CDC-2019-0015 | Draft -Skin Notation Profile: Cyclohexanol | Supporting & Related Material | 2019-03-15T04:00:00Z | 2019 | 3 | 2019-03-15T12:06:39Z | 0 | 0 | 0900006483ad2d0d | ||||
| CDC-2019-0015-0009 | CDC | Request for the Technical Review of 10 Draft Skin Notation Assignments and Skin Notation Profiles CDC-2019-0015 | Draft -Skin Notation Profile: Diethylenetriamine | Supporting & Related Material | 2019-03-15T04:00:00Z | 2019 | 3 | 2019-03-15T12:12:36Z | 0 | 0 | 0900006483ad2d78 | ||||
| CDC-2019-0015-0006 | CDC | Request for the Technical Review of 10 Draft Skin Notation Assignments and Skin Notation Profiles CDC-2019-0015 | Draft -Skin Notation Profile: Cyclohexanone | Supporting & Related Material | 2019-03-15T04:00:00Z | 2019 | 3 | 2019-03-15T12:07:51Z | 0 | 0 | 0900006483ad2d10 | ||||
| CDC-2019-0015-0007 | CDC | Request for the Technical Review of 10 Draft Skin Notation Assignments and Skin Notation Profiles CDC-2019-0015 | Draft -Skin Notation Profile: Cyclonite | Supporting & Related Material | 2019-03-15T04:00:00Z | 2019 | 3 | 2019-03-15T12:10:06Z | 0 | 0 | 0900006483ad2d71 | ||||
| CDC-2019-0015-0010 | CDC | Request for the Technical Review of 10 Draft Skin Notation Assignments and Skin Notation Profiles CDC-2019-0015 | Draft -Skin Notation Profile: Dioxane | Supporting & Related Material | 2019-03-15T04:00:00Z | 2019 | 3 | 2019-03-15T12:13:57Z | 0 | 0 | 0900006483ad2dbb | ||||
| CDC-2019-0015-0003 | CDC | Request for the Technical Review of 10 Draft Skin Notation Assignments and Skin Notation Profiles CDC-2019-0015 | Draft -Skin Notation Profile: Chlorodiphenyl (42% chlorine) | Supporting & Related Material | 2019-03-15T04:00:00Z | 2019 | 3 | 2019-03-15T12:02:59Z | 0 | 0 | 0900006483ad2862 | ||||
| CDC-2019-0015-0004 | CDC | Request for the Technical Review of 10 Draft Skin Notation Assignments and Skin Notation Profiles CDC-2019-0015 | Draft -Skin Notation Profile: Chlorodiphenyl (54% chlorine) | Supporting & Related Material | 2019-03-15T04:00:00Z | 2019 | 3 | 2019-03-15T12:04:22Z | 0 | 0 | 0900006483ad2d0c | ||||
| CDC-2019-0015-0001 | CDC | Request for the Technical Review of 10 Draft Skin Notation Assignments and Skin Notation Profiles CDC-2019-0015 | Request for the Technical Review of 10 Draft Skin Notation Assignments and Skin Notation Profiles | Notice | 2019-03-15T04:00:00Z | 2019 | 3 | 2019-03-15T04:00:00Z | 2019-05-15T03:59:59Z | 2019-03-15T11:59:02Z | 2019-04794 | 0 | 0 | 0900006483ae72c6 | |
| CDC-2019-0015-0011 | CDC | Request for the Technical Review of 10 Draft Skin Notation Assignments and Skin Notation Profiles CDC-2019-0015 | Draft -Skin Notation Profile: 2,4-Toluene diisocyanates (2,4-TDI), 2,6-Toluene diisocyanate (2,6-TDI), and the mixture of 2,4- and 2,6-Toluene diisocyanate | Supporting & Related Material | 2019-03-15T04:00:00Z | 2019 | 3 | 2019-03-15T12:15:09Z | 0 | 0 | 0900006483ad2dbc |
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;