documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FDA-2018-N-3037" 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-2018-N-3037-0007 | FDA | None FDA-2018-N-3037 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals | Notice | Notice of Approval | 2022-04-07T04:00:00Z | 2022 | 4 | 2022-04-07T04:00:00Z | 2022-04-07T15:55:54Z | 2022-07394 | 0 | 0 | 0900006485000240 | |
| FDA-2018-N-3037-0006 | FDA | None FDA-2018-N-3037 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Generic Clearance for Quantitative Testing for the Development of Food and Drug Administration Communications | Notice | 30 Day Proposed Information Collection | 2022-01-28T05:00:00Z | 2022 | 1 | 2022-01-28T05:00:00Z | 2022-03-01T04:59:59Z | 2022-01-28T14:49:11Z | 2022-01730 | 0 | 0 | 0900006484f4168d |
| FDA-2018-N-3037-0004 | FDA | None FDA-2018-N-3037 | Agency Information Collection Activities; Proposed Collection; Comment Request; Generic Clearance for Quantitative Testing for the Development of Food and Drug Administration Communications | Notice | 60 Day Proposed Information Collection | 2021-09-09T04:00:00Z | 2021 | 9 | 2021-09-09T04:00:00Z | 2021-11-09T04:59:59Z | 2021-09-11T01:00:22Z | 2021-19480 | 0 | 0 | 0900006484d67902 |
| FDA-2018-N-3037-0003 | FDA | None FDA-2018-N-3037 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals | Notice | Notice of Approval | 2019-04-29T04:00:00Z | 2019 | 4 | 2019-04-29T04:00:00Z | 2019-04-29T15:47:06Z | 2019-08607 | 0 | 0 | 0900006483c131a7 | |
| FDA-2018-N-3037-0002 | FDA | None FDA-2018-N-3037 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Generic Clearance for Quantitative Testing for the Development of Food and Drug Administration Communications | Notice | 30 Day Proposed Information Collection | 2018-12-28T05:00:00Z | 2018 | 12 | 2018-12-28T05:00:00Z | 2019-01-29T04:59:59Z | 2019-01-10T02:46:59Z | 2018-28252 | 0 | 0 | 09000064839cbd39 |
| FDA-2018-N-3037-0001 | FDA | None FDA-2018-N-3037 | Agency Information Collection Activities; Proposed Collection; Comment Request; Generic Clearance for Quantitative Testing for the Development of FDA Communications | Notice | 60 Day Proposed Information Collection | 2018-09-04T04:00:00Z | 2018 | 9 | 2018-09-04T04:00:00Z | 2018-11-06T04:59:59Z | 2018-10-23T15:26:10Z | 2018-19088 | 0 | 0 | 0900006483694ae5 |
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;