documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FDA-2017-C-0935" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- FDA 8
| 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FDA-2017-C-0935-0008 | FDA | None FDA-2017-C-0935 | Listing of Color Additives Subject to Certification; D&C Black No. 4; Confirmation of Effective Date | Rule | Final Rule | 2018-09-18T04:00:00Z | 2018 | 9 | 2018-09-18T04:00:00Z | 2018-09-18T14:02:16Z | 2018-20288 | 0 | 0 | 090000648370f88f | |
| FDA-2017-C-0935-0006 | FDA | None FDA-2017-C-0935 | Reference 1 CAP 7C0310_C_Memo_redacted_Redacted | Supporting & Related Material | Memorandum | 2018-06-13T04:00:00Z | 2018 | 6 | 2018-06-13T13:41:13Z | 0 | 0 | 0900006483405901 | |||
| FDA-2017-C-0935-0004 | FDA | None FDA-2017-C-0935 | Reference 3 Brune et al Investigation of the Tumorigenic Response to Benzo(a)pyrene in Aqueous Caffeine Solution Applied Orally to Sprague-Dawley Rats* | Supporting & Related Material | Memorandum | 2018-06-13T04:00:00Z | 2018 | 6 | 2018-06-13T13:36:47Z | 0 | 0 | 09000064834058ff | |||
| FDA-2017-C-0935-0005 | FDA | None FDA-2017-C-0935 | Reference 4 CAP 7C0310 CARBON BLACK SIGNED FINAL TOXICOLOGY MEMO 04.27.18_redacted _Redacted | Supporting & Related Material | Memorandum | 2018-06-13T04:00:00Z | 2018 | 6 | 2018-06-13T13:38:43Z | 0 | 0 | 0900006483405900 | |||
| FDA-2017-C-0935-0007 | FDA | None FDA-2017-C-0935 | Reference 2 Choi et al. WHO guidelines for indoor air quality: selected pollutants | Supporting & Related Material | Meeting Materials | 2018-06-13T04:00:00Z | 2018 | 6 | 2018-06-13T13:43:55Z | 0 | 0 | 0900006483405902 | |||
| FDA-2017-C-0935-0003 | FDA | None FDA-2017-C-0935 | Reference 5 Anand to Henry Indirect additives memo 2016-05-09 | Supporting & Related Material | Letter | 2018-06-13T04:00:00Z | 2018 | 6 | 2018-06-13T13:34:31Z | 0 | 0 | 09000064834058fe | |||
| FDA-2017-C-0935-0002 | FDA | None FDA-2017-C-0935 | Listing of Color Additives Subject to Certification; D&C Black No. 4 | Rule | Final Rule | 2018-06-07T04:00:00Z | 2018 | 6 | 2018-06-07T04:00:00Z | 2018-07-10T03:59:59Z | 2018-06-07T16:24:30Z | 2018-12218 | 0 | 0 | 09000064833651b2 |
| FDA-2017-C-0935-0001 | FDA | None FDA-2017-C-0935 | DSM Biomedical; Filing of Color Additive Petition | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2017-03-06T05:00:00Z | 2017 | 3 | 2017-03-06T05:00:00Z | 2017-03-06T16:45:40Z | 2017-04188 | 0 | 0 | 09000064824ee70f |
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;