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 = 2013 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, subtype, posted_date, posted_month, comment_start_date, comment_end_date, fr_doc_num, 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-2011-0027-0001 | FNS | National School Lunch Program and School Breakfast Program: Eliminating Applications through Community Eligibility as Required by the Healthy, Hunger-Free Kids Act of 2010 FNS-2011-0027 | National School Lunch Program and School Breakfast Program: Eliminating Applications through Community Eligibility as Required by the Healthy, Hunger-Free Kids Act of 2010 | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2013-11-04T05:00:00Z | 2013 | 11 | 2013-11-04T05:00:00Z | 2014-01-04T04:59:59Z | 2014-05-04T00:10:09Z | 2013-25922 | 0 | 0 | 090000648146f936 |
| FNS-2013-0026-0001 | FNS | Simplified Cost Accounting and Other Actions to Reduce Paperwork in the Summer Food Service Program FNS-2013-0026 | Simplified Cost Accounting and Other Actions to Reduce Paperwork in Summer Food Service Program and National School Lunch Notice Procedures | Proposed Rule | 2013-07-12T04:00:00Z | 2013 | 7 | 2013-07-12T04:00:00Z | 2013-10-11T03:59:59Z | 2013-10-12T01:02:32Z | 2013-16697 | 0 | 0 | 0900006481363cb0 | |
| FNS-2013-0012-0015 | FNS | Special Supplemental Nutrition Program for Women, Infants and Children: Implementation of Electronic Benefit Transfer-Related Provisions FNS-2013-0012 | Special Supplemental Nutrition Program for Women, Infants and Children: Electronic Benefit Transfer-Related Provisions of the Healthy, Hunger-Free Kids Act; Extension of Comment Period | Proposed Rule | Extension of Comment Period | 2013-05-29T04:00:00Z | 2013 | 5 | 2013-05-29T04:00:00Z | 2013-06-30T03:59:59Z | 2013-07-04T01:01:55Z | 2013-12688 | 0 | 0 | 09000064812fe01a |
| FNS-2013-0023-0001 | FNS | NOT USED FNS-2013-0023 | NOT USED | Proposed Rule | 2013-05-29T04:00:00Z | 2013 | 5 | 2013-05-29T04:00:00Z | 2013-06-30T03:59:59Z | 2013-05-29T14:04:54Z | 2013-12688 | 0 | 0 | 09000064812fde1d | |
| FNS-2013-0012-0001 | FNS | Special Supplemental Nutrition Program for Women, Infants and Children: Implementation of Electronic Benefit Transfer-Related Provisions FNS-2013-0012 | Special Supplemental Nutrition Program for Women, Infants and Children: Implementation of the Electronic Benefit Transfer-Related Provisions of Public Law 111-296 | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2013-02-28T05:00:00Z | 2013 | 2 | 2013-02-28T05:00:00Z | 2013-05-30T03:59:59Z | 2013-05-31T01:02:36Z | 2013-04216 | 0 | 0 | 090000648120f739 |
| FNS-2013-0011-0001 | FNS | Supplemental Nutrition Assistance Program: Suspension of SNAP Benefit Payments to Retailers FNS-2013-0011 | Supplemental Nutrition Assistance Program: Suspension of SNAP Benefit Payments to Retailers | Proposed Rule | 2013-02-22T05:00:00Z | 2013 | 2 | 2013-02-22T05:00:00Z | 2013-04-24T03:59:59Z | 2013-04-30T01:02:52Z | 2013-04037 | 0 | 0 | 0900006481203498 | |
| FNS-2011-0019-0001 | FNS | National School Lunch and School Breakfast Programs: Nutrition Standards for All Foods Sold in School, as Required by the Healthy, Hunger-Free Kids Act of 2010 FNS-2011-0019 | National School Lunch Program and School Breakfast Program: Nutrition Standards for All Foods Sold in School as Required by the Healthy, Hunger-Free Kids Act of 2010 | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2013-02-08T05:00:00Z | 2013 | 2 | 2013-02-08T05:00:00Z | 2013-04-10T03:59:59Z | 2015-05-17T00:47:03Z | 2013-02584 | 0 | 0 | 09000064811ee708 |
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;