documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FDA-2010-N-0389" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, 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-2010-N-0389-0045 | FDA | None FDA-2010-N-0389 | Transcript of MDUFA Reauthorization Public Meeting July 13, 2015 | Other | Transcript(s) | 2015-08-26T04:00:00Z | 2015 | 8 | 2015-08-26T04:00:00Z | 2015-08-26T18:41:06Z | 0 | 0 | 0900006481c3b709 | ||
| FDA-2010-N-0389-0034 | FDA | None FDA-2010-N-0389 | Medical Device User Fee Amendments; Public Meeting; Request for Comments | Notice | Meeting | 2015-06-17T04:00:00Z | 2015 | 6 | 2015-06-17T04:00:00Z | 2015-08-13T03:59:59Z | 2015-11-13T02:30:39Z | 2015-14885 | 0 | 0 | 0900006481b41165 |
| FDA-2010-N-0389-0018 | FDA | None FDA-2010-N-0389 | Medical Device User Fee Act Public Meeting | Notice | Meeting | 2012-03-20T04:00:00Z | 2012 | 3 | 2012-03-20T04:00:00Z | 2012-04-17T03:59:59Z | 2012-04-19T15:28:43Z | 2012-06707 | 0 | 0 | 0900006480fdb767 |
| FDA-2010-N-0389-0017 | FDA | None FDA-2010-N-0389 | Meetings: Medical Device User Fee Program; Request for Notification of Patientand Consumer Advocacy Group Intentions to Participate | Notice | N-Notice | 2010-12-13T05:00:00Z | 2010 | 12 | 2010-12-13T05:00:00Z | 2010-12-13T15:25:18Z | 2010-31160 | 0 | 0 | 0900006480bb4fc1 | |
| FDA-2010-N-0389-0008 | FDA | None FDA-2010-N-0389 | Meetings: Medical Device User Fees; Extension of Comment Period | Notice | NEC-Notice of Extension | 2010-10-18T04:00:00Z | 2010 | 10 | 2010-10-18T04:00:00Z | 2010-11-02T03:59:59Z | 2010-10-18T14:15:24Z | 2010-26253 | 0 | 0 | 0900006480b71d1b |
| FDA-2010-N-0389-0003 | FDA | None FDA-2010-N-0389 | Meetings: Medical Device User Fee Act | Notice | GDL-Guidance | 2010-09-01T04:00:00Z | 2010 | 9 | 2010-09-01T19:42:20Z | 2010-21800 | 0 | 0 | 0900006480b40f1a | ||
| FDA-2010-N-0389-0001 | FDA | None FDA-2010-N-0389 | Medical Device User Fee Act: Public Meeting: Request for Comments | Notice | NM-Notice of Meeting | 2010-08-13T04:00:00Z | 2010 | 8 | 2010-08-13T04:00:00Z | 2010-10-15T03:59:59Z | 2010-08-17T12:36:12Z | 2010-19843 | 0 | 0 | 0900006480b2f7ff |
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;