documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "FSIS", document_type = "Rule" and posted_year = 2024 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2022-0016-0004 | FSIS | Uniform Compliance Date for Food Labeling Regulations FSIS-2022-0016 | Uniform Compliance Date for Food Labeling Regulations | Rule | 2024-11-27T05:00:00Z | 2024 | 11 | 2024-11-27T05:00:00Z | 2024-12-28T04:59:59Z | 2024-12-23T02:00:41Z | 2024-27864 | 0 | 0 | 090000648683a7e9 | |
| FSIS-2024-0010-0001 | FSIS | Availability of Guideline on Documentation Needed to Substantiate Animal Raising or Environmental Stewardship Claims for Label Submission FSIS-2024-0010 | Guidance: Guideline on Substantiating Animal-Raising or Environment-Related Labeling Claims | Rule | 2024-09-10T04:00:00Z | 2024 | 9 | 2024-09-10T04:00:00Z | 2024-11-13T04:59:59Z | 2024-11-16T02:00:37Z | 2024-19696 | 0 | 0 | 09000064866e0ca4 | |
| FSIS-2005-0015-0093 | FSIS | Egg Products Inspection Regulations FSIS-2005-0015 | Rules of Practice; CFR Correction | Rule | 2024-07-03T04:00:00Z | 2024 | 7 | 2024-07-03T04:00:00Z | 2024-07-09T18:43:22Z | 2024-14682 | 0 | 0 | 09000064865d89ac | ||
| FSIS-2022-0014-0001 | FSIS | FSIS Guideline for Retained Water FSIS-2022-0014 | Guideline for Controlling Retained Water in Raw Meat and Poultry | Rule | 2024-04-01T04:00:00Z | 2024 | 4 | 2024-04-01T04:00:00Z | 2024-06-01T03:59:59Z | 2024-06-01T01:00:42Z | 2024-06837 | 0 | 0 | 09000064864b182d | |
| FSIS-2022-0015-3366 | FSIS | Voluntary Labeling of Products With "Product of USA" and Similar Statements FSIS-2022-0015 | Voluntary Labeling of FSIS-Regulated Products with U.S.-Origin Claims | Rule | Final Rule with Request for Comments | 2024-03-18T04:00:00Z | 2024 | 3 | 2024-03-18T04:00:00Z | 2024-05-18T03:59:59Z | 2024-05-20T01:00:47Z | 2024-05479 | 0 | 0 | 09000064864808f5 |
| FSIS-2019-0012-0004 | FSIS | Privacy Act Exemption for AssuranceNet System of Records Notice (SORN) FSIS-2019-0012 | Privacy Act Exemption for AssuranceNet | Rule | 2024-02-20T05:00:00Z | 2024 | 2 | 2024-02-20T05:00:00Z | 2024-02-23T21:59:35Z | 2024-03343 | 0 | 0 | 0900006486418f5d |
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;