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 = "Proposed Rule" and posted_year = 2023 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-2020-0016-0109 | 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 | Proposed Rule | 2023-12-19T05:00:00Z | 2023 | 12 | 2023-12-19T05:00:00Z | 2024-01-03T04:59:59Z | 2024-01-04T02:00:48Z | 2023-27821 | 0 | 0 | 0900006486346b6b | |
| FNS-2020-0016-0001 | 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 | Proposed Rule | 2023-09-19T04:00:00Z | 2023 | 9 | 2023-09-19T04:00:00Z | 2023-11-21T04:59:59Z | 2023-11-22T02:04:02Z | 2023-20023 | 0 | 0 | 0900006485fcfd0f | |
| FNS-2023-0026-0001 | FNS | Food Distribution Programs: Improving Access and Parity FNS-2023-0026 | Food Distribution Programs: Improving Access and Parity | Proposed Rule | 2023-08-14T04:00:00Z | 2023 | 8 | 2023-08-14T04:00:00Z | 2023-10-14T03:59:59Z | 2023-10-18T01:03:54Z | 2023-17467 | 0 | 0 | 0900006485e3357c | |
| FNS-2022-0043-52985 | FNS | Child Nutrition Programs: Revisions to meal patterns consistent with the 2020 Dietary Guidelines for Americans FNS-2022-0043 | Child Nutrition Programs: Revisions to Meal Patterns Consistent with the 2020 Dietary Guidelines for Americans | Proposed Rule | 2023-03-31T04:00:00Z | 2023 | 3 | 2023-03-31T04:00:00Z | 2023-05-11T03:59:59Z | 2023-05-25T01:00:47Z | 2023-06666 | 0 | 0 | 09000064858a17c9 | |
| FNS-2022-0044-0001 | 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 | Proposed Rule | 2023-03-23T04:00:00Z | 2023 | 3 | 2023-03-23T04:00:00Z | 2023-05-09T03:59:59Z | 2023-07-18T01:02:28Z | 2023-05624 | 0 | 0 | 0900006485838bca | |
| FNS-2022-0015-0001 | FNS | WIC: Online Ordering and Transactions and Food Delivery Revisions to Meet the Needs of a Modern, Data-Driven Program FNS-2022-0015 | Special Supplemental Nutrition Program for Women, Infants, and Children: Online Ordering and Transactions and Food Delivery Revisions to Meet the Needs of a Modern, Data-Driven Program | Proposed Rule | 2023-02-23T00:00:00Z | 2023 | 2 | 2023-02-23T00:00:00Z | 2023-05-25T03:59:59Z | 2025-05-28T18:29:04Z | 2023-02484 | 0 | 0 | 09000064856f26e2 | |
| FNS-2022-0043-0001 | FNS | Child Nutrition Programs: Revisions to meal patterns consistent with the 2020 Dietary Guidelines for Americans FNS-2022-0043 | Child Nutrition Programs: Revisions to Meal Patterns Consistent with the 2020 Dietary Guidelines for Americans | Proposed Rule | 2023-02-07T05:00:00Z | 2023 | 2 | 2023-02-07T05:00:00Z | 2023-04-11T03:59:59Z | 2023-09-14T01:04:39Z | 2023-02102 | 0 | 0 | 0900006485639ca1 |
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;