documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FDA-2013-N-0888" 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 7
| 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-2013-N-0888-0005 | FDA | None FDA-2013-N-0888 | Reference 2 FAP 3A4801 re Food Additives Permitted for Direct Addition to Food for Human Consumption: Vitamin D2 and Vitamin D3 | Supporting & Related Material | Background Material | 2016-07-18T04:00:00Z | 2016 | 7 | 2016-09-08T14:46:54Z | 0 | 0 | 0900006482059b2a | |||
| FDA-2013-N-0888-0002 | FDA | None FDA-2013-N-0888 | Food Additives Permitted for Direct Addition to Food for Human Consumption: Vitamin D2 and Vitamin D3 | Rule | Final Rule | 2016-07-18T04:00:00Z | 2016 | 7 | 2016-07-18T04:00:00Z | 2016-08-18T03:59:59Z | 2016-08-18T13:00:47Z | 2016-16738 | 0 | 0 | 09000064820bfd4e |
| FDA-2013-N-0888-0003 | FDA | None FDA-2013-N-0888 | Index of References re Food Additives Permitted for Direct Addition to Food for Human Consumption: Vitamin D2 and Vitamin D3 | Supporting & Related Material | Background Material | 2016-07-18T04:00:00Z | 2016 | 7 | 2016-09-08T14:44:22Z | 0 | 0 | 0900006482059b28 | |||
| FDA-2013-N-0888-0006 | FDA | None FDA-2013-N-0888 | Reference 3 FAP3A4801 C memo1 for dockets Redacted re Food Additives Permitted for Direct Addition to Food for Human Consumption: Vitamin D2 and Vitamin D3 | Supporting & Related Material | Background Material | 2016-07-18T04:00:00Z | 2016 | 7 | 2016-09-08T14:48:34Z | 0 | 0 | 0900006482059b2b | |||
| FDA-2013-N-0888-0007 | FDA | None FDA-2013-N-0888 | Reference 4 FAP3A4801 Vitamin D3 and D2 FINAL TOXICOLOGY Review Memorandum TWTyler.2.10.16 (2) Redacted re Food Additives Permitted for Direct Addition to Food for Human Consumption: Vitamin D2 and Vitamin D3 | Supporting & Related Material | Background Material | 2016-07-18T04:00:00Z | 2016 | 7 | 2016-09-08T14:52:43Z | 0 | 0 | 0900006482059b2c | |||
| FDA-2013-N-0888-0004 | FDA | None FDA-2013-N-0888 | Reference 1 DRI DIETARY REFERENCE INTAKES Calcium Vitamin D re Food Additives Permitted for Direct Addition to Food for Human Consumption: Vitamin D2 and Vitamin D3 | Supporting & Related Material | Background Material | 2016-07-18T04:00:00Z | 2016 | 7 | 2016-09-08T14:44:49Z | 0 | 0 | 0900006482059b29 | |||
| FDA-2013-N-0888-0001 | FDA | None FDA-2013-N-0888 | Dean Foods Company and WhiteWave Foods Company; Filing of Food Additive Petition | Proposed Rule | Petition | 2013-08-16T04:00:00Z | 2013 | 8 | 2013-08-16T04:00:00Z | 2013-08-16T13:33:11Z | 2013-19915 | 0 | 0 | 09000064813b58ec |
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;