documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "FDA" and docket_id = "FDA-2013-N-1588" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, 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-2013-N-1588-0018 | FDA | None FDA-2013-N-1588 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals | Notice | Notice of Approval | 2022-10-20T04:00:00Z | 2022 | 10 | 2022-10-20T04:00:00Z | 2022-10-21T19:31:00Z | 2022-22762 | 0 | 0 | 0900006485428f8d | |
| FDA-2013-N-1588-0017 | FDA | None FDA-2013-N-1588 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Exemptions From Substantial Equivalence Requirements for Tobacco Products | Notice | 30 Day Proposed Information Collection | 2022-08-10T04:00:00Z | 2022 | 8 | 2022-08-10T04:00:00Z | 2022-10-21T19:30:45Z | 2022-17184 | 0 | 0 | 090000648522c3f2 | |
| FDA-2013-N-1588-0015 | FDA | None FDA-2013-N-1588 | Agency Information Collection Activities; Proposed Collection; Comment Request; Exemptions From Substantial Equivalence Requirements for Tobacco Products | Notice | 60 Day Proposed Information Collection | 2022-02-25T05:00:00Z | 2022 | 2 | 2022-02-25T05:00:00Z | 2022-04-27T03:59:59Z | 2022-10-21T19:30:21Z | 2022-03992 | 0 | 0 | 0900006484fa3e67 |
| FDA-2013-N-1588-0014 | FDA | None FDA-2013-N-1588 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals | Notice | Notice of Approval | 2019-11-07T05:00:00Z | 2019 | 11 | 2019-11-07T05:00:00Z | 2022-10-21T19:31:55Z | 2019-24263 | 0 | 0 | 09000064841282ea | |
| FDA-2013-N-1588-0013 | FDA | None FDA-2013-N-1588 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Exemptions From Substantial Equivalence Requirements for Tobacco Products | Notice | 30 Day Proposed Information Collection | 2019-06-05T04:00:00Z | 2019 | 6 | 2019-06-05T04:00:00Z | 2022-10-21T19:31:38Z | 2019-11658 | 0 | 0 | 0900006483cebf09 | |
| FDA-2013-N-1588-0010 | FDA | None FDA-2013-N-1588 | Agency Information Collection Activities; Proposed Collection; Comment Request; Exemptions From Substantial Equivalence Requirements for Tobacco Products | Notice | 60 Day Proposed Information Collection | 2018-09-13T04:00:00Z | 2018 | 9 | 2018-09-13T04:00:00Z | 2018-11-14T04:59:59Z | 2022-10-21T19:31:24Z | 2018-19913 | 0 | 0 | 09000064836e6054 |
| FDA-2013-N-1588-0009 | FDA | None FDA-2013-N-1588 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Tobacco Products, Exemptions From Substantial Equivalence Requirements | Notice | 30 Day Proposed Information Collection | 2014-06-18T04:00:00Z | 2014 | 6 | 2014-06-18T04:00:00Z | 2014-07-19T03:59:59Z | 2022-07-25T17:28:56Z | 2014-14253 | 0 | 0 | 090000648174fac1 |
| FDA-2013-N-1588-0001 | FDA | None FDA-2013-N-1588 | Agency Information Collection Activities; Proposed Collection; Comment Request; Tobacco Products, Exemptions From Substantial Equivalence Requirements | Notice | 60 Day Proposed Information Collection | 2013-12-19T05:00:00Z | 2013 | 12 | 2013-12-19T05:00:00Z | 2014-02-19T04:59:59Z | 2022-07-25T17:27:30Z | 2013-30137 | 0 | 0 | 09000064814cb538 |
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;