documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FDA-2007-E-0165" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- FDA 10
| 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-2007-E-0165-0010 | FDA | None FDA-2007-E-0165 | U.S. Patent and Trademark Office to Sidley Austin, LLP - Withdrawal of Application for Patent Term Extension | Other | WDL-Withdrawal | 2009-12-03T05:00:00Z | 2009 | 12 | 2026-01-06T01:15:20Z | 0 | 0 | 0900006480a6280c | |||
| FDA-2007-E-0165-0009 | FDA | None FDA-2007-E-0165 | U.S. Patent and Trademark Office to Sidley Austin, LLP - Notice of Final Determination | Other | LET-Letter | 2009-04-01T04:00:00Z | 2009 | 4 | 2009-04-01T04:00:00Z | 2026-01-06T01:09:39Z | 0 | 0 | 090000648093a9cb | ||
| FDA-2007-E-0165-0008 | FDA | None FDA-2007-E-0165 | Letter from FDA/CDER to United States Patent and Trademark Office | Other | LET-Letter | 2009-01-26T05:00:00Z | 2009 | 1 | 2009-01-26T05:00:00Z | 2026-01-06T01:08:05Z | 0 | 0 | 0900006480831046 | ||
| FDA-2007-E-0165-0005 | FDA | None FDA-2007-E-0165 | Patent Term Extension Application - Attachment 2 | Supporting & Related Material | APP-Application | 2008-05-29T04:00:00Z | 2008 | 5 | 2008-12-05T14:23:03Z | 0 | 0 | 090000648042a510 | |||
| FDA-2007-E-0165-0006 | FDA | None FDA-2007-E-0165 | Letter from USPTO to FDA/CDER | Other | LET-Letter | 2008-05-29T04:00:00Z | 2008 | 5 | 2008-05-29T04:00:00Z | 2026-01-06T01:06:16Z | 0 | 0 | 090000648050c46d | ||
| FDA-2007-E-0165-0004 | FDA | None FDA-2007-E-0165 | Patent Term Extension Application Genentech, Inc. | Other | APP-Application | 2008-05-29T04:00:00Z | 2008 | 5 | 2008-05-29T04:00:00Z | 2026-01-06T01:23:53Z | 0 | 0 | 090000648042a50e | ||
| FDA-2007-E-0165-0003 | FDA | None FDA-2007-E-0165 | Determination of Regulatory Review Period for Purposes of Patent Extension; LUCENTIS | Notice | N-Notice | 2008-05-29T04:00:00Z | 2008 | 5 | 2008-05-29T04:00:00Z | 2008-07-29T03:59:59Z | 2008-12-05T14:24:34Z | 0 | 0 | 0900006480605725 | |
| FDA-2007-E-0165-0007 | FDA | None FDA-2007-E-0165 | Letter from FDA/CDER to the USPTO | Other | LET-Letter | 2008-05-29T04:00:00Z | 2008 | 5 | 2008-05-29T04:00:00Z | 2026-01-06T01:06:57Z | 0 | 0 | 090000648053ddc9 | ||
| FDA-2007-E-0165-0002 | FDA | None FDA-2007-E-0165 | Letter from FDA/CDER to USPTO | Other | LET-Letter | 2007-11-21T05:00:00Z | 2007 | 11 | 2026-01-06T01:03:51Z | 0 | 0 | 090000648042a511 | |||
| FDA-2007-E-0165-0001 | FDA | None FDA-2007-E-0165 | Letter from USPTO to FDA/CDER | Other | LET-Letter | 2007-10-31T04:00:00Z | 2007 | 10 | 2026-01-06T01:16:01Z | 0 | 0 | 090000648042a50c |
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;