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-1149" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, 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-2016-N-1149-0104 | FDA | None FDA-2016-N-1149 | Petition Interim Response from FDA OP to MIWG | Other | Letter(s) | 2017-08-01T04:00:00Z | 2017 | 8 | 2017-08-01T04:00:00Z | 2017-08-01T14:42:16Z | 0 | 0 | 0900006482990a65 | ||
| FDA-2016-N-1149-0087 | FDA | None FDA-2016-N-1149 | Testimony from Anthem Inc. | Other | Testimony | 2017-04-20T04:00:00Z | 2017 | 4 | 2017-04-20T04:00:00Z | 2017-04-20T18:59:26Z | 0 | 0 | 0900006482560beb | ||
| FDA-2016-N-1149-0093 | FDA | None FDA-2016-N-1149 | Testimony from Pfizer Inc. | Other | Testimony | 2017-04-20T04:00:00Z | 2017 | 4 | 2017-04-20T04:00:00Z | 2017-04-20T19:06:43Z | 0 | 0 | 0900006482561a8d | ||
| FDA-2016-N-1149-0075 | FDA | None FDA-2016-N-1149 | Testimony from PharmedOut | Other | Testimony | 2017-04-20T04:00:00Z | 2017 | 4 | 2017-04-20T04:00:00Z | 2017-04-20T16:36:19Z | 0 | 0 | 090000648255df72 | ||
| FDA-2016-N-1149-0048 | FDA | None FDA-2016-N-1149 | Petition to Stay and for Reconsideration | Other | Petition(s) | 2017-02-09T05:00:00Z | 2017 | 2 | 2017-02-09T05:00:00Z | 2017-02-09T15:17:05Z | 0 | 0 | 09000064824b6785 | ||
| FDA-2016-N-1149-0049 | FDA | None FDA-2016-N-1149 | Acknowledgement Letter From FDA DDM to Sidley Austin LLP and Ropes & Gray LLP | Other | Acknowledgement Letter/Receipt | 2017-02-09T05:00:00Z | 2017 | 2 | 2017-02-09T05:00:00Z | 2017-02-09T16:47:18Z | 0 | 0 | 09000064824b6e17 | ||
| FDA-2016-N-1149-0041 | FDA | None FDA-2016-N-1149 | Manufacturer Communications Regarding Unapproved Uses of Approved or Cleared Medical Products; Availability of Memorandum; Reopening of the Comment Period | Proposed Rule | Reopening of Comment Period | 2017-01-19T05:00:00Z | 2017 | 1 | 2017-01-19T05:00:00Z | 2017-04-20T03:59:59Z | 2017-06-23T01:03:12Z | 2017-01013 | 0 | 0 | 090000648248561c |
| FDA-2016-N-1149-0040 | FDA | None FDA-2016-N-1149 | FDA Memorandum--Public Health Interests and First Amendment Considerations Related to Manufacturer Communications Regarding Unapproved Uses of Approved or Cleared Medical Products_Jan 2017 | Other | Letter(s) | 2017-01-18T05:00:00Z | 2017 | 1 | 2017-01-18T05:00:00Z | 2017-01-18T15:22:04Z | 0 | 0 | 0900006482480cf8 |
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;