documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "FNS", document_type = "Rule" and posted_year = 2023 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-2023-0029-0001 | FNS | Establishing the Summer EBT Program and Rural Non-Congregate Option in the Summer Meal Programs FNS-2023-0029 | Establishing the Summer Electronic Benefits Transfer Program and Rural Non-Congregate Option in the Summer Meal Programs | Rule | 2023-12-29T05:00:00Z | 2023 | 12 | 2023-12-29T05:00:00Z | 2024-04-30T03:59:59Z | 2024-04-30T01:01:11Z | 2023-28488 | 0 | 0 | 0900006486365b40 | |
| FNS-2022-0005-0003 | FNS | Supplemental Nutrition Assistance Program: Revision of Civil Rights Data Collection Methods FNS-2022-0005 | Supplemental Nutrition Assistance Program: Revision of Civil Rights Data Collection Methods | Rule | 2023-12-14T05:00:00Z | 2023 | 12 | 2023-12-14T05:00:00Z | 2023-12-14T14:00:13Z | 2023-27351 | 0 | 0 | 09000064863399c6 | ||
| FNS-2023-0027-0001 | FNS | WIC: Implementation of the Access to Baby Formula Act of 2022 FNS-2023-0027 | Special Supplemental Nutrition Program for Women, Infants, and Children: Access to Baby Formula Act and Related Provisions | Rule | 2023-12-14T05:00:00Z | 2023 | 12 | 2023-12-14T05:00:00Z | 2024-02-13T04:59:59Z | 2024-02-14T02:00:14Z | 2023-26641 | 0 | 0 | 0900006486339a46 | |
| FNS-2022-0044-10418 | FNS | Child Nutrition Programs: Community Eligibility Provision (CEP) – Increasing Options for Schools FNS-2022-0044 | Child Nutrition Programs: Community Eligibility Provision-Increasing Options for Schools | Rule | 2023-09-26T04:00:00Z | 2023 | 9 | 2023-09-26T04:00:00Z | 2023-09-26T12:52:57Z | 2023-20294 | 0 | 0 | 0900006485ff5721 | ||
| FNS-2016-0040-5664 | FNS | Child Nutrition Program Integrity FNS-2016-0040 | Child Nutrition Program Integrity | Rule | 2023-09-18T04:00:00Z | 2023 | 9 | 2023-09-18T04:00:00Z | 2023-09-18T13:04:32Z | 2023-19878 | 0 | 0 | 0900006485fc191b | ||
| FNS-2016-0040-5663 | FNS | Child Nutrition Program Integrity FNS-2016-0040 | Child Nutrition Program Integrity | Rule | 2023-08-23T04:00:00Z | 2023 | 8 | 2023-08-23T04:00:00Z | 2023-08-23T12:37:00Z | 2023-17992 | 0 | 0 | 0900006485ed91c8 | ||
| FNS_FRDOC_0001-0892 | FNS | ... FNS_FRDOC_0001 | Supplemental Nutrition Assistance Program: Non-Discretionary Quality Control Provisions of the Agricultural Improvement Act | Rule | 2023-04-18T04:00:00Z | 2023 | 4 | 2023-04-18T04:00:00Z | 2023-04-18T12:19:22Z | 2023-08122 | 0 | 0 | 09000064859562cf |
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;