documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FDA-2015-F-0714" and posted_year = 2015 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), 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-0009 | FDA | None FDA-2015-F-0714 | Attachment 1 Survey of Fluoropolymers Division Members from Various Industries re: Comment from Members of the Society of the Plastics Industry, Inc (Keller and Heckman LLP) | Supporting & Related Material | Background Material | 2015-11-06T05:00:00Z | 2015 | 11 | 2015-11-06T14:33:52Z | 0 | 0 | 0900006481d0e404 | |||
| FDA-2015-F-0714-0007 | FDA | None FDA-2015-F-0714 | Memorandum of Meeting Between FDA CFSAN and the Society of the Plastics Industries | Other | Memorandum | 2015-07-13T04:00:00Z | 2015 | 7 | 2015-07-13T04:00:00Z | 2015-07-13T19:32:42Z | 0 | 0 | 0900006481b81979 | ||
| FDA-2015-F-0714-0005 | FDA | None FDA-2015-F-0714 | Letter from FDA CFSAN to Natural Resources Defense Council | Other | Letter(s) | 2015-05-05T04:00:00Z | 2015 | 5 | 2015-05-05T04:00:00Z | 2015-05-05T21:03:59Z | 0 | 0 | 0900006481acec1b | ||
| FDA-2015-F-0714-0003 | FDA | None FDA-2015-F-0714 | Letter from FDA CFSAN to Natural Resources Defense Council | Other | Letter(s) | 2015-05-05T04:00:00Z | 2015 | 5 | 2015-05-05T04:00:00Z | 2015-05-05T21:03:47Z | 0 | 0 | 0900006481acec19 | ||
| FDA-2015-F-0714-0002 | FDA | None FDA-2015-F-0714 | Food Additive Petition from Natural Resources Defense Council, et al. | Other | Petition(s) | 2015-05-05T04:00:00Z | 2015 | 5 | 2015-05-05T04:00:00Z | 2015-05-05T21:03:40Z | 0 | 0 | 0900006481acec18 | ||
| FDA-2015-F-0714-0004 | FDA | None FDA-2015-F-0714 | Supplement from Natural Resources Defense Council, et al. | Other | Supplement (SUP) | 2015-05-05T04:00:00Z | 2015 | 5 | 2015-05-05T04:00:00Z | 2015-05-05T21:03:53Z | 0 | 0 | 0900006481acec1a | ||
| FDA-2015-F-0714-0001 | FDA | None FDA-2015-F-0714 | Natural Resources Defense Council et al.; Filing of Food Additive Petition | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2015-03-16T04:00:00Z | 2015 | 3 | 2015-03-16T04:00:00Z | 2015-11-05T02:31:03Z | 2015-05938 | 0 | 0 | 0900006481a4635f |
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;