documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FDA-2014-N-1168" and posted_year = 2014 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-2014-N-1168-0025 | FDA | None FDA-2014-N-1168 | Testimony from Marcie Coates re Comment from Mylan Inc. | Supporting & Related Material | Background Material | 2014-12-02T05:00:00Z | 2014 | 12 | 2014-12-02T16:52:24Z | 0 | 0 | 090000648193a933 | |||
| FDA-2014-N-1168-0008 | FDA | None FDA-2014-N-1168 | Slide Presentation from IPEC re Generic Drug User Fee Amendments (GDUFA) of 2012; Public Hearing on Policy Development September 17, 2014 | Other | Presentation | 2014-09-19T04:00:00Z | 2014 | 9 | 2014-09-19T04:00:00Z | 2014-09-19T17:44:37Z | 0 | 0 | 090000648187f826 | ||
| FDA-2014-N-1168-0009 | FDA | None FDA-2014-N-1168 | Slide Presentation from TEVA Pharmaceuticals, USA re Generic Drug User Fee Amendments (GDUFA) of 2012; Public Hearing on Policy Development September 17, 2014 | Other | Presentation | 2014-09-19T04:00:00Z | 2014 | 9 | 2014-09-19T04:00:00Z | 2014-09-19T17:45:03Z | 0 | 0 | 090000648187f827 | ||
| FDA-2014-N-1168-0007 | FDA | None FDA-2014-N-1168 | Slide Presentation from PureTek Corporation re Generic Drug User Fee Amendments (GDUFA) of 2012; Public Hearing on Policy Development September 17, 2014 | Other | Presentation | 2014-09-19T04:00:00Z | 2014 | 9 | 2014-09-19T04:00:00Z | 2014-09-19T17:43:02Z | 0 | 0 | 090000648187f7ed | ||
| FDA-2014-N-1168-0010 | FDA | None FDA-2014-N-1168 | Slide Presentation from GPhA (Generic Pharmaceutical Association) re Generic Drug User Fee Amendments (GDUFA) of 2012; Public Hearing on Policy Development September 17, 2014 | Other | Presentation | 2014-09-19T04:00:00Z | 2014 | 9 | 2014-09-19T04:00:00Z | 2014-09-19T17:43:44Z | 0 | 0 | 090000648187f825 | ||
| FDA-2014-N-1168-0006 | FDA | None FDA-2014-N-1168 | Slide Presentation from Perrigo re Generic Drug User Fee Amendments (GDUFA) of 2012; Public Hearing on Policy Development September 17, 2014 | Other | Presentation | 2014-09-19T04:00:00Z | 2014 | 9 | 2014-09-19T04:00:00Z | 2014-09-19T17:21:45Z | 0 | 0 | 090000648187f7ec | ||
| FDA-2014-N-1168-0002 | FDA | None FDA-2014-N-1168 | Agenda re Generic Drug User Fee Amendments (GDUFA) of 2012; Public Hearing on Policy Development September 17, 2014 | Other | Agenda | 2014-09-16T04:00:00Z | 2014 | 9 | 2014-09-16T04:00:00Z | 2014-09-16T22:42:18Z | 0 | 0 | 0900006481875a1f | ||
| FDA-2014-N-1168-0001 | FDA | None FDA-2014-N-1168 | Generic Drug User Fee Amendments of 2012; Public Hearing on Policy Development; Request for Comments | Proposed Rule | Notice of Hearing | 2014-08-19T04:00:00Z | 2014 | 8 | 2014-08-19T04:00:00Z | 2014-10-14T03:59:59Z | 2014-11-21T03:02:42Z | 2014-19632 | 0 | 0 | 090000648182f82d |
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;