documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "FNS", document_type = "Rule" and posted_year = 2006 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, last_modified, 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-2006-0046-0001 | FNS | Senior Farmers' Market Nutrition Program Regulations FNS-2006-0046 | Senior Farmers Market Nutrition Program Regulations | Rule | Final rule | 2006-12-12T05:00:00Z | 2006 | 12 | 2011-06-11T17:24:35Z | 06-09569 | 0 | 0 | 09000064801eb36d | ||
| FNS-2006-0043-0001 | FNS | For-Profit Center Participation in the Child and Adult Care Food Program FNS-2006-0043 | For-Profit Center Participation in the Child and Adult Care Food Program | Rule | 2006-10-23T04:00:00Z | 2006 | 10 | 2006-10-23T04:00:00Z | 2011-06-11T17:24:34Z | E6-17640 | 0 | 0 | 09000064801d8735 | ||
| FNS-2006-0041-0001 | FNS | Special Supplemental Nutrition Program for Women, Infants and Children (WIC): Miscellaneous Provisions FNS-2006-0041 | Special Supplemental Nutrition Program for Women, Infants and Children (WIC): Miscellaneous Provisions | Rule | 2006-09-27T04:00:00Z | 2006 | 9 | 2006-09-27T04:00:00Z | 2011-06-11T17:24:34Z | 06-07875 | 0 | 0 | 09000064801cef25 | ||
| FNS-2006-0038-0001 | FNS | State Administrative Expense Funds FNS-2006-0038 | State Administrative Expense Funds | Rule | 2006-08-11T04:00:00Z | 2006 | 8 | 2006-08-11T04:00:00Z | 2011-06-11T17:24:34Z | E6-13154 | 0 | 0 | 09000064801b4aaf | ||
| FNS-2006-0028-0001 | FNS | Child Nutrition Programs: Uniform Federal Assistance Regulations; Nondiscretionary Technical Amendments FNS-2006-0028 | Child Nutrition Programs: Uniform Federal Assistance Regulations; Nondiscretionary Technical Amendments | Rule | 2006-07-13T04:00:00Z | 2006 | 7 | 2006-07-13T04:00:00Z | 2006-09-12T03:59:59Z | 2011-06-11T17:24:31Z | 06-06185 | 0 | 0 | 090000648019c5e3 | |
| FNS-2006-0021-0001 | FNS | Food Stamp Program: Employment and Training Program Provisions of the Farm Security and Rural Investment Act of 2002 FNS-2006-0021 | Food Stamp Program: Employment and Training Program Provisions of the Farm Security and Rural Investment Act of 2002 | Rule | 2006-06-09T04:00:00Z | 2006 | 6 | 2006-06-09T04:00:00Z | 2011-06-11T17:24:31Z | E6-09001 | 0 | 0 | 0900006480184ae6 | ||
| FNS-2006-0018-0001 | FNS | Disregard of Overpayments in the Child and Adult Care Food Program, National School Lunch Program and School Breakfast Program FNS-2006-0018 | Disregard of Overpayments in the Child and Adult Care Food Program, National School Lunch Program and School Breakfast Program | Rule | 2006-05-30T04:00:00Z | 2006 | 5 | 2006-05-30T04:00:00Z | 2011-06-11T17:24:30Z | E6-08201 | 0 | 0 | 090000648017cc2b | ||
| FNS-2006-0016-0001 | FNS | Food Stamp Program: Civil Rights Data Collection FNS-2006-0016 | Food Stamp Program: Civil Rights Data Collection | Rule | 2006-05-18T04:00:00Z | 2006 | 5 | 2006-05-18T04:00:00Z | 2011-06-11T17:24:30Z | 06-04662 | 0 | 0 | 0900006480174c2f | ||
| FNS-2006-0014-0001 | FNS | General Information and Definitions FNS-2006-0014 | General Information and Definitions | Rule | 2006-05-08T04:00:00Z | 2006 | 5 | 2006-05-08T04:00:00Z | 2006-11-22T15:16:09Z | 06-55517 | 0 | 0 | 090000648016d9cd | ||
| FNS-2006-0002-0001 | FNS | Child and Adult Care Food Program: Age Limits for Children Receiving Meals in Emergency Shelters FNS-2006-0002 | Child and Adult Care Food Program: Age Limits for Children Receiving Meals in Emergency Shelters | Rule | 2006-01-03T05:00:00Z | 2006 | 1 | 2006-01-03T05:00:00Z | 2006-03-07T04:59:59Z | 2011-06-11T17:24:29Z | 05-24683 | 0 | 0 | 0900006480105564 |
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;