documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FDA-2006-P-0346" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-2006-P-0346-0013 | FDA | None FDA-2006-P-0346 | Endo Pharmaceuticals, Inc. - Comment - Tab C - Background on OGD's Approval of Generic Copies of EMLA Cream Based on Pharmacokinetics | Supporting & Related Material | AMD-(Supporting and Related Material) | 2008-11-17T05:00:00Z | 2008 | 11 | 2008-11-17T18:38:59Z | 0 | 0 | 090000648045f28b | |||
| FDA-2006-P-0346-0012 | FDA | None FDA-2006-P-0346 | Endo Pharmaceuticals, Inc. - Comment - Exhibit 1 - Letter from Dale Conner, Director of Bioequivalence, OGD (Oct. 5, 2006) | Supporting & Related Material | AMD-(Supporting and Related Material) | 2008-11-17T05:00:00Z | 2008 | 11 | 2008-11-17T18:38:58Z | 0 | 0 | 090000648045f288 | |||
| FDA-2006-P-0346-0015 | FDA | None FDA-2006-P-0346 | Endo Pharmaceuticals, Inc. - Comment - Tab A - Oral Versus Topical Dosage Form Performance | Supporting & Related Material | AMD-(Supporting and Related Material) | 2008-11-17T05:00:00Z | 2008 | 11 | 2008-11-17T18:39:02Z | 0 | 0 | 090000648045f28e | |||
| FDA-2006-P-0346-0011 | FDA | None FDA-2006-P-0346 | Endo Pharmaceuticals, Inc. - Comment - Exhibit 16 - 98D-0388, C 12 | Supporting & Related Material | AMD-(Supporting and Related Material) | 2008-11-17T05:00:00Z | 2008 | 11 | 2008-11-17T18:38:57Z | 0 | 0 | 090000648045f26f | |||
| FDA-2006-P-0346-0006 | FDA | None FDA-2006-P-0346 | Endo Pharmaceuticals Inc - Citizen Petition | Other | Citizen Petition | 2008-11-17T05:00:00Z | 2008 | 11 | 2008-11-17T05:00:00Z | 2012-08-23T19:41:05Z | 0 | 0 | 090000648045f24f | ||
| FDA-2006-P-0346-0007 | FDA | None FDA-2006-P-0346 | Endo Pharmaceuticals Inc - Tab A - October 5, 2006 Letter, Reference OGD #06-0100 | Supporting & Related Material | CP-Citizen Petition (Supporting & Related Materials) | 2008-11-17T05:00:00Z | 2008 | 11 | 2008-11-17T17:09:30Z | 0 | 0 | 090000648045f252 | |||
| FDA-2006-P-0346-0014 | FDA | None FDA-2006-P-0346 | Endo Pharmaceuticals, Inc. - Comment - Tab B - Evaluation and Withdrawal of Draft Guidance for Topical Product Bioequivalence | Supporting & Related Material | AMD-(Supporting and Related Material) | 2008-11-17T05:00:00Z | 2008 | 11 | 2008-11-17T18:39:00Z | 0 | 0 | 090000648045f28d | |||
| FDA-2006-P-0346-0008 | FDA | None FDA-2006-P-0346 | Endo Pharmaceuticals Inc., Correction Letter to FDA - Letter | Other | CR-Correction | 2008-11-17T05:00:00Z | 2008 | 11 | 2008-11-17T05:00:00Z | 2012-04-18T22:44:54Z | 0 | 0 | 090000648045f264 |
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;