documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FDA-2011-N-0920" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_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-2011-N-0920-2058 | FDA | None FDA-2011-N-0920 | Reference 4 Society of Plastics Letter May 3 2016 re The Food and Drug Administration Food Safety Modernization Act; Extension and Clarification of Compliance Dates for Certain Provisions of Four Implementing Rules | Supporting & Related Material | Background Material | 2017-04-12T04:00:00Z | 2017 | 4 | 2017-04-12T20:19:18Z | 0 | 0 | 09000064825509cf | |||
| FDA-2011-N-0920-2059 | FDA | None FDA-2011-N-0920 | Reference 5 Part 117 FSMA Final Rulemaking for CGMP and HAPC for Human Food RIA re The Food and Drug Administration Food Safety Modernization Act; Extension and Clarification of Compliance Dates for Certain Provisions of Four Implementing Rules | Supporting & Related Material | Background Material | 2017-04-12T04:00:00Z | 2017 | 4 | 2017-04-12T20:21:21Z | 0 | 0 | 09000064825509d0 | |||
| FDA-2011-N-0920-2057 | FDA | None FDA-2011-N-0920 | Reference 3 Califonia Cotton Ginners Association Letter May 20 2016 re The Food and Drug Administration Food Safety Modernization Act; Extension and Clarification of Compliance Dates for Certain Provisions of Four Implementing Rules | Supporting & Related Material | Background Material | 2017-04-12T04:00:00Z | 2017 | 4 | 2017-04-12T20:17:52Z | 0 | 0 | 09000064825509ce | |||
| FDA-2011-N-0920-2060 | FDA | None FDA-2011-N-0920 | Reference 6 Standards for the Growing Harvesting and Holding of Produce RIA re The Food and Drug Administration Food Safety Modernization Act; Extension and Clarification of Compliance Dates for Certain Provisions of Four Implementing Rules | Supporting & Related Material | Background Material | 2017-04-12T04:00:00Z | 2017 | 4 | 2017-04-12T20:20:53Z | 0 | 0 | 09000064825509d1 | |||
| FDA-2011-N-0920-2054 | FDA | None FDA-2011-N-0920 | List of references re The Food and Drug Administration Food Safety Modernization Act; Extension and Clarification of Compliance Dates for Certain Provisions of Four Implementing Rules | Supporting & Related Material | Background Material | 2017-04-12T04:00:00Z | 2017 | 4 | 2017-04-12T20:16:51Z | 0 | 0 | 0900006482550739 | |||
| FDA-2011-N-0920-2055 | FDA | None FDA-2011-N-0920 | Reference 1 GMA Industry Impacts from Disclosure and Written Assurance Requirements re The Food and Drug Administration Food Safety Modernization Act; Extension and Clarification of Compliance Dates for Certain Provisions of Four Implementing Rules | Supporting & Related Material | Background Material | 2017-04-12T04:00:00Z | 2017 | 4 | 2017-04-12T20:16:44Z | 0 | 0 | 090000648255073a | |||
| FDA-2011-N-0920-2056 | FDA | None FDA-2011-N-0920 | Reference 2 United Fresh Produce Association Letter April 19 2016 re The Food and Drug Administration Food Safety Modernization Act; Extension and Clarification of Compliance Dates for Certain Provisions of Four Implementing Rules | Supporting & Related Material | Background Material | 2017-04-12T04:00:00Z | 2017 | 4 | 2017-04-12T20:17:15Z | 0 | 0 | 090000648255073b |
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;