documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "FDA" and docket_id = "FDA-2008-P-0368" 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), last_modified (date)
document_type 2
agency_id 1
- FDA · 8 ✖
| 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-2008-P-0368-0008 | FDA | None FDA-2008-P-0368 | FDA/CDER to ISTA Pharmaceuticals - Petition Partial Approval and Denial | Other | PPAD-Petition Partial Approval and Denial | 2011-05-11T04:00:00Z | 2011 | 5 | 2011-05-11T04:00:00Z | 2013-08-11T01:41:35Z | 0 | 0 | 0900006480c6db72 | ||
| FDA-2008-P-0368-0007 | FDA | None FDA-2008-P-0368 | FDA/CDER Interim Response to ISTA Pharmaceuticals - Letter | Other | LET-Letter | 2008-12-30T05:00:00Z | 2008 | 12 | 2008-12-30T05:00:00Z | 2008-12-31T00:25:10Z | 0 | 0 | 0900006480807c1c | ||
| FDA-2008-P-0368-0005 | FDA | None FDA-2008-P-0368 | Exhibit G - Declaration of William B. Trattler, M.D. - Citizen Petition | Supporting & Related Material | CP-Citizen Petition (Supporting & Related Materials) | 2008-07-01T04:00:00Z | 2008 | 7 | 2008-07-01T22:34:32Z | 0 | 0 | 090000648063cd8e | |||
| FDA-2008-P-0368-0004 | FDA | None FDA-2008-P-0368 | Exhibit F- Declaration of Barry Alan Schecter, M.D. - Citizen Petition | Supporting & Related Material | CP-Citizen Petition (Supporting & Related Materials) | 2008-07-01T04:00:00Z | 2008 | 7 | 2008-07-01T22:33:46Z | 0 | 0 | 090000648063cfa7 | |||
| FDA-2008-P-0368-0001 | FDA | None FDA-2008-P-0368 | ISTA Pharmaceuticals - Citizen Petition | Other | CP-Citizen Petition | 2008-07-01T04:00:00Z | 2008 | 7 | 2008-07-01T04:00:00Z | 2013-07-28T01:54:25Z | 0 | 0 | 090000648063c671 | ||
| FDA-2008-P-0368-0006 | FDA | None FDA-2008-P-0368 | Acknowledgement Letter to ISTA Pharmaceuticals | Other | ACK-Acknowledgement Letter | 2008-07-01T04:00:00Z | 2008 | 7 | 2008-07-01T04:00:00Z | 2008-11-17T18:42:44Z | 0 | 0 | 090000648063ca8c | ||
| FDA-2008-P-0368-0002 | FDA | None FDA-2008-P-0368 | Exhibit D - Declaration of Uday Devgan, M.D., FACS - [ISTA Pharmaceuticals - Citizen Petition] | Supporting & Related Material | CP-Citizen Petition (Supporting & Related Materials) | 2008-07-01T04:00:00Z | 2008 | 7 | 2011-06-08T19:27:44Z | 0 | 0 | 090000648063cca9 | |||
| FDA-2008-P-0368-0003 | FDA | None FDA-2008-P-0368 | Exhibit E - Declaration of Johnny Lee Gayton, M.D., FSEE - Citizen Petition | Supporting & Related Material | CP-Citizen Petition (Supporting & Related Materials) | 2008-07-01T04:00:00Z | 2008 | 7 | 2008-07-01T22:32:58Z | 0 | 0 | 090000648063ccd0 |
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;