documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FDA-1993-G-0001" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 2
agency_id 1
- FDA 10
| 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-1993-G-0001-0003 | FDA | Lactate is GRAS as a Color Fixative in Black Olives FDA-1993-G-0001 | FDA | Notice | NCD-Notice of Confirmation of Effective Date | 1996-12-05T05:00:00Z | 1996 | 12 | 2008-05-16T23:23:41Z | 0 | 0 | 09000064804f9989 | |||
| FDA-1993-G-0001-0002 | FDA | Lactate is GRAS as a Color Fixative in Black Olives FDA-1993-G-0001 | FDA | Notice | NFR-Notice of Final Rule | 1996-09-11T04:00:00Z | 1996 | 9 | 1996-09-11T04:00:00Z | 1996-09-04T03:59:59Z | 2008-05-16T23:23:41Z | 0 | 0 | 09000064804f9988 | |
| FDA-1993-G-0001-0010 | FDA | Lactate is GRAS as a Color Fixative in Black Olives FDA-1993-G-0001 | Background information to NFR | Supporting & Related Material | BKG-Background Material | 1996-08-07T04:00:00Z | 1996 | 8 | 2008-05-16T23:23:42Z | 0 | 0 | 09000064804f99e4 | |||
| FDA-1993-G-0001-0006 | FDA | Lactate is GRAS as a Color Fixative in Black Olives FDA-1993-G-0001 | Background information to NFR | Supporting & Related Material | BKG-Background Material | 1996-08-07T04:00:00Z | 1996 | 8 | 2008-05-16T23:23:41Z | 0 | 0 | 09000064804f99de | |||
| FDA-1993-G-0001-0008 | FDA | Lactate is GRAS as a Color Fixative in Black Olives FDA-1993-G-0001 | Background Information to NFR | Supporting & Related Material | BKG-Background Material | 1996-08-07T04:00:00Z | 1996 | 8 | 2008-05-16T23:23:42Z | 0 | 0 | 09000064804f99e2 | |||
| FDA-1993-G-0001-0005 | FDA | Lactate is GRAS as a Color Fixative in Black Olives FDA-1993-G-0001 | Background information to NFR | Supporting & Related Material | BKG-Background Material | 1996-08-07T04:00:00Z | 1996 | 8 | 2008-05-16T23:23:41Z | 0 | 0 | 09000064804f99dd | |||
| FDA-1993-G-0001-0004 | FDA | Lactate is GRAS as a Color Fixative in Black Olives FDA-1993-G-0001 | Background information to NFR | Supporting & Related Material | BKG-Background Material | 1996-08-07T04:00:00Z | 1996 | 8 | 2008-05-16T23:23:42Z | 0 | 0 | 09000064804f99dc | |||
| FDA-1993-G-0001-0007 | FDA | Lactate is GRAS as a Color Fixative in Black Olives FDA-1993-G-0001 | Background information to NFR | Supporting & Related Material | BKG-Background Material | 1996-08-07T04:00:00Z | 1996 | 8 | 2008-05-16T23:23:42Z | 0 | 0 | 09000064804f99e0 | |||
| FDA-1993-G-0001-0009 | FDA | Lactate is GRAS as a Color Fixative in Black Olives FDA-1993-G-0001 | Background infromation to NFR | Supporting & Related Material | BKG-Background Material | 1996-08-07T04:00:00Z | 1996 | 8 | 2008-05-16T23:23:42Z | 0 | 0 | 09000064804f99e3 | |||
| FDA-1993-G-0001-0001 | FDA | Lactate is GRAS as a Color Fixative in Black Olives FDA-1993-G-0001 | Purac America, Inc. | Notice | NFL-Notice of Filing | 1994-01-03T05:00:00Z | 1994 | 1 | 1994-01-03T05:00:00Z | 1994-02-26T04:59:59Z | 2008-05-16T23:23:41Z | 0 | 0 | 09000064804f9933 |
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;