documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FDA-2018-N-0180" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-2018-N-0180-0017 | FDA | None FDA-2018-N-0180 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals | Notice | Notice of Approval | 2025-07-03T04:00:00Z | 2025 | 7 | 2025-07-03T04:00:00Z | 2025-07-03T17:00:19Z | 2025-12408 | 0 | 0 | 09000064b8e4e3c0 | |
| FDA-2018-N-0180-0014 | FDA | None FDA-2018-N-0180 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Generic Clearance for the Collection of Quantitative Data on Tobacco Products and Communications | Notice | 30 Day Proposed Information Collection | 2024-11-25T05:00:00Z | 2024 | 11 | 2024-11-25T05:00:00Z | 2024-12-27T04:59:59Z | 2024-12-11T02:00:58Z | 2024-27483 | 0 | 0 | 0900006486833a0c |
| FDA-2018-N-0180-0013 | FDA | None FDA-2018-N-0180 | Agency Information Collection Activities; Proposed Collection; Comment Request; Generic Clearance for the Collection of Quantitative Data on Tobacco Products and Communications | Notice | 60 Day Proposed Information Collection | 2024-06-21T04:00:00Z | 2024 | 6 | 2024-06-21T04:00:00Z | 2024-08-21T03:59:59Z | 2024-06-21T13:58:53Z | 2024-13644 | 0 | 0 | 09000064865c2ab6 |
| FDA-2018-N-0180-0012 | FDA | None FDA-2018-N-0180 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals | Notice | Notice of Approval | 2022-01-28T05:00:00Z | 2022 | 1 | 2022-01-28T05:00:00Z | 2022-01-28T17:52:13Z | 2022-01692 | 0 | 0 | 0900006484f3ec57 | |
| FDA-2018-N-0180-0008 | FDA | None FDA-2018-N-0180 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Generic Clearance for the Collection of Quantitative Data on Tobacco Products and Communications | Notice | 30 Day Proposed Information Collection | 2021-09-17T04:00:00Z | 2021 | 9 | 2021-09-17T04:00:00Z | 2021-10-19T03:59:59Z | 2021-10-19T01:00:54Z | 2021-20057 | 0 | 0 | 0900006484d8c216 |
| FDA-2018-N-0180-0006 | FDA | None FDA-2018-N-0180 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Generic Clearance for the Collection of Quantitative Data on Tobacco Products and Communications | Notice | 60 Day Proposed Information Collection | 2021-03-05T05:00:00Z | 2021 | 3 | 2021-03-05T05:00:00Z | 2021-05-05T03:59:59Z | 2021-05-05T01:00:39Z | 2021-04606 | 0 | 0 | 0900006484a605e1 |
| FDA-2018-N-0180-0005 | FDA | None FDA-2018-N-0180 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals | Notice | Notice of Approval | 2019-02-11T05:00:00Z | 2019 | 2 | 2019-02-11T05:00:00Z | 2019-02-11T13:05:32Z | 2019-01812 | 0 | 0 | 0900006483a5ada5 | |
| FDA-2018-N-0180-0003 | FDA | None FDA-2018-N-0180 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Generic Clearance for the Collection of Quantitative Data on Tobacco Products and Communications | Notice | 30 Day Proposed Information Collection | 2018-08-09T04:00:00Z | 2018 | 8 | 2018-08-09T04:00:00Z | 2018-09-11T03:59:59Z | 2018-09-11T01:05:06Z | 2018-17044 | 0 | 0 | 09000064835f8b3c |
| FDA-2018-N-0180-0001 | FDA | None FDA-2018-N-0180 | Agency Information Collection Activities; Proposed Collection; Comment Request; Generic Clearance for the Collection of Quantitative Data on Tobacco Products and Communications | Notice | 60 Day Proposed Information Collection | 2018-02-13T05:00:00Z | 2018 | 2 | 2018-02-13T05:00:00Z | 2018-04-17T03:59:59Z | 2018-04-17T01:00:42Z | 2018-02852 | 0 | 0 | 0900006482f27c1e |
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;