documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FDA-2019-D-1266" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, open_for_comment, posted_date (date), comment_start_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-2019-D-1266-0005 | FDA | None FDA-2019-D-1266 | Reference 1 - Hop Growers of America Letter to FDA May 9 2018 RE: Produce Safety Rule: Enforcement Policy for Entities Growing, Harvesting, Packing, or Holding Hops, Wine Grapes, Pulse Crops, and Almonds Guidance for Industry | Supporting & Related Material | Background Material | 2019-04-03T04:00:00Z | 2019 | 4 | 2019-04-03T09:49:21Z | 0 | 0 | 0900006483b5c45d | |||
| FDA-2019-D-1266-0009 | FDA | None FDA-2019-D-1266 | Reference 9 - Almond Board of California - Almond Industry Food Safety Overview May 17 2017 RE: Produce Safety Rule: Enforcement Policy for Entities Growing, Harvesting, Packing, or Holding Hops, Wine Grapes, Pulse Crops, and Almonds Guidance for Industry | Supporting & Related Material | Background Material | 2019-04-03T04:00:00Z | 2019 | 4 | 2019-04-03T09:49:54Z | 0 | 0 | 0900006483b5d441 | |||
| FDA-2019-D-1266-0004 | FDA | None FDA-2019-D-1266 | REFERENCE LIST RE: Produce Safety Rule: Enforcement Policy for Entities Growing, Harvesting, Packing, or Holding Hops, Wine Grapes, Pulse Crops, and Almonds Guidance for Industry | Supporting & Related Material | Background Material | 2019-04-03T04:00:00Z | 2019 | 4 | 2019-04-03T09:49:14Z | 0 | 0 | 0900006483b5c45c | |||
| FDA-2019-D-1266-0007 | FDA | None FDA-2019-D-1266 | Reference 3 - Napa Valley Vintners Letter to Scott Gottlieb July 7 2017 RE Produce Safety Rule: Enforcement Policy for Entities Growing, Harvesting, Packing, or Holding Hops, Wine Grapes, Pulse Crops, and Almonds Guidance for Industry | Supporting & Related Material | Background Material | 2019-04-03T04:00:00Z | 2019 | 4 | 2019-04-03T09:49:38Z | 0 | 0 | 0900006483b5d43f | |||
| FDA-2019-D-1266-0008 | FDA | None FDA-2019-D-1266 | Reference 6 - Treatment of Pulses Under FSMA 17 April 2018 RE: Produce Safety Rule: Enforcement Policy for Entities Growing, Harvesting, Packing, or Holding Hops, Wine Grapes, Pulse Crops, and Almonds Guidance for Industry | Supporting & Related Material | Background Material | 2019-04-03T04:00:00Z | 2019 | 4 | 2019-04-03T09:49:45Z | 0 | 0 | 0900006483b5d440 | |||
| FDA-2019-D-1266-0006 | FDA | None FDA-2019-D-1266 | Reference 2 - CA Wine Growers Letter to Susan Mayne June 15 2017 RE: Produce Safety Rule: Enforcement Policy for Entities Growing, Harvesting, Packing, or Holding Hops, Wine Grapes, Pulse Crops, and Almonds Guidance for Industry | Supporting & Related Material | Background Material | 2019-04-03T04:00:00Z | 2019 | 4 | 2019-04-03T09:49:29Z | 0 | 0 | 0900006483b5c45e | |||
| FDA-2019-D-1266-0001 | FDA | None FDA-2019-D-1266 | Produce Safety Rule: Enforcement Policy for Entities Growing, Harvesting, Packing, or Holding Hops, Wine Grapes, Pulse Crops, and Almonds; Guidance for Industry; Availability | Rule | Policy Statement | 2019-03-28T04:00:00Z | 2019 | 3 | 2019-03-28T04:00:00Z | 2019-04-02T16:50:15Z | 2019-05953 | 0 | 0 | 0900006483b37f47 | |
| FDA-2019-D-1266-0003 | FDA | None FDA-2019-D-1266 | Produce Safety Rule: Enforcement Policy for Entities Growing, Harvesting, Packing, or Holding Hops, Wine Grapes, Pulse Crops, and Almonds; Guidance for Industry | Other | Guidance | 2019-03-27T04:00:00Z | 2019 | 3 | 2019-03-27T04:00:00Z | 2024-11-12T22:58:23Z | 1 | 0 | 0900006483b5c45a |
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;