documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FDA-2009-N-0501" 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-2009-N-0501-0023 | FDA | None FDA-2009-N-0501 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals | Notice | Notice of Approval | 2020-12-02T05:00:00Z | 2020 | 12 | 2023-04-04T04:00:00Z | 2023-04-04T15:33:25Z | 2020-26571 | 0 | 0 | 09000064849819f8 | |
| FDA-2009-N-0501-0012 | FDA | None FDA-2009-N-0501 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Third Party Disclosure and Recordkeeping Requirements for Reportable Food | Notice | 30 Day Proposed Information Collection | 2020-08-11T04:00:00Z | 2020 | 8 | 2020-08-11T04:00:00Z | 2020-09-11T03:59:59Z | 2020-09-11T01:01:43Z | 2020-17506 | 0 | 0 | 09000064847f0822 |
| FDA-2009-N-0501-0011 | FDA | None FDA-2009-N-0501 | Agency Information Collection Activities; Proposed Collection; Comment Request; Third Party Disclosure and Recordkeeping Requirements for Reportable Food | Notice | 60 Day Proposed Information Collection | 2020-05-14T04:00:00Z | 2020 | 5 | 2020-05-14T04:00:00Z | 2020-07-14T03:59:59Z | 2020-05-14T12:51:28Z | 2020-10351 | 0 | 0 | 09000064845f4f11 |
| FDA-2009-N-0501-0010 | FDA | None FDA-2009-N-0501 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals | Notice | Notice of Approval | 2018-02-26T05:00:00Z | 2018 | 2 | 2018-02-26T05:00:00Z | 2018-02-26T16:22:17Z | 2018-03849 | 0 | 0 | 0900006482f62fdb | |
| FDA-2009-N-0501-0009 | FDA | None FDA-2009-N-0501 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Third Party Disclosure and Recordkeeping Requirements for Reportable Food | Notice | 30 Day Proposed Information Collection | 2017-09-22T04:00:00Z | 2017 | 9 | 2017-09-22T04:00:00Z | 2017-10-24T03:59:59Z | 2017-09-22T13:38:49Z | 2017-20283 | 0 | 0 | 0900006482b6e6bf |
| FDA-2009-N-0501-0008 | FDA | None FDA-2009-N-0501 | Agency Information Collection Activities; Proposed Collection; Comment Request; Third Party Disclosure and Recordkeeping Requirements for Reportable Food | Notice | 60 Day Proposed Information Collection | 2017-06-07T04:00:00Z | 2017 | 6 | 2017-06-07T04:00:00Z | 2017-08-08T03:59:59Z | 2017-06-07T15:04:53Z | 2017-11821 | 0 | 0 | 090000648269fd6f |
| FDA-2009-N-0501-0007 | FDA | None FDA-2009-N-0501 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Third Party Disclosure and Recordkeeping Requirements for Reportable Food | Notice | 30 Day Proposed Information Collection | 2014-08-25T04:00:00Z | 2014 | 8 | 2014-08-25T04:00:00Z | 2014-09-25T03:59:59Z | 2017-02-09T14:25:40Z | 2014-20021 | 0 | 0 | 0900006481842327 |
| FDA-2009-N-0501-0006 | FDA | None FDA-2009-N-0501 | Agency Information Collection Activities; Proposed Collection; Comment Request; Third Party Disclosure and Recordkeeping Requirements for Reportable Food | Notice | 60 Day Proposed Information Collection | 2014-06-03T04:00:00Z | 2014 | 6 | 2014-06-03T04:00:00Z | 2014-08-05T03:59:59Z | 2017-02-09T14:23:37Z | 2014-12823 | 0 | 0 | 0900006481725dea |
| FDA-2009-N-0501-0005 | FDA | None FDA-2009-N-0501 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Third Party Disclosure and Recordkeeping Requirements for Reportable Food | Notice | 30 Day Proposed Information Collection | 2010-02-26T05:00:00Z | 2010 | 2 | 2017-02-09T14:18:30Z | 2010-04003 | 0 | 0 | 0900006480aaf366 | ||
| FDA-2009-N-0501-0001 | FDA | None FDA-2009-N-0501 | Agency Information Collection Activities; Proposed Collection; Comment Request; Third Party Disclosure and Recordkeeping Requirements for Reportable Food | Notice | 60 Day Proposed Information Collection | 2009-10-20T04:00:00Z | 2009 | 10 | 2009-10-20T04:00:00Z | 2009-12-22T04:59:59Z | 2017-02-09T14:17:13Z | E9-25100 | 0 | 0 | 0900006480a4670a |
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;