documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FDA-2012-N-1040" and posted_year = 2012 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-1040-0008 | FDA | None FDA-2012-N-1040 | PDI - Presentation | Other | Presentation | 2012-12-15T05:00:00Z | 2012 | 12 | 2012-12-15T05:00:00Z | 2012-12-15T15:05:40Z | 0 | 0 | 090000648118e4d1 | ||
| FDA-2012-N-1040-0005 | FDA | None FDA-2012-N-1040 | West Virginia University School of Medicine - Presentation | Other | Presentation | 2012-12-15T05:00:00Z | 2012 | 12 | 2012-12-15T05:00:00Z | 2012-12-15T15:01:04Z | 0 | 0 | 090000648118e4cb | ||
| FDA-2012-N-1040-0006 | FDA | None FDA-2012-N-1040 | Joyce Ryan DNP NP-BC RN - Presentaion | Other | Presentation | 2012-12-15T05:00:00Z | 2012 | 12 | 2012-12-15T05:00:00Z | 2012-12-15T15:02:16Z | 0 | 0 | 090000648118e4cd | ||
| FDA-2012-N-1040-0004 | FDA | None FDA-2012-N-1040 | Antiseptic Patient Preoperative Skin Preparation Products Public Hearing December 12, 2012 Meeting Agenda | Other | Agenda | 2012-12-15T05:00:00Z | 2012 | 12 | 2012-12-15T05:00:00Z | 2012-12-15T14:59:53Z | 0 | 0 | 090000648118d199 | ||
| FDA-2012-N-1040-0007 | FDA | None FDA-2012-N-1040 | Sinai Hospital - Presentation | Other | Presentation | 2012-12-15T05:00:00Z | 2012 | 12 | 2012-12-15T05:00:00Z | 2012-12-15T15:03:00Z | 0 | 0 | 090000648118e4cf | ||
| FDA-2012-N-1040-0002 | FDA | None FDA-2012-N-1040 | Antiseptic Patient Preoperative Skin Preparation Products; Public Hearing; Correction | Notice | Correction | 2012-12-04T05:00:00Z | 2012 | 12 | 2012-12-04T05:00:00Z | 2012-12-05T21:36:18Z | 2012-29166 | 0 | 0 | 090000648117e58b | |
| FDA-2012-N-1040-0001 | FDA | None FDA-2012-N-1040 | Antiseptic Patient Preoperative Skin Preparation Products Public Hearing Request for Comments | Notice | General Notice | 2012-11-21T05:00:00Z | 2012 | 11 | 2012-11-21T05:00:00Z | 2013-02-13T04:59:59Z | 2013-02-13T03:02:47Z | 2012-28357 | 0 | 0 | 090000648116fd16 |
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;