documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "FDA-2007-E-0461" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- FDA 12
| 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-0461-0012 | FDA | None FDA-2007-E-0461 | U.S. Patent and Trademark Office to Sidley Austin, LLP - Certificate Extending Patent Term | Other | CEP-Certificate Extending Patent Term | 2009-12-04T05:00:00Z | 2009 | 12 | 2009-12-07T21:48:45Z | 0 | 0 | 0900006480a633bc | |||
| FDA-2007-E-0461-0011 | FDA | None FDA-2007-E-0461 | 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 | 2009-04-01T12:32:48Z | 0 | 0 | 090000648093a9f3 | ||
| FDA-2007-E-0461-0008 | FDA | None FDA-2007-E-0461 | USPTO to FDA/CDER - Letter | Other | LET-Letter | 2009-02-12T05:00:00Z | 2009 | 2 | 2009-02-12T05:00:00Z | 2009-02-12T15:05:20Z | 0 | 0 | 09000064808543bf | ||
| FDA-2007-E-0461-0010 | FDA | None FDA-2007-E-0461 | Patent Term Extension Application - Attachments G-K | Supporting & Related Material | APP-Application | 2009-02-12T05:00:00Z | 2009 | 2 | 2009-02-12T15:05:48Z | 0 | 0 | 090000648042df84 | |||
| FDA-2007-E-0461-0009 | FDA | None FDA-2007-E-0461 | Patent Term Extension Application - Attachments A-E | Supporting & Related Material | APP-Application | 2009-02-12T05:00:00Z | 2009 | 2 | 2009-02-12T15:05:47Z | 0 | 0 | 090000648042df82 | |||
| FDA-2007-E-0461-0006 | FDA | None FDA-2007-E-0461 | Genetech, Inc. - Patent Term Extension Application | Other | APP-Application | 2009-02-12T05:00:00Z | 2009 | 2 | 2009-02-12T05:00:00Z | 2026-01-06T00:59:38Z | 0 | 0 | 090000648042df81 | ||
| FDA-2007-E-0461-0007 | FDA | None FDA-2007-E-0461 | USPTO to FDA/CDER - Letter | Other | LET-Letter | 2009-02-12T05:00:00Z | 2009 | 2 | 2009-02-12T05:00:00Z | 2009-02-12T15:05:18Z | 0 | 0 | 090000648050c741 | ||
| FDA-2007-E-0461-0004 | FDA | None FDA-2007-E-0461 | FDA/CDER to the USPTO - Letter | Other | LET-Letter | 2009-01-26T05:00:00Z | 2009 | 1 | 2009-01-26T05:00:00Z | 2009-01-26T20:16:21Z | 0 | 0 | 090000648053dd33 | ||
| FDA-2007-E-0461-0005 | FDA | None FDA-2007-E-0461 | FDA/CDER to the U.S. Patent and Trademark Office | Other | LET-Letter | 2009-01-26T05:00:00Z | 2009 | 1 | 2009-01-26T05:00:00Z | 2009-01-26T20:16:23Z | 0 | 0 | 090000648083100f | ||
| FDA-2007-E-0461-0003 | FDA | None FDA-2007-E-0461 | 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-05-29T12:29:28Z | E8-12007 | 0 | 0 | 0900006480605278 |
| FDA-2007-E-0461-0002 | FDA | None FDA-2007-E-0461 | FDA/CDER to U.S. Patent and Trademark Office | Other | LET-Letter | 2007-11-21T05:00:00Z | 2007 | 11 | 2008-04-04T00:35:05Z | 0 | 0 | 090000648042df85 | |||
| FDA-2007-E-0461-0001 | FDA | None FDA-2007-E-0461 | U.S. Patent and Trademark Office to FDA/CDER | Other | LET-Letter | 2007-10-31T04:00:00Z | 2007 | 10 | 2008-04-04T00:35:05Z | 0 | 0 | 090000648042df80 |
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;