documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FDA-2004-E-0081" 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), 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-2004-E-0081-0012 | FDA | Patent Term Extenstion Application for S8 Over-the Wire System ( Driver Stent Delivery System), U.S. Patent No. 6,309,402 FDA-2004-E-0081 | Patent Term Extension Application - Exhibit C - Patent Maintenance Fees | Supporting & Related Material | APP-Application | 2008-11-06T05:00:00Z | 2008 | 11 | 2008-11-06T12:59:23Z | 0 | 0 | 090000648046edc0 | |||
| FDA-2004-E-0081-0010 | FDA | Patent Term Extenstion Application for S8 Over-the Wire System ( Driver Stent Delivery System), U.S. Patent No. 6,309,402 FDA-2004-E-0081 | USPTO to Medtronic Vascular - Certificate Extending Patent Term | Other | CEP-Certificate Extending Patent Term | 2008-11-06T05:00:00Z | 2008 | 11 | 2008-11-06T05:00:00Z | 2008-11-06T12:58:53Z | 0 | 0 | 09000064806a7630 | ||
| FDA-2004-E-0081-0008 | FDA | Patent Term Extenstion Application for S8 Over-the Wire System ( Driver Stent Delivery System), U.S. Patent No. 6,309,402 FDA-2004-E-0081 | Medtronic Vascular - Patent Term Extension Application | Other | APP-Application | 2008-11-06T05:00:00Z | 2008 | 11 | 2008-11-06T05:00:00Z | 2008-11-06T12:58:50Z | 0 | 0 | 090000648046edc3 | ||
| FDA-2004-E-0081-0013 | FDA | Patent Term Extenstion Application for S8 Over-the Wire System ( Driver Stent Delivery System), U.S. Patent No. 6,309,402 FDA-2004-E-0081 | Patent Term Extension Application - Exhibit B - Patent | Supporting & Related Material | APP-Application | 2008-11-06T05:00:00Z | 2008 | 11 | 2008-11-06T12:59:24Z | 0 | 0 | 090000648046edc1 | |||
| FDA-2004-E-0081-0011 | FDA | Patent Term Extenstion Application for S8 Over-the Wire System ( Driver Stent Delivery System), U.S. Patent No. 6,309,402 FDA-2004-E-0081 | Patent Term Extension Application - Exhibit D - Terminal Disclaimer under 37CFR1.321(b) and (c) | Supporting & Related Material | APP-Application | 2008-11-06T05:00:00Z | 2008 | 11 | 2008-11-06T12:59:22Z | 0 | 0 | 090000648046edbf | |||
| FDA-2004-E-0081-0007 | FDA | Patent Term Extenstion Application for S8 Over-the Wire System ( Driver Stent Delivery System), U.S. Patent No. 6,309,402 FDA-2004-E-0081 | Determination of Regulatory Review Period for Purposes of Patent Extension; S8 OVER-THE WIRE SYSTEM - Federal Register Notice | Notice | N-Notice | 2008-11-06T05:00:00Z | 2008 | 11 | 2008-11-06T05:00:00Z | 2007-04-25T03:59:59Z | 2008-11-06T12:58:48Z | 0 | 0 | 090000648046edc8 | |
| FDA-2004-E-0081-0014 | FDA | Patent Term Extenstion Application for S8 Over-the Wire System ( Driver Stent Delivery System), U.S. Patent No. 6,309,402 FDA-2004-E-0081 | Patent Term Extension Application - Exhibit A | Supporting & Related Material | APP-Application | 2008-11-06T05:00:00Z | 2008 | 11 | 2008-11-06T12:59:25Z | 0 | 0 | 090000648046edc2 | |||
| FDA-2004-E-0081-0009 | FDA | Patent Term Extenstion Application for S8 Over-the Wire System ( Driver Stent Delivery System), U.S. Patent No. 6,309,402 FDA-2004-E-0081 | USPTO to Medtronic Vascular - Notice of Final Determination and Requirement for Election | Other | LET-Letter | 2008-11-06T05:00:00Z | 2008 | 11 | 2008-11-06T05:00:00Z | 2008-11-06T12:58:52Z | 0 | 0 | 090000648050c7a7 |
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;