documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FDA-1979-N-0319" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: comment_end_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-1979-N-0319-0004 | FDA | Sodium Stearoyl-2-Lactylate FDA-1979-N-0319 | Request for Extension from Durkee Foods, Division of SCM Corporation | Other | Request for Extension | 2009-08-31T04:00:00Z | 2009 | 8 | 2009-08-31T04:00:00Z | 1979-09-18T03:59:59Z | 2019-06-26T19:19:39Z | 0 | 0 | 0900006480555c10 | |
| FDA-1979-N-0319-0009 | FDA | Sodium Stearoyl-2-Lactylate FDA-1979-N-0319 | Internal Memorandum from Consumer Safety Officer, Petitions Branch (HFF-334) to Dr. Buzz Hoffman (HFF-400) November 8, 1978 | Other | Memorandum | 2009-08-31T04:00:00Z | 2009 | 8 | 2009-08-31T04:00:00Z | 2019-06-26T17:59:56Z | 0 | 0 | 0900006480a18a47 | ||
| FDA-1979-N-0319-0010 | FDA | Sodium Stearoyl-2-Lactylate FDA-1979-N-0319 | Regulatory Analysis Assessment for Proposed Rule Making on the Use of Sodium Stearoyl-2-Lactylate in Foods from FDA | Other | Regulatory Analysis | 2009-08-31T04:00:00Z | 2009 | 8 | 2019-06-26T18:50:23Z | 0 | 0 | 0900006480a18a49 | |||
| FDA-1979-N-0319-0002 | FDA | Sodium Stearoyl-2-Lactylate FDA-1979-N-0319 | Sodium Stearoyl-2-Lactylate Proposed Revision of Food Additive Provisions | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2009-08-31T04:00:00Z | 2009 | 8 | 2009-08-31T04:00:00Z | 1979-06-26T03:59:59Z | 2019-07-01T12:04:48Z | 79-12143 | 0 | 0 | 0900006480555c12 |
| FDA-1979-N-0319-0007 | FDA | Sodium Stearoyl-2-Lactylate FDA-1979-N-0319 | Statement of Exemption and Environmental Assessment Report from FDA | Supporting & Related Material | Environmental Assessment Report | 2009-08-31T04:00:00Z | 2009 | 8 | 2019-06-26T17:53:39Z | 0 | 0 | 0900006480555c0f | |||
| FDA-1979-N-0319-0001 | FDA | Sodium Stearoyl-2-Lactylate FDA-1979-N-0319 | Sodium Stearoyl-2-Lactylate Proposed Revision of Food Additive Provisions; Extension of Comment Period | Notice | Notice of Extension | 2009-08-31T04:00:00Z | 2009 | 8 | 2009-08-31T04:00:00Z | 1979-09-18T03:59:59Z | 2019-07-01T12:05:57Z | 79-25605 | 0 | 0 | 0900006480555c11 |
| FDA-1979-N-0319-0008 | FDA | Sodium Stearoyl-2-Lactylate FDA-1979-N-0319 | Letter from Markel, Hill, & Byerley on behalf of C. J. Patterson Company to FDA | Other | Letter(s) | 2009-08-31T04:00:00Z | 2009 | 8 | 2009-08-31T04:00:00Z | 2019-06-26T18:37:12Z | 0 | 0 | 0900006480a18a4b | ||
| FDA-1979-N-0319-0003 | FDA | Sodium Stearoyl-2-Lactylate FDA-1979-N-0319 | Part 172-- Food Additives Permitted for Direct Addition to Food for Human Consumption; Sodium Stearoyl-2-Lactylate | Rule | Final Rule | 2009-08-31T04:00:00Z | 2009 | 8 | 2009-08-31T04:00:00Z | 1980-09-06T03:59:59Z | 2019-06-27T12:23:27Z | 80-23303 | 0 | 0 | 0900006480555c16 |
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;