documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FDA-2012-N-0284" 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-2012-N-0284-0010 | FDA | None FDA-2012-N-0284 | Pediatric Studies of Sodium Nitroprusside Conducted in Accordance With the Public Health Service Act; Availability of Summary Report and Requested Labeling Changes | Notice | General Notice | 2014-01-24T05:00:00Z | 2014 | 1 | 2014-01-24T05:00:00Z | 2014-01-24T15:12:28Z | 2014-01390 | 0 | 0 | 0900006481522177 | |
| FDA-2012-N-0284-0009 | FDA | None FDA-2012-N-0284 | FDA CDER Memorandum December 17 2013 re for use of Sodium Nitroprusside to Reduce Blood Pressure in Pediatric Patients | Other | Memorandum | 2013-12-24T05:00:00Z | 2013 | 12 | 2013-12-24T05:00:00Z | 2013-12-24T13:59:09Z | 0 | 0 | 09000064814d51b8 | ||
| FDA-2012-N-0284-0008 | FDA | None FDA-2012-N-0284 | National Institutes of Health NIH National Institute of Child Health and Human Development NICHD Amendment | Other | Amendment | 2013-09-26T04:00:00Z | 2013 | 9 | 2013-09-26T04:00:00Z | 2013-09-26T22:02:42Z | 0 | 0 | 090000648143c837 | ||
| FDA-2012-N-0284-0007 | FDA | None FDA-2012-N-0284 | FDA CDER Memorandum December 5 2012 re for use of Sodium Nitroprusside to Reduce Blood Pressure in Pediatric Patients | Other | Memorandum | 2012-12-05T05:00:00Z | 2012 | 12 | 2012-12-05T05:00:00Z | 2013-12-24T14:07:35Z | 0 | 0 | 090000648117fc9d | ||
| FDA-2012-N-0284-0006 | FDA | None FDA-2012-N-0284 | Memorandum for the Record re Sodium Nitroprusside I71 979 Public Comment Docket | Other | Memorandum | 2012-11-08T05:00:00Z | 2012 | 11 | 2012-11-08T05:00:00Z | 2013-12-24T14:02:06Z | 0 | 0 | 0900006481163ac1 | ||
| FDA-2012-N-0284-0004 | FDA | None FDA-2012-N-0284 | National Institutes of Health (NIH) National Institute of Child Health and Human Development (NICHD) Part 3 of 3 - Report | Other | Report | 2012-11-02T04:00:00Z | 2012 | 11 | 2012-11-02T04:00:00Z | 2012-11-02T14:58:03Z | 0 | 0 | 0900006481136c92 | ||
| FDA-2012-N-0284-0003 | FDA | None FDA-2012-N-0284 | National Institutes of Health (NIH) National Institute of Child Health and Human Development (NICHD) Part 2 of 3 - Report | Other | Report | 2012-11-02T04:00:00Z | 2012 | 11 | 2012-11-02T04:00:00Z | 2012-11-02T14:56:32Z | 0 | 0 | 0900006481136c91 | ||
| FDA-2012-N-0284-0002 | FDA | None FDA-2012-N-0284 | National Institutes of Health (NIH) National Institute of Child Health and Human Development (NICHD) Part 1 of 3 - Report | Other | Report | 2012-10-04T04:00:00Z | 2012 | 10 | 2012-11-02T17:03:59Z | 0 | 0 | 090000648113398b | |||
| FDA-2012-N-0284-0001 | FDA | None FDA-2012-N-0284 | Pediatric Studies of Sodium Nitroprusside, etc.; Availability | Notice | General Notice | 2012-10-03T04:00:00Z | 2012 | 10 | 2012-10-03T04:00:00Z | 2012-11-03T03:59:59Z | 2012-10-16T02:01:35Z | 2012-24213 | 0 | 0 | 090000648113287d |
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;