documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FDA-2009-N-0393" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, comment_end_date, 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-2009-N-0393-0026 | FDA | None FDA-2009-N-0393 | Exhibit A - "Acrylamide Test Results, Covance Certificate of Analysis" - [State of California Department of Justice Office of the Attorney General - Comment] re FDA-2009-N-0393-0025 | Supporting & Related Material | C-Comment (Supporting and Related Material) | 2010-02-19T05:00:00Z | 2010 | 2 | 2010-02-19T18:02:39Z | 0 | 0 | 0900006480aa5cff | |||
| FDA-2009-N-0393-0012 | FDA | None FDA-2009-N-0393 | Reference 6 - "U.S. Food and Drug Administration, Acrylamide in Food" - [Acrylamide in Food; Request for Comments and for Scientific Data and Information] | Supporting & Related Material | BKG- Background Material (internal references) | 2009-12-29T05:00:00Z | 2009 | 12 | 2009-12-29T19:57:39Z | 0 | 0 | 0900006480a11c83 | |||
| FDA-2009-N-0393-0007 | FDA | None FDA-2009-N-0393 | Acrylamide in Food; Request for Comments and for Scientific Data and Information; Extension of Comment Period | Notice | NEC-Notice of Extension | 2009-11-18T05:00:00Z | 2009 | 11 | 2009-11-18T05:00:00Z | 2010-01-26T04:59:59Z | 2009-11-18T19:44:04Z | E9-27692 | 0 | 0 | 0900006480a58fc6 |
| FDA-2009-N-0393-0006 | FDA | None FDA-2009-N-0393 | Frozen Potato Products Institute - Request for Extension Comment Due Date | Other | EXT-Request for Extension Comment Due Date | 2009-10-22T04:00:00Z | 2009 | 10 | 2009-08-26T04:00:00Z | 2009-11-25T04:59:59Z | 2013-08-11T03:04:44Z | 0 | 0 | 0900006480a46ef7 | |
| FDA-2009-N-0393-0004 | FDA | None FDA-2009-N-0393 | Scientific Report of European Food Safety Authority (EFSA), Results on the Monitoring of Acrylamide Levels in Food" - Report | Other | RPT-Report | 2009-09-02T04:00:00Z | 2009 | 9 | 2009-09-02T04:00:00Z | 2013-08-11T01:29:17Z | 0 | 0 | 0900006480a1ba2c | ||
| FDA-2009-N-0393-0001 | FDA | None FDA-2009-N-0393 | Acrylamide in Food; Request for Comments and for Scientific Data and Information | Notice | N-Notice | 2009-08-26T04:00:00Z | 2009 | 8 | 2009-08-26T04:00:00Z | 2009-11-25T04:59:59Z | 2009-09-14T16:12:08Z | E9-20495 | 0 | 0 | 0900006480a12f06 |
| FDA-2009-N-0393-0002 | FDA | None FDA-2009-N-0393 | Reference List - [Acrylamide in Food; Request for Comments and for Scientific Data and Information] | Supporting & Related Material | BKG- Background Material (internal references) | 2009-08-26T04:00:00Z | 2009 | 8 | 2009-12-29T20:57:40Z | 0 | 0 | 0900006480a11a1f | |||
| FDA-2009-N-0393-0003 | FDA | None FDA-2009-N-0393 | Reference 4 - "Joint FAO/WHO Expert Committee on Food Additives (JECFA), Summary and Conclusions, Sixty-Fourth Meeting, Rome, 8-17 February 2005" - [Acrylamide in Food; Request for Comments and for Scientific Data and Information] | Supporting & Related Material | BKG- Background Material (internal references) | 2009-08-26T04:00:00Z | 2009 | 8 | 2009-08-26T21:03:22Z | 0 | 0 | 0900006480a11c7d |
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;