documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "FSIS", document_type = "Rule" and posted_year = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FSIS-2010-0012-0904 | FSIS | Product Name Requirements for Raw Meat and Poultry Products Containing Added Solutions (Enhanced Meat and Poultry Products) FSIS-2010-0012 | Descriptive Designation for Raw Meat and Poultry Products Containing Added Solutions | Rule | 2014-12-31T05:00:00Z | 2014 | 12 | 2014-12-31T05:00:00Z | 2015-01-09T03:01:37Z | 2014-30472 | 0 | 0 | 090000648199bf5e | ||
| FSIS-2014-0042-0001 | FSIS | Uniform Compliance Date for Food Labeling Regulations FSIS-2014-0042 | Uniform Compliance Date for Food Labeling Regulations | Rule | 2014-12-01T05:00:00Z | 2014 | 12 | 2014-12-01T05:00:00Z | 2015-01-01T04:59:59Z | 2014-12-02T19:44:42Z | 2014-28269 | 0 | 0 | 0900006481950afb | |
| FSIS-2009-0022-0018 | FSIS | Electronic Import Inspection Applications; Electronic Foreign Imported Product and Establishment Certificates; Requirements for Official Import Inspection Marks and Devices; and Sanitation Standard Operating Procedures(SOPs) Requirements for Official Import Inspection Establishments FSIS-2009-0022 | Electronic Import Inspection Application and Certification of Imported Products and Foreign Establishments: Public Health Information System and Import Inspection Regulations | Rule | 2014-09-19T04:00:00Z | 2014 | 9 | 2014-09-19T04:00:00Z | 2014-09-22T15:26:08Z | 2014-22206 | 0 | 0 | 090000648187ed44 | ||
| FSIS-2014-0026-0001 | FSIS | Change in Accredited Laboratory Fees FSIS-2014-0026 | Changes in Accredited Laboratory Fees | Rule | 2014-09-19T04:00:00Z | 2014 | 9 | 2014-09-19T04:00:00Z | 2014-09-22T15:24:05Z | 2014-22208 | 0 | 0 | 090000648187e816 | ||
| FSIS-2011-0012-2263 | FSIS | Poultry Slaughter Inspection FSIS-2011-0012 | Modernization of Poultry Slaughter Inspection | Rule | 2014-08-21T04:00:00Z | 2014 | 8 | 2014-08-21T04:00:00Z | 2014-08-21T20:26:40Z | 2014-18526 | 0 | 0 | 0900006481837eab | ||
| FSIS-2012-0038-0012 | FSIS | Salmonella Verification Sampling Program: Analysis of Raw Ground Beef Product Samples for E. coli O157:H7 and Salmonella FSIS-2012-0038 | Guidance for Industry and Staff: Salmonella Verification Sampling Program; Analysis of Raw Beef for Shiga Toxin-Producing Escherichia coli and Salmonella | Rule | 2014-06-05T04:00:00Z | 2014 | 6 | 2014-06-05T04:00:00Z | 2014-07-01T15:53:20Z | 2014-13064 | 0 | 0 | 090000648172aa33 | ||
| FSIS-2013-0003-0002 | FSIS | Availability of FSIS Draft Compliance Guide for a Systematic Approach to the Humane Handling of Livestock FSIS-2013-0003 | Eligibility of the Republic of Korea to Export Poultry Products to the United States | Rule | 2014-03-26T04:00:00Z | 2014 | 3 | 2014-03-26T04:00:00Z | 2014-07-01T15:48:47Z | 2014-06652 | 0 | 0 | 090000648168194b |
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;