documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FDA-2011-P-0086" 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)
document_type 2
agency_id 1
- FDA 9
| 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-2011-P-0086-0011 | FDA | None FDA-2011-P-0086 | Agency Response Letter to Risperidone Staleness | Other | Agency Response | 2022-06-17T04:00:00Z | 2022 | 6 | 2022-06-17T04:00:00Z | 2022-06-17T15:29:57Z | 0 | 0 | 09000064851793a1 | ||
| FDA-2011-P-0086-0012 | FDA | None FDA-2011-P-0086 | Agency Response Letter to Risperidone | Other | Agency Response | 2022-06-17T04:00:00Z | 2022 | 6 | 2022-06-17T04:00:00Z | 2022-06-17T15:31:43Z | 0 | 0 | 09000064851793a3 | ||
| FDA-2011-P-0086-0009 | FDA | None FDA-2011-P-0086 | Supplement from Janssen Research & Development, LLC | Other | Electronic Regulation from Form | 2016-12-07T05:00:00Z | 2016 | 12 | 2016-12-07T05:00:00Z | 2016-12-07T19:51:18Z | 0 | 0 | 0900006482360a28 | ||
| FDA-2011-P-0086-0008 | FDA | None FDA-2011-P-0086 | Supplement from Janssen Research and Development | Other | Supplement (SUP) | 2016-02-26T05:00:00Z | 2016 | 2 | 2016-02-26T05:00:00Z | 2016-02-26T16:00:23Z | 0 | 0 | 0900006481e881a5 | ||
| FDA-2011-P-0086-0007 | FDA | None FDA-2011-P-0086 | Supplement from Janssen | Other | Supplement (SUP) | 2016-02-16T05:00:00Z | 2016 | 2 | 2016-02-16T05:00:00Z | 2016-02-16T20:34:21Z | 0 | 0 | 0900006481e6f4ee | ||
| FDA-2011-P-0086-0006 | FDA | None FDA-2011-P-0086 | Janssen Research & Development, LLC. - Supplement | Other | Supplement (SUP) | 2013-12-24T05:00:00Z | 2013 | 12 | 2013-12-24T05:00:00Z | 2013-12-24T20:07:39Z | 0 | 0 | 09000064814ba9d1 | ||
| FDA-2011-P-0086-0003 | FDA | None FDA-2011-P-0086 | Exhibit 3 - "Diagnostic & Statistical Manual of Mental Disorders" - [Johnson & Johnson Pharmaceutical Research, LLC., (Ropes & Gray, LLP) - Citizen Petition] | Supporting & Related Material | CP-Citizen Petition (Supporting & Related Materials) | 2011-02-23T05:00:00Z | 2011 | 2 | 2011-02-23T21:39:03Z | 0 | 0 | 0900006480becf96 | |||
| FDA-2011-P-0086-0001 | FDA | None FDA-2011-P-0086 | Johnson & Johnson Pharmaceutical Research, LLC., (Ropes & Gray, LLP) - Citizen Petition | Other | CP-Citizen Petition | 2011-02-23T05:00:00Z | 2011 | 2 | 2011-02-23T05:00:00Z | 2022-06-17T15:32:18Z | 0 | 0 | 0900006480becc27 | ||
| FDA-2011-P-0086-0002 | FDA | None FDA-2011-P-0086 | Acknowledgement Letter to Johnson & Johnson Pharmaceutical Research, LLC., (Ropes & Gray, LLP) | Other | ACK-Acknowledgement Letter | 2011-02-23T05:00:00Z | 2011 | 2 | 2011-02-23T05:00:00Z | 2013-07-27T23:44:58Z | 0 | 0 | 0900006480becc2c |
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;