documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FDA-2014-N-1027" 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-2014-N-1027-0010 | FDA | None FDA-2014-N-1027 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals | Notice | Notice of Approval | 2021-02-18T05:00:00Z | 2021 | 2 | 2021-02-18T05:00:00Z | 2021-02-21T01:08:40Z | 2021-03254 | 0 | 0 | 0900006484a3c81d | |
| FDA-2014-N-1027-0009 | FDA | None FDA-2014-N-1027 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Infant Formula Recall Regulations | Notice | 30 Day Proposed Information Collection | 2020-08-12T04:00:00Z | 2020 | 8 | 2020-08-12T04:00:00Z | 2020-09-12T03:59:59Z | 2020-08-12T13:01:32Z | 2020-17542 | 0 | 0 | 09000064847f49e4 |
| FDA-2014-N-1027-0008 | FDA | None FDA-2014-N-1027 | Agency Information Collection Activities; Proposed Collection; Comment Request; Infant Formula Recall Regulations | Notice | 60 Day Proposed Information Collection | 2020-04-27T04:00:00Z | 2020 | 4 | 2020-04-27T04:00:00Z | 2020-06-27T03:59:59Z | 2020-04-27T13:10:36Z | 2020-08894 | 0 | 0 | 09000064844f5593 |
| FDA-2014-N-1027-0007 | FDA | None FDA-2014-N-1027 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals | Notice | Notice of Approval | 2018-03-22T04:00:00Z | 2018 | 3 | 2018-03-22T04:00:00Z | 2018-03-22T14:44:13Z | 2018-05797 | 0 | 0 | 090000648303ec1d | |
| FDA-2014-N-1027-0006 | FDA | None FDA-2014-N-1027 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Infant Formula Recall Regulations | Notice | 30 Day Proposed Information Collection | 2017-11-09T05:00:00Z | 2017 | 11 | 2017-11-09T05:00:00Z | 2017-12-12T04:59:59Z | 2017-11-13T22:08:26Z | 2017-24410 | 0 | 0 | 0900006482c60655 |
| FDA-2014-N-1027-0004 | FDA | None FDA-2014-N-1027 | Agency Information Collection Activities; Proposed Collection; Comment Request; Infant Formula Recall Regulations | Notice | 60 Day Proposed Information Collection | 2017-06-15T04:00:00Z | 2017 | 6 | 2017-06-15T04:00:00Z | 2017-08-15T03:59:59Z | 2017-06-20T13:02:45Z | 2017-12437 | 0 | 0 | 09000064826dbb94 |
| FDA-2014-N-1027-0003 | FDA | None FDA-2014-N-1027 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approval Infant Formula Recall Regulations | Notice | Notice of Approval | 2014-12-30T05:00:00Z | 2014 | 12 | 2014-12-30T05:00:00Z | 2014-12-30T17:09:20Z | 2014-30461 | 0 | 0 | 0900006481999d89 | |
| FDA-2014-N-1027-0002 | FDA | None FDA-2014-N-1027 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Infant Formula Recall Regulations | Notice | 30 Day Proposed Information Collection | 2014-10-22T04:00:00Z | 2014 | 10 | 2014-10-22T04:00:00Z | 2014-11-22T04:59:59Z | 2017-04-03T14:47:03Z | 2014-25105 | 0 | 0 | 09000064818e8278 |
| FDA-2014-N-1027-0001 | FDA | None FDA-2014-N-1027 | Agency Information Collection Activities; Proposed Collection; Comment Request; Infant Formula Recall Regulations | Notice | 60 Day Proposed Information Collection | 2014-08-07T04:00:00Z | 2014 | 8 | 2014-08-07T04:00:00Z | 2014-10-07T03:59:59Z | 2017-04-03T14:37:15Z | 2014-18665 | 0 | 0 | 090000648180bb14 |
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;