documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FDA-2011-D-0376" and posted_year = 2011 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_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-D-0376-0085 | FDA | None FDA-2011-D-0376 | FDA/Office of Legislation Response to the Honorable Jon Kyl - Answer | Other | Answer | 2011-10-20T04:00:00Z | 2011 | 10 | 2011-10-20T04:00:00Z | 2011-10-20T19:21:30Z | 0 | 0 | 0900006480f5171c | ||
| FDA-2011-D-0376-0087 | FDA | None FDA-2011-D-0376 | FDA/Office of Legislation Response to the Honorable Richard G. Lugar - Answer | Other | Answer | 2011-10-20T04:00:00Z | 2011 | 10 | 2011-10-20T04:00:00Z | 2011-10-20T19:37:04Z | 0 | 0 | 0900006480f572cd | ||
| FDA-2011-D-0376-0088 | FDA | None FDA-2011-D-0376 | FDA/Office of Legislation Response to the Honorable Mark S. Kirk - Answer | Other | Answer | 2011-10-20T04:00:00Z | 2011 | 10 | 2011-10-20T04:00:00Z | 2011-10-20T19:36:18Z | 0 | 0 | 0900006480f572f4 | ||
| FDA-2011-D-0376-0086 | FDA | None FDA-2011-D-0376 | FDA/Office of Legislation Response to the Honorable Peter J. Visclosky - Answer | Other | Answer | 2011-10-20T04:00:00Z | 2011 | 10 | 2011-10-20T04:00:00Z | 2011-10-20T19:28:28Z | 0 | 0 | 0900006480f572cc | ||
| FDA-2011-D-0376-0084 | FDA | None FDA-2011-D-0376 | The Honorable Frank R. Wolf to the Division of Dockets Management - Letter | Other | Letter(s) | 2011-10-13T04:00:00Z | 2011 | 10 | 2011-10-13T04:00:00Z | 2013-07-28T00:05:30Z | 0 | 0 | 0900006480f51782 | ||
| FDA-2011-D-0376-0080 | FDA | None FDA-2011-D-0376 | Jarrow Formulas, Inc. (P. Scott Polisky, Esq.) - Request for Extension | Other | Request for Extension | 2011-09-12T04:00:00Z | 2011 | 9 | 2011-09-12T04:00:00Z | 2013-05-23T22:54:00Z | 0 | 0 | 0900006480f0d055 | ||
| FDA-2011-D-0376-0079 | FDA | None FDA-2011-D-0376 | Draft Guidance for Industry; Dietary Supplements: New Dietary Ingredient Notifications and Related Issues; Availability; Extension of Comment Period | Notice | Extension of Comment Period | 2011-09-09T04:00:00Z | 2011 | 9 | 2011-09-09T04:00:00Z | 2011-12-03T04:59:59Z | 2014-04-30T01:03:00Z | 2011-23098 | 0 | 0 | 0900006480f14cd9 |
| FDA-2011-D-0376-0064 | FDA | None FDA-2011-D-0376 | American Herbal Products Association (AHPA), Consumer Healthcare Products Association (CHPA), Council for Responsible Nutrition (CRN), Natural Products Association (NPA), and United Natural Products Alliance (UNPA) - Request for Extension | Other | Request for Extension | 2011-08-30T04:00:00Z | 2011 | 8 | 2011-08-30T04:00:00Z | 2011-08-30T23:24:16Z | 0 | 0 | 0900006480ed8d24 | ||
| FDA-2011-D-0376-0002 | FDA | None FDA-2011-D-0376 | Draft Guidance for Industry; Dietary Supplements: New Dietary Ingredient Notifications and Related Issues | Other | Guidance | 2011-07-05T04:00:00Z | 2011 | 7 | 2011-07-05T04:00:00Z | 2020-06-02T17:32:17Z | 0 | 0 | 0900006480eb90bf | ||
| FDA-2011-D-0376-0001 | FDA | None FDA-2011-D-0376 | Draft Guidance for Industry; Dietary Supplements; Availability: New Dietary Ingredient Notifications and Related Issues | Notice | Notice of Availability | 2011-07-05T04:00:00Z | 2011 | 7 | 2011-07-05T04:00:00Z | 2011-10-04T03:59:59Z | 2011-09-01T13:32:54Z | 2011-16711 | 0 | 0 | 0900006480eb9610 |
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;