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 = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, posted_date (date), comment_start_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-0037-0001 | FNS | Child Nutrition Programs: Rescission of Milk, Whole Grains, and Sodium Flexibilities: Notice of Vacatur FNS-2020-0037 | Child Nutrition Programs: Rescission of Milk, Whole Grains, and Sodium Flexibilities: Notice of Vacatur | Rule | 2020-11-24T05:00:00Z | 2020 | 11 | 2020-11-24T05:00:00Z | 2020-11-24T13:31:18Z | 2020-25760 | 0 | 0 | 090000648497326f | ||
| FNS-2020-0028-0001 | FNS | Supplemental Nutrition Assistance Program: Pandemic Electronic Benefits Transfer Integrity FNS-2020-0028 | Supplemental Nutrition Assistance Program: Pandemic Electronic Benefits Transfer Integrity | Rule | 2020-11-04T05:00:00Z | 2020 | 11 | 2020-11-04T05:00:00Z | 2020-11-05T10:39:41Z | 2020-24303 | 0 | 0 | 0900006484949ffc | ||
| FNS-2019-0006-0001 | FNS | Commodity Supplemental Food Program: Implementation of the Agriculture Improvement Act of 2018 FNS-2019-0006 | Commodity Supplemental Food Program: Implementation of the Agriculture Improvement Act | Rule | 2020-10-30T04:00:00Z | 2020 | 10 | 2020-10-30T04:00:00Z | 2020-10-30T12:42:28Z | 2020-23760 | 0 | 0 | 090000648494181c | ||
| FNS-2018-0021-0012 | FNS | Taking Administrative Actions Pending Freedom of Information Act (FOIA) Processing FNS-2018-0021 | Taking Administrative Actions Pending Freedom of Information Act Processing | Rule | 2020-08-26T04:00:00Z | 2020 | 8 | 2020-08-26T04:00:00Z | 2020-08-26T19:54:37Z | 2020-18701 | 0 | 0 | 0900006484822909 | ||
| FNS-2016-0074-0026 | FNS | Supplemental Nutrition Assistance Program: 2008 Farm Bill Provisions on Clarification of Split Issuance; Accrual of Benefits and Definition Changes FNS-2016-0074 | Supplemental Nutrition Assistance Program: 2008 Farm Bill Provisions on Clarification of Split Issuance; Accrual of Benefits and Definition Changes | Rule | 2020-08-24T04:00:00Z | 2020 | 8 | 2020-08-24T04:00:00Z | 2020-08-24T17:27:53Z | 2020-16403 | 0 | 0 | 090000648481a4d5 | ||
| FNS-2019-0048-0001 | FNS | FDPIR Two-Year Administrative Funding Availability and Substantial Burden Waiver Signatory Requirements FNS-2019-0048 | Food Distribution Program on Indian Reservations: Two-Year Administrative Funding Availability and Substantial Burden Waiver Signatory Requirement | Rule | 2020-07-14T04:00:00Z | 2020 | 7 | 2020-07-14T04:00:00Z | 2020-07-14T12:54:26Z | 2020-15047 | 0 | 0 | 0900006484752ee8 | ||
| FNS-2019-0005-0681 | FNS | Child and Adult Care Food Program: Meal Pattern Revisions; Grains Ounce Equivalents: Delayed Implementation FNS-2019-0005 | Grains Ounce Equivalents in the Child and Adult Care Food Program | Rule | 2020-02-12T05:00:00Z | 2020 | 2 | 2020-02-12T05:00:00Z | 2020-02-12T13:58:02Z | 2020-02245 | 0 | 0 | 09000064843581e9 |
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;