documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "FNS", document_type = "Rule" and posted_year = 2025 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, posted_date, posted_month, comment_start_date, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FNS-2026-0034-0001 | FNS | Special Supplemental Nutrition Program for Women, Infants, and Children (WIC): Implementation of the Access to Baby Formula Act of 2022 and Related Provisions; Correcting Amendments FNS-2026-0034 | Special Supplemental Nutrition Program for Women, Infants, and Children: Implementation of the Access to Baby Formula Act of 2022 and Related Provisions; Correcting Amendments | Rule | 2025-12-17T05:00:00Z | 2025 | 12 | 2025-12-17T05:00:00Z | 2026-02-03T18:20:47Z | 2025-23089 | 0 | 0 | 09000064b90e5c85 | ||
| FNS-2025-0008-0004 | FNS | National School Lunch Program and School Breakfast Program: Elimination of the State Ameliorative Action Reporting Requirement for School Meals Eligibility Verification FNS-2025-0008 | National School Lunch Program and School Breakfast Program: Elimination of the State Ameliorative Action Reporting Requirement for School Meals Eligibility Verification | Rule | 2025-08-08T04:00:00Z | 2025 | 8 | 2025-08-08T04:00:00Z | 2025-09-09T03:59:59Z | 2025-08-12T14:48:43Z | 2025-15099 | 0 | 0 | 09000064b8ef0c08 | |
| FNS-2025-0023-0001 | FNS | Summer Electronic Benefits for Children: Rescission of Obsolete Regulatory Provisions FNS-2025-0023 | Summer Electronic Benefits Transfer for Children: Rescission of Obsolete Regulatory Provisions | Rule | 2025-06-11T00:00:00Z | 2025 | 6 | 2025-06-11T00:00:00Z | 2025-06-17T21:07:34Z | 2025-10623 | 0 | 0 | 09000064b8df57a2 | ||
| FNS-2025-0008-0001 | FNS | National School Lunch Program and School Breakfast Program: Elimination of the State Ameliorative Action Reporting Requirement for School Meals Eligibility Verification FNS-2025-0008 | National School Lunch Program and School Breakfast Program: Elimination of the State Ameliorative Action Reporting Requirement for School Meals Eligibility Verification | Rule | 2025-06-06T00:00:00Z | 2025 | 6 | 2025-06-06T00:00:00Z | 2025-07-08T03:59:59Z | 2025-07-10T09:00:52Z | 2025-10340 | 0 | 0 | 09000064b8dddb20 | |
| FNS-2025-0007-0001 | FNS | Child Nutrition: Streamlining Plan Requirements for the Summer EBT Program and the Rural Non-congregate Option in the Summer Food Service Program FNS-2025-0007 | Child Nutrition: Streamlining Plan Requirements for the Summer Electronic Benefits Transfer Program and the Rural Non-Congregate Option in the Summer Food Service Program | Rule | 2025-06-06T00:00:00Z | 2025 | 6 | 2025-06-06T00:00:00Z | 2025-06-06T20:21:54Z | 2025-10342 | 0 | 0 | 09000064b8dddada | ||
| FNS-2025-0005-0001 | FNS | Child and Adult Care Food Program: Rescission of Obsolete Data Collection Requirements FNS-2025-0005 | Child and Adult Care Food Program: Rescission of Obsolete Data Collection Requirements | Rule | 2025-05-12T00:00:00Z | 2025 | 5 | 2025-05-12T00:00:00Z | 2025-05-22T18:00:57Z | 2025-08160 | 0 | 0 | 09000064b8d3d376 |
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;