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 = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, posted_date (date), comment_start_date (date), comment_end_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-2015-0048-0002 | FSIS | Federal Register Notices 2015 FSIS-2015-0048 | Labeling, Marking Devices, and Containers; CFR Correction, | Rule | 2015-12-22T05:00:00Z | 2015 | 12 | 2015-12-22T05:00:00Z | 2018-10-31T16:26:35Z | 2015-32120 | 0 | 0 | 0900006481dc1424 | ||
| FSIS-2009-0011-0051 | FSIS | Access to Records of Businesses Producing Ground Beef FSIS-2009-0011 | Records to be Kept by Official Establishments and Retail Stores that Grind Raw Beef Products, | Rule | 2015-12-21T05:00:00Z | 2015 | 12 | 2015-12-21T05:00:00Z | 2015-12-22T17:06:28Z | 2015-31795 | 0 | 0 | 0900006481dbd81c | ||
| FSIS-2008-0031-0337 | FSIS | Mandatory Inspection of Farm-raised Catfish and Catfish Products FSIS-2008-0031 | Mandatory Inspection of Fish of the Order Siluriformes and Products Derived From Such Fish | Rule | 2015-12-02T05:00:00Z | 2015 | 12 | 2015-12-02T05:00:00Z | 2015-12-04T15:34:22Z | 2015-29793 | 0 | 0 | 0900006481d7fadd | ||
| FSIS-2014-0040-0009 | FSIS | Eligibility of the Republic of Lithuania (Lithuania) to Export Meat and Meat Products to the United States FSIS-2014-0040 | Eligibility of Lithuania to Export Meat and Meat Products to the United States | Rule | 2015-08-31T04:00:00Z | 2015 | 8 | 2015-08-31T04:00:00Z | 2015-09-01T19:35:48Z | 2015-21510 | 0 | 0 | 0900006481c45f7f | ||
| FSIS-2014-0033-0001 | FSIS | Control of Listeria monocytogenes in Ready-to-Eat Meat and Poultry Products FSIS-2014-0033 | Control of Listeria monocytogenes in Ready-to-Eat Meat and Poultry Products | Rule | 2015-06-19T04:00:00Z | 2015 | 6 | 2015-06-19T04:00:00Z | 2015-08-19T03:59:59Z | 2015-08-19T01:31:28Z | 2015-13507 | 0 | 0 | 0900006481b4823b | |
| FSIS-2008-0017-0127 | FSIS | Mandatory Labeling for Mechanically Tenderized Beef Products FSIS-2008-0017 | Descriptive Designation for Needle- or Blade-Tenderized (Mechanically Tenderized) Beef Products | Rule | 2015-05-18T04:00:00Z | 2015 | 5 | 2015-05-18T04:00:00Z | 2015-05-20T15:42:55Z | 2015-11916 | 0 | 0 | 0900006481ae584e | ||
| FSIS-2009-0019-0076 | FSIS | HACCP Systems Validation FSIS-2009-0019 | Hazard Analysis Critical Control Point Systems Validation | Rule | 2015-05-14T04:00:00Z | 2015 | 5 | 2015-05-14T04:00:00Z | 2015-05-18T18:20:38Z | 2015-11581 | 0 | 0 | 0900006481ae02a7 |
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;