documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "FDA-2013-N-1518" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- FDA 5
| 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-N-1518-0005 | FDA | None FDA-2013-N-1518 | Reference -2 Transcript of the December 6, 2012 meeting of the Circulatory System Devices Panel re Cardiovascular Devices; Reclassification of Nonroller-Type Cardiopulmonary Bypass Blood Pumps for Cardiopulmonary and Circulatory Bypass; Effective Date of Requirement for Premarket Approval for Nonroller-Type Cardiopulmonary Bypass Blood Pumps for Temporary Ventricular Support | Supporting & Related Material | Background Material | 2015-06-08T04:00:00Z | 2015 | 6 | 2015-06-08T16:13:55Z | 0 | 0 | 0900006481b22511 | |||
| FDA-2013-N-1518-0004 | FDA | None FDA-2013-N-1518 | Reference -1 FDA Circulatory System Devices Panel of the Medical Devices Advisory Committee Meeting, December 5-6, 2012 re Cardiovascular Devices; Reclassification of Nonroller-Type Cardiopulmonary Bypass Blood Pumps for Cardiopulmonary and Circulatory Bypass; Effective Date of Requirement for Premarket Approval for Nonroller-Type Cardiopulmonary Bypass Blood Pumps for Temporary Ventricular | Supporting & Related Material | Background Material | 2015-06-08T04:00:00Z | 2015 | 6 | 2015-06-08T16:13:41Z | 0 | 0 | 0900006481b22510 | |||
| FDA-2013-N-1518-0003 | FDA | None FDA-2013-N-1518 | REFERENCE LIST re Cardiovascular Devices; Reclassification of Nonroller-Type Cardiopulmonary Bypass Blood Pumps for Cardiopulmonary and Circulatory Bypass; Effective Date of Requirement for Premarket Approval for Nonroller-Type Cardiopulmonary Bypass Blood Pumps for Temporary Ventricular Support | Supporting & Related Material | Background Material | 2015-06-08T04:00:00Z | 2015 | 6 | 2015-06-08T16:12:47Z | 0 | 0 | 0900006481b22512 | |||
| FDA-2013-N-1518-0002 | FDA | None FDA-2013-N-1518 | Cardiovascular Devices; Reclassification of Nonroller-Type Cardiopulmonary Bypass Blood Pumps for Cardiopulmonary and Circulatory Bypass; Effective Date of Requirement for Premarket Approval for Nonroller-Type Cardiopulmonary Bypass Blood Pumps for Temporary Ventricular Support | Rule | Final Rule | 2015-06-08T04:00:00Z | 2015 | 6 | 2015-06-08T04:00:00Z | 2015-06-08T14:41:30Z | 2015-13889 | 0 | 0 | 0900006481b210e7 | |
| FDA-2013-N-1518-0001 | FDA | None FDA-2013-N-1518 | Cardiovascular Devices; Reclassification of Nonroller-Type Cardiopulmonary Bypass Blood Pumps for Cardiopulmonary and Circulatory Bypass; Effective Date of Requirement for Premarket Approval for Nonroller-Type Cardiopulmonary Bypass Blood Pumps for Temporary Ventricular Support | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2014-01-07T05:00:00Z | 2014 | 1 | 2014-01-07T05:00:00Z | 2014-04-08T03:59:59Z | 2014-04-08T01:06:02Z | 2014-00027 | 0 | 0 | 09000064814f1384 |
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;