documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FDA-2015-F-0714" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_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-2015-F-0714-0017 | FDA | None FDA-2015-F-0714 | Reference 5 FDA Memorandum from J. Cooper to P. Honigfort, July 23, 2015 re Indirect Food Additives: Paper and Paperboard Components | Supporting & Related Material | Background Material | 2016-01-07T05:00:00Z | 2016 | 1 | 2016-01-07T12:55:12Z | 0 | 0 | 0900006481df1be9 | |||
| FDA-2015-F-0714-0013 | FDA | None FDA-2015-F-0714 | Reference 1 Rice, P.A. “C6-Perfluorinated Compounds: The New Greaseproofing Agents in Food Packaging,” Current Environmental Health Reports, 2:33-40, 2015. re Indirect Food Additives: Paper and Paperboard Components | Supporting & Related Material | Background Material | 2016-01-07T05:00:00Z | 2016 | 1 | 2016-01-07T12:54:42Z | 0 | 0 | 0900006481df1ed6 | |||
| FDA-2015-F-0714-0011 | FDA | None FDA-2015-F-0714 | Reference List re Indirect Food Additives: Paper and Paperboard Components | Supporting & Related Material | Background Material | 2016-01-07T05:00:00Z | 2016 | 1 | 2016-01-07T12:54:21Z | 0 | 0 | 0900006481df1ed4 | |||
| FDA-2015-F-0714-0015 | FDA | None FDA-2015-F-0714 | Reference 3 FDA Memorandum from P. Rice to P. Honigfort, September 30, 2010 re Indirect Food Additives: Paper and Paperboard Components | Supporting & Related Material | Background Material | 2016-01-07T05:00:00Z | 2016 | 1 | 2016-01-07T12:54:55Z | 0 | 0 | 0900006481df1ed8 | |||
| FDA-2015-F-0714-0012 | FDA | None FDA-2015-F-0714 | Memorandum 1 FDA Categorical Exclusion Review Memorandum from T. Lindheimer to P. Honigfort, July 24, 2015 re Indirect Food Additives: Paper and Paperboard Components | Supporting & Related Material | Background Material | 2016-01-07T05:00:00Z | 2016 | 1 | 2016-01-07T12:54:27Z | 0 | 0 | 0900006481df1ed5 | |||
| FDA-2015-F-0714-0016 | FDA | None FDA-2015-F-0714 | Reference 4 FDA Memorandum from P. Rice to P. Honigfort, July 27, 2015 re Indirect Food Additives: Paper and Paperboard Components | Supporting & Related Material | Background Material | 2016-01-07T05:00:00Z | 2016 | 1 | 2016-01-07T12:55:06Z | 0 | 0 | 0900006481df1be8 | |||
| FDA-2015-F-0714-0014 | FDA | None FDA-2015-F-0714 | Reference 2 International Agency for Research on Cancer, http://monographs.iarc.fr/ENG/Monographs/vol81/mono81-8.pdf re Indirect Food Additives: Paper and Paperboard Components | Supporting & Related Material | Background Material | 2016-01-07T05:00:00Z | 2016 | 1 | 2016-01-07T12:54:48Z | 0 | 0 | 0900006481df1ed7 | |||
| FDA-2015-F-0714-0010 | FDA | None FDA-2015-F-0714 | Indirect Food Additives: Paper and Paperboard Components | Rule | Final Rule | 2016-01-04T05:00:00Z | 2016 | 1 | 2016-01-04T05:00:00Z | 2016-02-04T04:59:59Z | 2016-01-04T14:31:36Z | 2015-33026 | 0 | 0 | 0900006481de3ffe |
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;