documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "FNS", document_type = "Proposed Rule" and posted_year = 2025 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, posted_month, 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-2025-0018-0001 | FNS | Updated Staple Food Stocking Standards for Retailers in the Supplemental Nutrition Assistance Program FNS-2025-0018 | Updated Staple Food Stocking Standards for Retailers in the Supplemental Nutrition Assistance Program | Proposed Rule | 2025-09-25T04:00:00Z | 2025 | 9 | 2025-09-25T04:00:00Z | 2025-11-25T04:59:59Z | 2025-12-05T10:00:15Z | 2025-18624 | 0 | 0 | 09000064b8fdc156 | |
| FNS-2025-0006-0002 | FNS | Supplemental Nutrition Assistance Program: Rescission of Changes to Civil Rights Data Collection Methods FNS-2025-0006 | Supplemental Nutrition Assistance Program: Revision of Civil Rights Data Collection Methods; Recission | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2025-05-16T04:00:00Z | 2025 | 5 | 2025-05-15T04:00:00Z | 2025-06-17T03:59:59Z | 2025-06-17T09:01:09Z | 2025-08797 | 0 | 0 | 09000064b8d629dd |
| FNS-2024-0030-0002 | FNS | Supplemental Nutrition Assistance Program Quality Control Review Handbook Incorporation by Reference FNS-2024-0030 | Supplemental Nutrition Assistance Program Quality Control Review Handbook Incorporation by Reference | Proposed Rule | 2025-01-24T05:00:00Z | 2025 | 1 | 2025-01-24T05:00:00Z | 2025-02-05T18:00:30Z | C1-2024-30578 | 0 | 0 | 09000064868f4fe1 | ||
| FNS-2020-0016-0116 | FNS | Reform Provisions for the Supplemental Nutrition Assistance Program’s Quality Control System FNS-2020-0016 | Provisions to Improve the Supplemental Nutrition Assistance Program's Quality Control System; Withdrawal | Proposed Rule | 2025-01-06T05:00:00Z | 2025 | 1 | 2025-01-06T05:00:00Z | 2025-02-05T18:07:59Z | 2024-31263 | 0 | 0 | 090000648689ecb7 | ||
| FNS-2024-0030-0001 | FNS | Supplemental Nutrition Assistance Program Quality Control Review Handbook Incorporation by Reference FNS-2024-0030 | Supplemental Nutrition Assistance Program Quality Control Review Handbook Incorporation by Reference | Proposed Rule | 2025-01-03T05:00:00Z | 2025 | 1 | 2025-01-03T05:00:00Z | 2025-03-05T04:59:59Z | 2025-03-05T02:00:38Z | 2024-30578 | 0 | 0 | 090000648689a9cf |
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;