documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FNS-2007-0038" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- FNS 6
| 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-2007-0038-64678 | FNS | Nutrition Standards in the National School Lunch and Breakfast Programs FNS-2007-0038 | Nutrition Standards in the National School Lunch and School Breakfast Programs | Rule | 2013-07-08T04:00:00Z | 2013 | 7 | 2013-07-08T04:00:00Z | 2013-07-12T17:20:31Z | 2013-16278 | 0 | 0 | 090000648135a824 | ||
| FNS-2007-0038-64677 | FNS | Nutrition Standards in the National School Lunch and Breakfast Programs FNS-2007-0038 | Amendment to Final Summary of Public Comments | Supporting & Related Material | Statement (Supporting and Related Material) | 2012-02-03T05:00:00Z | 2012 | 2 | 2012-02-03T22:28:16Z | 0 | 0 | 0900006480fad37e | |||
| FNS-2007-0038-64676 | FNS | Nutrition Standards in the National School Lunch and Breakfast Programs FNS-2007-0038 | Nutrition Standards in the National School Lunch and School Breakfast Programs | Rule | Final Rule | 2012-01-26T05:00:00Z | 2012 | 1 | 2012-01-26T05:00:00Z | 2012-01-30T18:17:21Z | 2012-01010 | 0 | 0 | 0900006480fa556c | |
| FNS-2007-0038-64675 | FNS | Nutrition Standards in the National School Lunch and Breakfast Programs FNS-2007-0038 | Final Summary of Public Comments | Supporting & Related Material | Statement (Supporting and Related Material) | 2011-10-13T04:00:00Z | 2011 | 10 | 2011-10-13T15:13:53Z | 0 | 0 | 0900006480f5166a | |||
| FNS-2007-0038-0002 | FNS | Nutrition Standards in the National School Lunch and Breakfast Programs FNS-2007-0038 | Nutrition Standards in National School Lunch and School Breakfast Programs: Incorporating 2010 Dietary Guidelines for Americans into Proposed School MealPatterns | Proposed Rule | Advance notice of proposed rulemaking | 2011-03-21T04:00:00Z | 2011 | 3 | 2011-03-21T04:00:00Z | 2011-04-14T03:59:59Z | 2011-05-03T14:04:41Z | 2011-06403 | 0 | 0 | 0900006480c0c795 |
| FNS-2007-0038-0001 | FNS | Nutrition Standards in the National School Lunch and Breakfast Programs FNS-2007-0038 | Nutrition Standards in the National School Lunch and School Breakfast Programs | Proposed Rule | 2011-01-13T05:00:00Z | 2011 | 1 | 2011-01-13T05:00:00Z | 2011-04-14T03:59:59Z | 2013-02-14T03:01:58Z | 2011-00485 | 0 | 0 | 0900006480bca2e6 |
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;