documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FDA-2011-N-0920" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, open_for_comment, 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-2011-N-0920-2052 | FDA | None FDA-2011-N-0920 | What You Need To Know About the Food and Drug Administration Regulation: Current Good Manufacturing Practice, Hazard Analysis, and Risk-Based Preventive Controls for Human Food; Small Entity Compliance Guide; Availability | Notice | Notice of Availability | 2016-11-01T04:00:00Z | 2016 | 11 | 2016-11-01T04:00:00Z | 2016-11-01T16:19:53Z | 2016-26315 | 0 | 0 | 09000064823626b8 | |
| FDA-2011-N-0920-2053 | FDA | None FDA-2011-N-0920 | What You Need to Know About the FDA Regulation: Current Good Manufacturing Practice, Hazard Analysis, and Risk-Based Preventive Controls for Human Food (21 CFR Part 117): Guidance for Industry | Other | Guidance | 2016-10-31T04:00:00Z | 2016 | 10 | 2016-10-31T04:00:00Z | 2024-11-07T23:50:21Z | 1 | 0 | 090000648235bd30 | ||
| FDA-2011-N-0920-2051 | FDA | None FDA-2011-N-0920 | Current Good Manufacturing Practice, Hazard Analysis, and Risk-Based Preventive Controls for Human Food and Current Good Manufacturing Practice, Hazard Analysis, and Risk-Based Preventive Controls for Food for Animals; Definition of Qualified Auditor; Announcement of Effective Date | Rule | Final Rule | 2016-09-19T04:00:00Z | 2016 | 9 | 2016-09-19T04:00:00Z | 2016-09-19T13:18:08Z | 2016-22494 | 0 | 0 | 09000064822261bf | |
| FDA-2011-N-0920-2050 | FDA | None FDA-2011-N-0920 | The Food and Drug Administration Food Safety Modernization Act; Extension and Clarification of Compliance Dates for Certain Provisions of Four Implementing Rules | Rule | Final Rule | 2016-08-24T04:00:00Z | 2016 | 8 | 2016-08-24T04:00:00Z | 2016-08-24T15:34:58Z | 2016-20176 | 0 | 0 | 090000648219850e | |
| FDA-2011-N-0920-2049 | FDA | None FDA-2011-N-0920 | Current Good Manufacturing Practice, Hazard Analysis, and Risk-Based Preventive Controls for Human Food; Correction | Rule | Final Rule | 2016-01-25T05:00:00Z | 2016 | 1 | 2016-01-25T05:00:00Z | 2016-01-25T14:30:04Z | 2016-01092 | 0 | 0 | 0900006481e2cc21 | |
| FDA-2011-N-0920-2048 | FDA | None FDA-2011-N-0920 | Current Good Manufacturing Practice, Hazard Analysis, and Risk-Based Preventive Controls for Human Food; Technical Amendment | Rule | Final Rule | 2016-01-22T05:00:00Z | 2016 | 1 | 2016-01-22T05:00:00Z | 2016-01-22T14:20:13Z | 2016-01091 | 0 | 0 | 0900006481e286bb |
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;