documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FDA-2010-P-0624" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, withdrawn, posted_date (date), comment_start_date (date), last_modified (date)
document_type 2
agency_id 1
- FDA 8
| 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-P-0624-0009 | FDA | None FDA-2010-P-0624 | FDA/CDER to Cubist Pharmaceuticals - Petition Partial Approval and Denial | Other | PPAD-Petition Partial Approval and Denial | 2011-06-06T04:00:00Z | 2011 | 6 | 2011-06-06T04:00:00Z | 2013-08-11T03:15:12Z | 0 | 0 | 0900006480e3d74a | ||
| FDA-2010-P-0624-0007 | FDA | None FDA-2010-P-0624 | Exhibit 25 - "FDA/CDER Letter to Cubist Pharmaceuticals, Inc., March 22, 2004" - [Cubist Pharmaceuticals, Inc. - Supplement] re FDA-2010-P-0624-0005 | Supporting & Related Material | SUP-Supplement (Supporting and Related Material) | 2011-02-15T05:00:00Z | 2011 | 2 | 2011-02-16T00:26:38Z | 0 | 0 | 0900006480bcd3d0 | |||
| FDA-2010-P-0624-0006 | FDA | None FDA-2010-P-0624 | Exhibit 24 - "Microbiology Comments: Dapto Labeling Supplement (NDA21-572/S-007)" - [Cubist Pharmaceuticals, Inc. - Supplement] re FDA-2010-P-0624-0005 | Supporting & Related Material | SUP-Supplement (Supporting and Related Material) | 2011-02-15T05:00:00Z | 2011 | 2 | 2011-02-16T00:23:48Z | 0 | 0 | 0900006480bcd3ce | |||
| FDA-2010-P-0624-0008 | FDA | None FDA-2010-P-0624 | Exhibit 26 - "Cubist Letter to FDA/CDER, September 14, 2000 re Change in Manufacturer Procedure for Daptomycin API" - [Cubist Pharmaceuticals, Inc. - Supplement] re FDA-2010-P-0624-0005 | Supporting & Related Material | SUP-Supplement (Supporting and Related Material) | 2011-02-15T05:00:00Z | 2011 | 2 | 2011-02-16T00:31:19Z | 0 | 0 | 0900006480bcda9d | |||
| FDA-2010-P-0624-0004 | FDA | None FDA-2010-P-0624 | Exhibit 6 - HCUP Facts and Figures: Statistics on Hospital-Based Care in the U.S., 2007 [Cubist - Citizen Petition] | Supporting & Related Material | CP-Citizen Petition (Supporting & Related Materials) | 2010-12-21T05:00:00Z | 2010 | 12 | 2010-12-21T16:56:53Z | 0 | 0 | 0900006480bbce95 | |||
| FDA-2010-P-0624-0001 | FDA | None FDA-2010-P-0624 | Cubist Pharmaceuticals, Inc. - Citizen Petition | Other | CP-Citizen Petition | 2010-12-20T05:00:00Z | 2010 | 12 | 2010-12-20T05:00:00Z | 2013-08-11T03:12:04Z | 0 | 0 | 0900006480bb16be | ||
| FDA-2010-P-0624-0002 | FDA | None FDA-2010-P-0624 | Acknowledgement Letter to Cubist Pharmaceuticals, Inc. | Other | ACK-Acknowledgement Letter | 2010-12-20T05:00:00Z | 2010 | 12 | 2010-12-20T05:00:00Z | 2010-12-20T15:14:57Z | 0 | 0 | 0900006480bb16bf | ||
| FDA-2010-P-0624-0003 | FDA | None FDA-2010-P-0624 | See FDA-2010-P-0624-0004 | Supporting & Related Material | 2010-12-20T00:00:00Z | 2010 | 12 | 2011-01-03T18:18:30Z | 0 | 1 | 0900006480bb16c5 |
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;