documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FDA-2002-N-0279" 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), 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-2002-N-0279-0009 | FDA | Applications for FDA Approval to Market a New Drug FDA-2002-N-0279 | Tab A - OMB Review (6/18/2000) [Final Rule page 1 thru 99] - Reference | Supporting & Related Material | REF-Reference (internal unless indicated) | 2003-11-06T05:00:00Z | 2003 | 11 | 2009-03-10T13:10:24Z | 0 | 0 | 090000648049e7b6 | |||
| FDA-2002-N-0279-0006 | FDA | Applications for FDA Approval to Market a New Drug FDA-2002-N-0279 | Tab B - [OMB Review ([Notice of Final Rule page 99 thru 121 and FDA3542a) (6/18/2003)] - Reference | Supporting & Related Material | REF-Reference (internal unless indicated) | 2003-11-06T05:00:00Z | 2003 | 11 | 2009-03-10T13:13:07Z | 0 | 0 | 090000648049e7ae | |||
| FDA-2002-N-0279-0010 | FDA | Applications for FDA Approval to Market a New Drug FDA-2002-N-0279 | Cover Page - OMB Review (6/18/2003) - Reference | Supporting & Related Material | REF-Reference (internal unless indicated) | 2003-11-06T05:00:00Z | 2003 | 11 | 2009-03-10T13:16:38Z | 0 | 0 | 090000648049e7b9 | |||
| FDA-2002-N-0279-0007 | FDA | Applications for FDA Approval to Market a New Drug FDA-2002-N-0279 | Tab B - [OMB Review ([Notice of Final Rule page 1 thru 98) (6/18/2003)] - Reference | Supporting & Related Material | REF-Reference (internal unless indicated) | 2003-11-06T05:00:00Z | 2003 | 11 | 2009-03-10T13:01:39Z | 0 | 0 | 090000648049e7b1 | |||
| FDA-2002-N-0279-0008 | FDA | Applications for FDA Approval to Market a New Drug FDA-2002-N-0279 | OMB Review [Notice of Final Rule 100 thru 122 pages] (6/18/2003) - Reference | Supporting & Related Material | REF-Reference (internal unless indicated) | 2003-11-06T05:00:00Z | 2003 | 11 | 2009-03-09T18:15:49Z | 0 | 0 | 090000648049e7b4 | |||
| FDA-2002-N-0279-0005 | FDA | Applications for FDA Approval to Market a New Drug FDA-2002-N-0279 | OMB INFORMATION COLLECTION - SUPPORTING STATEMENT | Supporting & Related Material | SS-Supporting Statement | 2003-08-12T04:00:00Z | 2003 | 8 | 2009-03-15T16:03:53Z | 0 | 0 | 090000648049e7ac | |||
| FDA-2002-N-0279-0003 | FDA | Applications for FDA Approval to Market a New Drug FDA-2002-N-0279 | FDA - Notice of Approval | Notice | NAL-Notice of Approval | 2003-08-12T04:00:00Z | 2003 | 8 | 2003-08-07T04:00:00Z | 2009-03-09T17:43:31Z | 0 | 0 | 090000648049e7a9 | ||
| FDA-2002-N-0279-0004 | FDA | Applications for FDA Approval to Market a New Drug FDA-2002-N-0279 | OMB INFORMATION COLLECTION - SUPPORTING STATEMENT | Supporting & Related Material | SS-Supporting Statement | 2003-08-12T04:00:00Z | 2003 | 8 | 2009-03-15T16:03:11Z | 0 | 0 | 090000648049e7aa | |||
| FDA-2002-N-0279-0002 | FDA | Applications for FDA Approval to Market a New Drug FDA-2002-N-0279 | FDA - Notice of Final Rule | Notice | NFR-Notice of Final Rule | 2003-07-01T04:00:00Z | 2003 | 7 | 2003-06-12T04:00:00Z | 2009-03-09T17:42:58Z | 0 | 0 | 090000648049e7a5 |
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;