documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where agency_id = "FSIS", document_type = "Rule" and posted_year = 2007 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, last_modified, open_for_comment, 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-2007-0024-0001 | FSIS | Eligibility of Chile to Export Poultry and Poultry Products to the United States FSIS-2007-0024 | Eligibility of Chile to Export Poultry and Poultry Products to the United States | Rule | 2007-11-01T04:00:00Z | 2007 | 11 | 2007-11-01T04:00:00Z | 2007-12-04T04:59:59Z | 2011-06-11T17:26:31Z | E7-21511 | 0 | 0 | 090000648035e3a7 | |
| FSIS-2007-0023-0001 | FSIS | Designation of the State of New Mexico Under the Federal Meat Inspection Act and the Poultry Products Inspection Act FSIS-2007-0023 | Designation of the State of New Mexico Under the Federal Meat Inspection Act and Poultry Products Inspection Act | Rule | 2007-07-13T04:00:00Z | 2007 | 7 | 2007-07-13T04:00:00Z | 2007-08-14T03:59:59Z | 2024-11-07T01:40:20Z | E7-13650 | 1 | 0 | 0900006480267e97 | |
| FSIS-2005-0024-0001 | FSIS | Interim Final Rule on the Prohibition on the Use of Specified Risk Materials for Human Food and Requirements for the Disposal of non-ambulatory Disabled Cattle FSIS-2005-0024 | Prohibition of the Use of Specified Risk Materials for Human Food and Requirements for the Disposition of Non-Ambulatory Disabled Cattle; Prohibition of the Use of Certain Stunning Devices Used To Immobilize Cattle During Slaughter | Rule | 2007-07-13T04:00:00Z | 2007 | 7 | 2007-07-13T04:00:00Z | 2007-09-12T03:59:59Z | 2024-11-07T01:40:20Z | 07-03350 | 1 | 0 | 0900006480267ec6 | |
| FSIS-2006-0045-0001 | FSIS | Unifrom Compliance Date for Food Labeling Regulations (issued between Jan. 1, 2007 and Dec. 31, 2008) FSIS-2006-0045 | Uniform Compliance Date for Food Labeling Regulations | Rule | 2007-03-05T05:00:00Z | 2007 | 3 | 2007-03-05T05:00:00Z | 2011-06-11T17:26:22Z | E7-03725 | 0 | 0 | 090000648020d9e2 |
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;