documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FDA-2010-D-0313" 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)
document_type 3
agency_id 1
- FDA 8
| 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-2010-D-0313-0018 | FDA | None FDA-2010-D-0313 | Guidance for Industry; Prevention of Salmonella Enteritidis in Shell Eggs During Production, Storage, and Transportation | Other | Guidance | 2011-12-28T05:00:00Z | 2011 | 12 | 2011-12-28T05:00:00Z | 2024-11-07T01:40:00Z | 1 | 0 | 0900006480f89bae | ||
| FDA-2010-D-0313-0017 | FDA | None FDA-2010-D-0313 | Guidance for Industry: Prevention of Salmonella Enteritidis in Shell Eggs During Production, Storage, and Transportation; Availability | Notice | Notice of Availability | 2011-12-28T05:00:00Z | 2011 | 12 | 2011-12-28T05:00:00Z | 2024-11-07T01:39:58Z | 2011-33292 | 1 | 0 | 0900006480f8a23c | |
| FDA-2010-D-0313-0004 | FDA | None FDA-2010-D-0313 | Reference 8 - PEQAP OPERATIONS ANNEX 2009 | Supporting & Related Material | N-Notice (Supporting and Related Material) | 2010-08-12T04:00:00Z | 2010 | 8 | 2010-08-12T12:52:27Z | 0 | 0 | 0900006480b2dd71 | |||
| FDA-2010-D-0313-0001 | FDA | None FDA-2010-D-0313 | Draft Guidance for Industry; Availability: Prevention of Salmonella Enteritidis in Shell Eggs During Production, Storage, and Transportation | Notice | NAD-Notice of Availability of Data | 2010-08-12T04:00:00Z | 2010 | 8 | 2010-08-12T04:00:00Z | 2010-10-13T03:59:59Z | 2010-08-12T12:44:18Z | 2010-19905 | 0 | 0 | 0900006480b2ef1a |
| FDA-2010-D-0313-0002 | FDA | None FDA-2010-D-0313 | Guidance for Industry Prevention of Salmonella Enteritidis in Shell Eggs During Production, Storage, and Transportation | Other | GDL-Guidance (Supporting and Related Materials) | 2010-08-12T04:00:00Z | 2010 | 8 | 2010-08-12T04:00:00Z | 2010-10-13T03:59:59Z | 2010-08-12T18:45:05Z | 0 | 0 | 0900006480b2e9f7 | |
| FDA-2010-D-0313-0005 | FDA | None FDA-2010-D-0313 | Reference 9 - FLIES of PUBLIC HEALTH IMPORTANCE And THEIR CONTROL | Supporting & Related Material | N-Notice (Supporting and Related Material) | 2010-08-12T04:00:00Z | 2010 | 8 | 2010-08-12T12:52:43Z | 0 | 0 | 0900006480b2df1b | |||
| FDA-2010-D-0313-0003 | FDA | None FDA-2010-D-0313 | Reference 4 - Preharvest HACCP in the Table Egg Industry | Supporting & Related Material | N-Notice (Supporting and Related Material) | 2010-08-12T04:00:00Z | 2010 | 8 | 2010-08-12T12:52:14Z | 0 | 0 | 0900006480b2dd69 | |||
| FDA-2010-D-0313-0006 | FDA | None FDA-2010-D-0313 | Reference 12 - United Egg Producersl United Egg Association Recommended Security Measures Farms, Production, and Processing Facilities | Supporting & Related Material | N-Notice (Supporting and Related Material) | 2010-08-12T04:00:00Z | 2010 | 8 | 2010-08-12T12:52:57Z | 0 | 0 | 0900006480b2df21 |
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;