documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FDA-2016-D-4120" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FDA-2016-D-4120-0015 | FDA | None FDA-2016-D-4120 | Fruit Juice and Vegetable Juice as Color Additives in Food; Draft Guidance for Industry; Reopening of Comment Period | Proposed Rule | Reopening of Comment Period | 2017-03-01T05:00:00Z | 2017 | 3 | 2017-03-01T05:00:00Z | 2017-05-02T03:59:59Z | 2017-05-02T01:00:55Z | 2017-03929 | 0 | 0 | 09000064824e380f |
| FDA-2016-D-4120-0007 | FDA | None FDA-2016-D-4120 | Request for Extension from PurColour, Inc. | Other | Request for Extension | 2017-02-07T05:00:00Z | 2017 | 2 | 2017-02-07T05:00:00Z | 2017-02-07T20:33:34Z | 0 | 0 | 09000064824a5dc6 | ||
| FDA-2016-D-4120-0008 | FDA | None FDA-2016-D-4120 | Request for Extension from PurColour, Inc. | Other | Request for Extension | 2017-02-07T05:00:00Z | 2017 | 2 | 2017-02-07T05:00:00Z | 2017-02-07T20:39:00Z | 0 | 0 | 09000064824a835a | ||
| FDA-2016-D-4120-0006 | FDA | None FDA-2016-D-4120 | Request for Extension from Grocery Manufacturers Association (GMA) | Other | Request for Extension | 2017-01-24T05:00:00Z | 2017 | 1 | 2017-01-24T05:00:00Z | 2017-01-24T15:57:54Z | 0 | 0 | 090000648248d13c | ||
| FDA-2016-D-4120-0004 | FDA | None FDA-2016-D-4120 | Request for Extension from GNT USA, Inc. | Other | Request for Extension | 2017-01-17T05:00:00Z | 2017 | 1 | 2017-01-17T05:00:00Z | 2017-01-17T16:46:05Z | 0 | 0 | 0900006482477805 | ||
| FDA-2016-D-4120-0003 | FDA | None FDA-2016-D-4120 | Request for Extension from International Association of Color Manufacturers (IACM) | Other | Request for Extension | 2017-01-06T05:00:00Z | 2017 | 1 | 2017-01-06T05:00:00Z | 2017-01-06T15:12:58Z | 0 | 0 | 090000648244d926 |
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;