documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FDA-2011-N-0400" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, comment_start_date, 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-2011-N-0400-0392 | FDA | None FDA-2011-N-0400 | Supplement from the Grocery Manufacturers Association | Other | Supplement (SUP) | 2014-11-21T05:00:00Z | 2014 | 11 | 2014-11-21T05:00:00Z | 2014-12-07T02:42:45Z | 0 | 0 | 0900006481938b63 | ||
| FDA-2011-N-0400-0386 | FDA | None FDA-2011-N-0400 | Supplement from the American Frozen Food Institute | Other | Supplement (SUP) | 2014-06-02T04:00:00Z | 2014 | 6 | 2014-06-02T04:00:00Z | 2014-06-02T15:46:01Z | 0 | 0 | 09000064816fddff | ||
| FDA-2011-N-0400-0385 | FDA | None FDA-2011-N-0400 | Supplement from the American Bakers Association | Other | Supplement (SUP) | 2014-05-30T04:00:00Z | 2014 | 5 | 2014-05-30T20:58:42Z | 0 | 0 | 0900006481707648 | |||
| FDA-2011-N-0400-0038 | FDA | None FDA-2011-N-0400 | Approaches to Reducing Sodium Consumption; Establishment of Dockets: Request for Comments, Data, and Information; Extension of Comment Period | Notice | Notice of Extension | 2011-11-30T05:00:00Z | 2011 | 11 | 2011-11-30T05:00:00Z | 2012-01-28T04:59:59Z | 2015-01-28T03:03:16Z | 2011-30865 | 0 | 0 | 0900006480f76cbd |
| FDA-2011-N-0400-0031 | FDA | None FDA-2011-N-0400 | Grocery Manufacturers Association (GMA) - Request for Extension | Other | Request for Extension | 2011-11-15T05:00:00Z | 2011 | 11 | 2011-09-15T04:00:00Z | 2011-11-30T04:59:59Z | 2013-08-11T03:18:00Z | 0 | 0 | 0900006480f66520 | |
| FDA-2011-N-0400-0014 | FDA | None FDA-2011-N-0400 | Approaches to Reducing Sodium Consumption; Correction | Notice | Correction | 2011-10-31T04:00:00Z | 2011 | 10 | 2011-10-31T04:00:00Z | 2011-10-31T13:28:32Z | 2011-28029 | 0 | 0 | 0900006480f62265 | |
| FDA-2011-N-0400-0007 | FDA | None FDA-2011-N-0400 | Approaches To Reducing Sodium Consumption; Public Meeting | Notice | Public Meetings | 2011-10-12T04:00:00Z | 2011 | 10 | 2011-10-12T04:00:00Z | 2011-11-30T04:59:59Z | 2011-10-25T20:43:44Z | 2011-26371 | 0 | 0 | 0900006480f50f3b |
| FDA-2011-N-0400-0001 | FDA | None FDA-2011-N-0400 | Approaches to Reducing Sodium Consumption; Establishment of Dockets: Request for Comments, Data, and Information | Notice | General Notice | 2011-09-15T04:00:00Z | 2011 | 9 | 2011-09-15T04:00:00Z | 2011-11-30T04:59:59Z | 2014-03-02T02:21:22Z | 2011-23753 | 0 | 0 | 0900006480f1c62a |
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;