documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "FSIS", document_type = "Proposed Rule" and posted_year = 2011 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, posted_month, comment_end_date, 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-2005-0016-0002 | FSIS | Product Labeling--Generic Approval and Regulation Consolidation FSIS-2005-0016 | Prior Label Approval System; Generic Label Approval | Proposed Rule | 2011-12-05T05:00:00Z | 2011 | 12 | 2011-12-05T05:00:00Z | 2012-03-04T04:59:59Z | 2012-02-08T19:59:55Z | 2011-30992 | 0 | 0 | 0900006480f7b5e6 | |
| FSIS-2010-0023-0008 | FSIS | Shiga Toxin-producing Escherichia coli in Raw Non-intact Beef Products FSIS-2010-0023 | Shiga Toxin-Producing Escherichia coli in Certain Raw Beef Products: Public Meeting; Extension of Comment Period | Proposed Rule | 2011-11-23T05:00:00Z | 2011 | 11 | 2011-11-23T05:00:00Z | 2011-12-22T04:59:59Z | 2012-03-24T19:32:45Z | 2011-30271 | 0 | 0 | 0900006480f72081 | |
| FSIS-2010-0012-0698 | FSIS | Product Name Requirements for Raw Meat and Poultry Products Containing Added Solutions (Enhanced Meat and Poultry Products) FSIS-2010-0012 | Common or Usual Name for Raw Meat and Poultry Products Containing Added Solutions | Proposed Rule | 2011-11-08T05:00:00Z | 2011 | 11 | 2011-11-08T05:00:00Z | 2012-01-10T04:59:59Z | 2011-11-08T14:40:29Z | 2011-28796 | 0 | 0 | 0900006480f67c9a | |
| FSIS-2010-0023-0001 | FSIS | Shiga Toxin-producing Escherichia coli in Raw Non-intact Beef Products FSIS-2010-0023 | Shiga Toxin-Producing Escherichia coli in Certain Raw Beef | Proposed Rule | 2011-09-20T04:00:00Z | 2011 | 9 | 2011-09-20T04:00:00Z | 2011-11-22T04:59:59Z | 2011-09-20T16:43:00Z | 2011-24043 | 0 | 0 | 0900006480f23fdb | |
| FSIS-2010-0012-0001 | FSIS | Product Name Requirements for Raw Meat and Poultry Products Containing Added Solutions (Enhanced Meat and Poultry Products) FSIS-2010-0012 | Common or Usual Name for Raw Meat and Poultry Products Containing Added Solutions | Proposed Rule | 2011-07-27T04:00:00Z | 2011 | 7 | 2011-07-27T04:00:00Z | 2011-09-27T03:59:59Z | 2024-11-07T22:33:02Z | 2011-18793 | 1 | 0 | 0900006480ecd356 | |
| FSIS-2011-0010-0001 | FSIS | Public Meetings on the Proposed Rule for Mandatory Inspection of Catfish and Catfish Products FSIS-2011-0010 | Mandatory Inspection of Catfish and Catfish Products: Public Meetings | Proposed Rule | 2011-05-09T04:00:00Z | 2011 | 5 | 2011-05-09T04:00:00Z | 2011-06-25T03:59:59Z | 2011-05-09T14:52:11Z | 2011-11213 | 0 | 0 | 0900006480c42ac5 | |
| FSIS-2008-0031-0001 | FSIS | Mandatory Inspection of Farm-raised Catfish and Catfish Products FSIS-2008-0031 | Mandatory Inspection of Catfish and Catfish Products | Proposed Rule | 2011-02-24T05:00:00Z | 2011 | 2 | 2011-02-24T05:00:00Z | 2011-06-25T03:59:59Z | 2011-06-11T17:26:35Z | 2011-03726 | 0 | 0 | 0900006480bf6ed8 | |
| FSIS-2010-0041-0001 | FSIS | Non-Ambulatory Disabled Veal Calves and Other Non-Ambulatory Disabled Livestock at Slaughter; Petitions for Rulemaking FSIS-2010-0041 | Non-Ambulatory Disabled Veal Calves and other Non-Ambulatory Disabled Livestock at Slaughter: Petitions For Rulemaking | Proposed Rule | 2011-02-07T05:00:00Z | 2011 | 2 | 2011-02-07T05:00:00Z | 2011-04-09T03:59:59Z | 2011-02-07T15:15:08Z | 2011-02504 | 0 | 0 | 0900006480bdd158 |
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;