documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FDA-2014-N-0345" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_month, comment_end_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-2014-N-0345-0013 | FDA | None FDA-2014-N-0345 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approval; Data to Support Drug Product Communications | Notice | Notice of Approval | 2021-04-30T04:00:00Z | 2021 | 4 | 2021-04-30T04:00:00Z | 2021-04-30T18:42:47Z | 2021-09043 | 0 | 0 | 0900006484abeeb5 | |
| FDA-2014-N-0345-0012 | FDA | None FDA-2014-N-0345 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Data To Support Drug Product Communications as Used by the Food and Drug Administration | Notice | 30 Day Proposed Information Collection | 2021-01-21T05:00:00Z | 2021 | 1 | 2021-01-21T05:00:00Z | 2021-02-19T04:59:59Z | 2021-01-21T14:43:14Z | 0 | 0 | 09000064849fac8b | |
| FDA-2014-N-0345-0011 | FDA | None FDA-2014-N-0345 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Data To Support Drug Product Communications as Used by the Food and Drug Administration | Notice | 30 Day Proposed Information Collection | 2021-01-19T05:00:00Z | 2021 | 1 | 2021-01-19T05:00:00Z | 2021-02-19T04:59:59Z | 2021-01-19T15:18:28Z | 2021-01030 | 0 | 0 | 09000064849f80d5 |
| FDA-2014-N-0345-0010 | FDA | None FDA-2014-N-0345 | Agency Information Collection Activities; Proposed Collection; Comment Request; Data To Support Drug Product Communications as Used by the Food and Drug Administration | Notice | 60 Day Proposed Information Collection | 2020-06-17T04:00:00Z | 2020 | 6 | 2020-06-17T04:00:00Z | 2020-08-18T03:59:59Z | 2020-06-17T12:18:21Z | 2020-13079 | 0 | 0 | 09000064846f5821 |
| FDA-2014-N-0345-0009 | FDA | None FDA-2014-N-0345 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals; Correction | Notice | Correction | 2018-05-04T04:00:00Z | 2018 | 5 | 2018-05-04T04:00:00Z | 2018-05-04T15:25:53Z | 2018-09437 | 0 | 0 | 090000648322b85c | |
| FDA-2014-N-0345-0008 | FDA | None FDA-2014-N-0345 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | Notice of Approval | 2018-04-09T04:00:00Z | 2018 | 4 | 2018-04-09T04:00:00Z | 2018-04-09T15:51:02Z | 2018-07146 | 0 | 0 | 09000064830e0a3b | |
| FDA-2014-N-0345-0007 | FDA | None FDA-2014-N-0345 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Data To Support Drug Product Communications as Used by the Food and Drug Administration | Notice | 30 Day Proposed Information Collection | 2017-12-13T05:00:00Z | 2017 | 12 | 2017-12-13T05:00:00Z | 2018-01-13T04:59:59Z | 2017-12-13T17:25:59Z | 2017-26795 | 0 | 0 | 0900006482d01f42 |
| FDA-2014-N-0345-0005 | FDA | None FDA-2014-N-0345 | Agency Information Collection Activities; Proposed Collection; Comment Request; Data To Support Drug Product Communications as Used by the Food and Drug Administration | Notice | 60 Day Proposed Information Collection | 2017-06-19T04:00:00Z | 2017 | 6 | 2017-06-19T04:00:00Z | 2017-08-19T03:59:59Z | 2017-08-19T01:03:19Z | 2017-12601 | 0 | 0 | 09000064826ecf31 |
| FDA-2014-N-0345-0002 | FDA | None FDA-2014-N-0345 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Data To Support Drug Product Communications as Used by the Food and Drug Administration | Notice | 30 Day Proposed Information Collection | 2014-09-30T04:00:00Z | 2014 | 9 | 2014-09-30T04:00:00Z | 2014-10-31T03:59:59Z | 2017-04-06T19:56:00Z | 2014-23236 | 0 | 0 | 090000648189b6d9 |
| FDA-2014-N-0345-0001 | FDA | None FDA-2014-N-0345 | Agency Information Collection Activities; Proposed Collection; Comment Request; Data To Support Drug Product Communications as Used by the Food and Drug Administration | Notice | 60 Day Proposed Information Collection | 2014-04-07T04:00:00Z | 2014 | 4 | 2014-04-07T04:00:00Z | 2014-06-07T03:59:59Z | 2017-04-06T19:56:10Z | 2014-07705 | 0 | 0 | 09000064816a2f9d |
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;