documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FDA-1978-N-0021" and posted_year = 2003 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, 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-1978-N-0021-0017 | FDA | Over-the-Counter (OTC) Laxative FDA-1978-N-0021 | Acknowledgment letter from FDA/CDER to C.I.B.A. Consumer Pharmaceuticals | Other | Acknowledgement Letter/Receipt | 2003-12-10T05:00:00Z | 2003 | 12 | 2016-09-16T13:25:45Z | 0 | 0 | 090000648055d699 | |||
| FDA-1978-N-0021-0015 | FDA | Over-the-Counter (OTC) Laxative FDA-1978-N-0021 | Petition Denial from FDA/Office of the Commissioner to Banner Pharmacaps, Inc. | Other | Denial of Petition | 2003-11-19T05:00:00Z | 2003 | 11 | 2016-08-09T18:36:38Z | 0 | 0 | 090000648055d687 | |||
| FDA-1978-N-0021-0016 | FDA | Over-the-Counter (OTC) Laxative FDA-1978-N-0021 | Petition Denial from FDA/Office of the Commissioner to Banner Pharmacaps, Inc. | Other | Denial of Petition | 2003-11-19T05:00:00Z | 2003 | 11 | 2016-09-19T20:46:15Z | 0 | 0 | 090000648055d696 | |||
| FDA-1978-N-0021-0014 | FDA | Over-the-Counter (OTC) Laxative FDA-1978-N-0021 | Notice of Proposed Rulemaking re Laxative Drug Products for Over-the-Counter Human Use; Reopening of the Administrative Record | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2003-10-23T04:00:00Z | 2003 | 10 | 2003-10-22T04:00:00Z | 2004-01-21T04:59:59Z | 2016-08-09T20:43:30Z | 0 | 0 | 090000648055d669 | |
| FDA-1978-N-0021-0013 | FDA | Over-the-Counter (OTC) Laxative FDA-1978-N-0021 | Letter from FDA/CDER to The Purdue Frederick Company | Other | Letter(s) | 2003-10-22T04:00:00Z | 2003 | 10 | 2016-09-21T15:00:19Z | 0 | 0 | 090000648055d666 | |||
| FDA-1978-N-0021-0012 | FDA | Over-the-Counter (OTC) Laxative FDA-1978-N-0021 | Petition Denial from FDA/Office of the Commissioner to The Purdue Frederick Company | Other | Denial of Petition | 2003-09-17T04:00:00Z | 2003 | 9 | 2016-09-21T15:00:53Z | 0 | 0 | 090000648055d662 | |||
| FDA-1978-N-0021-0010 | FDA | Over-the-Counter (OTC) Laxative FDA-1978-N-0021 | Petition Denial from FDA/Office of the Commissioner to Arnall Golden Gregory, LLP | Other | Denial of Petition | 2003-09-10T04:00:00Z | 2003 | 9 | 2016-09-21T15:01:29Z | 0 | 0 | 090000648055d648 | |||
| FDA-1978-N-0021-0011 | FDA | Over-the-Counter (OTC) Laxative FDA-1978-N-0021 | Letter from FDA/CDER | Other | Letter(s) | 2003-09-10T04:00:00Z | 2003 | 9 | 2016-09-21T15:51:39Z | 0 | 0 | 090000648055d64b | |||
| FDA-1978-N-0021-0009 | FDA | Over-the-Counter (OTC) Laxative FDA-1978-N-0021 | Petition Denial from FDA/Office of the Commissioner to American Herbal Products Association-International Aloe Science Council | Other | Denial of Petition | 2003-07-25T04:00:00Z | 2003 | 7 | 2016-09-21T15:56:34Z | 0 | 0 | 090000648055d631 |
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;