documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FDA-2016-D-2343" and posted_year = 2024 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, open_for_comment, 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-2016-D-2343-3578 | FDA | None FDA-2016-D-2343 | Request for Extension from National Coffee Association of USA, Inc. | Other | Request for Extension | 2024-05-31T04:00:00Z | 2024 | 5 | 2024-05-31T04:00:00Z | 2024-05-31T20:25:00Z | 0 | 0 | 090000648656a8b1 | ||
| FDA-2016-D-2343-3131 | FDA | None FDA-2016-D-2343 | Hazard Analysis and Risk-Based Preventive Controls for Human Food; Draft Guidance for Industry; Appendix 1; Extension of Comment Period | Proposed Rule | Extension of Comment Period | 2024-05-31T04:00:00Z | 2024 | 5 | 2024-05-31T04:00:00Z | 2024-05-31T13:19:17Z | 2024-11987 | 0 | 0 | 090000648658e1c0 | |
| FDA-2016-D-2343-0097 | FDA | None FDA-2016-D-2343 | Hazard Analysis and Risk-Based Preventive Controls for Human Food; Draft Guidance for Industry; Extension of Comment Period | Notice | Extension of Comment Period | 2024-03-22T04:00:00Z | 2024 | 3 | 2024-03-22T04:00:00Z | 2024-03-22T14:06:28Z | 2024-06118 | 0 | 0 | 090000648648d77d | |
| FDA-2016-D-2343-0095 | FDA | None FDA-2016-D-2343 | Request for Extension from Consumer Brands Association | Other | Request for Extension | 2024-03-12T04:00:00Z | 2024 | 3 | 2024-03-12T04:00:00Z | 2024-03-12T16:40:51Z | 0 | 0 | 0900006486473425 | ||
| FDA-2016-D-2343-0092 | FDA | None FDA-2016-D-2343 | Hazard Analysis and Risk-Based Preventive Controls for Human Food: Draft Guidance for Industry; Appendix 1: Known or Reasonably Foreseeable Hazards (“Potential Hazards”) | Other | Guidance | 2024-02-02T05:00:00Z | 2024 | 2 | 2024-02-02T05:00:00Z | 2024-08-03T03:59:59Z | 2025-07-15T09:01:15Z | 1 | 0 | 09000064863d772b | |
| FDA-2016-D-2343-0091 | FDA | None FDA-2016-D-2343 | Hazard Analysis and Risk-Based Preventive Controls for Human Food: Draft Guidance for Industry; Introduction and General Information Applicable to This Guidance | Other | Guidance | 2024-02-02T05:00:00Z | 2024 | 2 | 2024-02-02T05:00:00Z | 2024-06-04T03:59:59Z | 2025-04-17T16:24:55Z | 1 | 0 | 09000064863d76de | |
| FDA-2016-D-2343-0090 | FDA | None FDA-2016-D-2343 | Hazard Analysis and Risk-Based Preventive Controls for Human Food; Draft Guidance for Industry; Availability | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2024-02-02T05:00:00Z | 2024 | 2 | 2024-05-31T13:17:55Z | 2024-01911 | 0 | 0 | 09000064863d7b13 |
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;