documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FDA-2012-N-1203" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-1203-0011 | FDA | None FDA-2012-N-1203 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals | Notice | Notice of Approval | 2019-10-25T04:00:00Z | 2019 | 10 | 2019-10-25T04:00:00Z | 2019-10-29T21:56:46Z | 2019-23251 | 0 | 0 | 09000064840fa11b | |
| FDA-2012-N-1203-0010 | FDA | None FDA-2012-N-1203 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Information To Accompany Humanitarian Device Exemption Applications and Annual Distribution Number Reporting Requirements | Notice | 30 Day Proposed Information Collection | 2019-07-31T04:00:00Z | 2019 | 7 | 2019-07-31T04:00:00Z | 2019-08-31T03:59:59Z | 2019-07-31T16:10:35Z | 2019-16244 | 0 | 0 | 0900006483dd4726 |
| FDA-2012-N-1203-0009 | FDA | None FDA-2012-N-1203 | Agency Information Collection Activities; Proposed Collection; Comment Request; Information To Accompany Humanitarian Device Exemption Applications and Annual Distribution Number Reporting Requirements | Notice | 60 Day Proposed Information Collection | 2019-03-12T04:00:00Z | 2019 | 3 | 2019-03-12T04:00:00Z | 2019-05-14T03:59:59Z | 2019-07-16T18:24:05Z | 2019-04450 | 0 | 0 | 0900006483ad6dac |
| FDA-2012-N-1203-0008 | FDA | None FDA-2012-N-1203 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals | Notice | Notice of Approval | 2016-09-12T04:00:00Z | 2016 | 9 | 2016-09-12T04:00:00Z | 2016-09-12T14:19:00Z | 2016-21877 | 0 | 0 | 09000064821f9cf0 | |
| FDA-2012-N-1203-0005 | FDA | None FDA-2012-N-1203 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Information To Accompany Humanitarian Device Exemption Applications and Annual Distribution Number Reporting Requirements | Notice | 30 Day Proposed Information Collection | 2016-05-16T04:00:00Z | 2016 | 5 | 2016-05-16T04:00:00Z | 2016-06-16T03:59:59Z | 2016-06-16T13:00:17Z | 2016-11532 | 0 | 0 | 0900006481fd0e8a |
| FDA-2012-N-1203-0003 | FDA | None FDA-2012-N-1203 | Agency Information Collection Activities; Proposed Collection; Comment Request; Information To Accompany Humanitarian Device Exemption Applications and Annual Distribution Number Reporting Requirements | Notice | 60 Day Proposed Information Collection | 2016-01-15T05:00:00Z | 2016 | 1 | 2016-01-15T05:00:00Z | 2016-03-16T03:59:59Z | 2016-03-15T15:00:41Z | 2016-00691 | 0 | 0 | 0900006481e11bd2 |
| FDA-2012-N-1203-0002 | FDA | None FDA-2012-N-1203 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Information to Accompany Humanitarian Device Exemption Applications, etc. | Notice | 30 Day Proposed Information Collection | 2013-04-03T04:00:00Z | 2013 | 4 | 2013-04-03T04:00:00Z | 2013-05-04T03:59:59Z | 2016-01-07T12:31:45Z | 2013-07696 | 0 | 0 | 0900006481263445 |
| FDA-2012-N-1203-0001 | FDA | None FDA-2012-N-1203 | Agency Information Collection Activities; Proposed Collection; Comment Request; Information to Accompany Humanitarian Device Exemption Applications and Annual Distribution Number Reporting Requirements | Notice | 60 Day Proposed Information Collection | 2012-12-17T05:00:00Z | 2012 | 12 | 2012-12-17T05:00:00Z | 2013-02-16T04:59:59Z | 2016-01-07T12:43:50Z | 2012-30275 | 0 | 0 | 090000648118f53f |
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;