documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "FSIS", document_type = "Notice" and posted_year = 2026 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, 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-2025-0344-0001 | FSIS | Notice of Request to Renew an Approved Information Collection: Nutrition Labeling of Major Cuts of Single-Ingredient Raw Meat or Poultry Products and Ground or Chopped Meat and Poultry Products FSIS-2025-0344 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Nutrition Labeling of Major Cuts of Single-Ingredient Raw Meat or Poultry Products and Ground or Chopped Meat and Poultry Products | Notice | 2026-03-12T04:00:00Z | 2026 | 3 | 2026-03-12T04:00:00Z | 2026-05-12T03:59:59Z | 2026-03-12T17:18:03Z | 2026-04820 | 1 | 0 | 09000064b92102d6 | |
| FSIS-2025-0248-0001 | FSIS | Notice of Request to Revise an Approved Information Collection: Sanitation SOPs and Pathogen Reduction/HACCP FSIS-2025-0248 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Sanitation SOPs and Pathogen Reduction/HACCP | Notice | 2026-02-10T05:00:00Z | 2026 | 2 | 2026-02-10T05:00:00Z | 2026-04-14T03:59:59Z | 2026-02-11T17:37:41Z | 2026-02647 | 1 | 0 | 09000064b919da49 | |
| FSIS-2025-0211-0001 | FSIS | 2026 Rate Changes for the Basetime, Overtime, Holiday, Laboratory Services, and Export Application Fees FSIS-2025-0211 | 2026 Rate Changes for the Basetime, Overtime, Holiday, Laboratory Services, and Export Application Fees | Notice | 2026-02-06T05:00:00Z | 2026 | 2 | 2026-02-06T05:00:00Z | 2026-02-09T16:25:45Z | 2026-02352 | 0 | 0 | 09000064b9195b89 | ||
| FSIS-2025-0246-0001 | FSIS | Notice of Request to Renew an Approved Information Collection: Specified Risk Materials FSIS-2025-0246 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Specified Risk Materials | Notice | 2026-01-15T05:00:00Z | 2026 | 1 | 2026-01-15T05:00:00Z | 2026-03-17T03:59:59Z | 2026-01-16T19:19:58Z | 2026-00749 | 1 | 0 | 09000064b9152a60 | |
| FSIS-2025-0247-0001 | FSIS | Notice of Request to Renew an Approved Information Collection: Advanced Meat Recovery FSIS-2025-0247 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Advanced Meat Recovery | Notice | 2026-01-15T05:00:00Z | 2026 | 1 | 2026-01-15T05:00:00Z | 2026-03-17T03:59:59Z | 2026-01-16T19:21:38Z | 2026-00750 | 1 | 0 | 09000064b9152940 |
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;