documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "FDA" and docket_id = "FDA-2013-P-1079" 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), 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-2013-P-1079-0011 | FDA | None FDA-2013-P-1079 | Kalb et al_IU Final Rule_Response_3-26-18 | Other | Response(s) | 2018-04-09T04:00:00Z | 2018 | 4 | 2018-04-09T04:00:00Z | 2018-04-09T21:08:22Z | 0 | 0 | 09000064830e95e1 | ||
| FDA-2013-P-1079-0010 | FDA | None FDA-2013-P-1079 | 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:33:54Z | 0 | 0 | 09000064829908c5 | ||
| FDA-2013-P-1079-0008 | FDA | None FDA-2013-P-1079 | Petition to Stay and for Reconsideration | Other | Petition for Reconsideration | 2017-02-09T05:00:00Z | 2017 | 2 | 2017-02-09T05:00:00Z | 2017-02-09T16:14:34Z | 0 | 0 | 09000064824b6c7b | ||
| FDA-2013-P-1079-0009 | FDA | None FDA-2013-P-1079 | Acknowledgment 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:50:51Z | 0 | 0 | 09000064824b6e56 | ||
| FDA-2013-P-1079-0005 | FDA | None FDA-2013-P-1079 | Letter from FDA CDER to Ropes & Gray LLP and Sidley Austin LLP | Other | Letter(s) | 2014-12-22T05:00:00Z | 2014 | 12 | 2014-12-22T05:00:00Z | 2014-12-22T23:20:44Z | 0 | 0 | 090000648198d4af | ||
| FDA-2013-P-1079-0004 | FDA | None FDA-2013-P-1079 | Citizen Petition Approval Response from FDA CDER to Ropes & Gray LLP and Sidley Austin LLP | Other | Approval | 2014-06-09T04:00:00Z | 2014 | 6 | 2014-06-09T04:00:00Z | 2014-06-09T13:57:53Z | 0 | 0 | 090000648172ff5e | ||
| FDA-2013-P-1079-0003 | FDA | None FDA-2013-P-1079 | Interim Response from FDA CDER to Ropes Gray LLP Sidley Austin LLP | Other | Letter(s) | 2014-02-28T05:00:00Z | 2014 | 2 | 2014-02-28T05:00:00Z | 2014-02-28T17:51:31Z | 0 | 0 | 09000064815ec6c9 | ||
| FDA-2013-P-1079-0002 | FDA | None FDA-2013-P-1079 | Acknowledgement Letter to Medical Information Working Group Ropes and Gray LLP | Other | Acknowledgement Letter/Receipt | 2014-01-31T05:00:00Z | 2014 | 1 | 2014-01-31T05:00:00Z | 2014-01-31T16:18:22Z | 0 | 0 | 09000064814252a5 | ||
| FDA-2013-P-1079-0001 | FDA | None FDA-2013-P-1079 | Citizen Petition from Medical Information Working Group Ropes and Gray LLP | Other | Citizen Petition | 2014-01-31T05:00:00Z | 2014 | 1 | 2014-01-31T05:00:00Z | 2014-12-22T23:22:03Z | 0 | 0 | 09000064814252a3 |
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;