documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FDA-2016-N-0001" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, posted_date (date), comment_start_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-2016-N-0001-0137 | FDA | None FDA-2016-N-0001 | Scientific Evidence Workshop Transcript 09082016 | Other | Transcript(s) | 2017-08-24T04:00:00Z | 2017 | 8 | 2017-08-24T04:00:00Z | 2017-08-24T20:34:57Z | 0 | 0 | 0900006482aba1ec | ||
| FDA-2016-N-0001-0136 | FDA | None FDA-2016-N-0001 | Transcript of Public Workshop on Identification and Characterization of Infectious Disease Risks of Human Cells, Tissues, and Cellular and Tissue-Based Products - February 9, 2017 | Other | Transcript(s) | 2017-04-17T04:00:00Z | 2017 | 4 | 2017-04-17T04:00:00Z | 2017-04-17T15:04:25Z | 0 | 0 | 0900006482559eba | ||
| FDA-2016-N-0001-0135 | FDA | None FDA-2016-N-0001 | Identification and Characterization of the Infectious Disease Risks of Human Cells, Tissues, and Cellular and Tissue-Based Products; Public Workshop | Other | Transcript(s) | 2017-04-14T04:00:00Z | 2017 | 4 | 2017-04-14T04:00:00Z | 2017-04-14T15:44:16Z | 0 | 0 | 09000064825564be | ||
| FDA-2016-N-0001-0134 | FDA | None FDA-2016-N-0001 | Identification and Characterization of the Infectious Disease Risks of Human Cells, Tissues, and Cellular and Tissue-Based Products; Public Workshop; Correction | Notice | Correction | 2017-03-20T04:00:00Z | 2017 | 3 | 2017-03-20T04:00:00Z | 2017-03-20T13:22:31Z | 2017-05417 | 0 | 0 | 090000648251314b | |
| FDA-2016-N-0001-0133 | FDA | None FDA-2016-N-0001 | Transcript of Controlling the Progression of Myopia - Public Workshop, September 30, 2016 | Other | Transcript(s) | 2017-02-06T05:00:00Z | 2017 | 2 | 2017-02-06T05:00:00Z | 2017-02-06T16:21:16Z | 0 | 0 | 09000064824ad852 | ||
| FDA-2016-N-0001-0132 | FDA | None FDA-2016-N-0001 | Psychopharmacologic Drugs Advisory Committee; Cancellation | Notice | Meeting | 2017-01-19T05:00:00Z | 2017 | 1 | 2017-01-19T05:00:00Z | 2017-01-19T16:40:51Z | 2017-01170 | 0 | 0 | 090000648248501f | |
| FDA-2016-N-0001-0131 | FDA | None FDA-2016-N-0001 | Circulatory System Devices Panel of the Medical Devices Advisory Committee; Notice of Meeting | Notice | Meeting | 2017-01-09T05:00:00Z | 2017 | 1 | 2017-01-09T05:00:00Z | 2017-01-09T15:25:39Z | 2017-00143 | 0 | 0 | 0900006482452bf6 | |
| FDA-2016-N-0001-0130 | FDA | None FDA-2016-N-0001 | Advisory Committee; Technical Electronic Product Radiation Safety Standards Committee, Renewal | Notice | Notice of Renewal | 2017-01-04T05:00:00Z | 2017 | 1 | 2017-01-04T05:00:00Z | 2017-01-04T14:20:13Z | 2016-31847 | 0 | 0 | 0900006482449585 |
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;