documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "FNS", document_type = "Notice" and posted_year = 2005 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, 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-2005-0017-0001 | FNS | Food Stamp Program: Agency Information Collection Activities: Proposed Collection;Comment Request; Disaster Food Stamp Program FNS-2005-0017 | Food Stamp Program: Agency Information Collection Activities: Proposed Collection;Comment Request; Disaster Food Stamp Program | Notice | 2005-12-22T05:00:00Z | 2005 | 12 | 2005-12-22T05:00:00Z | 2006-11-22T15:15:18Z | E5-07689 | 0 | 0 | 09000064800fde72 | ||
| FNS-2005-0012-0001 | FNS | AgencyInformation Collection Activities: Proposed Collection; Comment Request--Report of School Program Operations FNS-2005-0012 | AgencyInformation Collection Activities: Proposed Collection; Comment Request--Report of School Program Operations | Notice | 2005-11-30T05:00:00Z | 2005 | 11 | 2005-11-30T05:00:00Z | 2006-11-22T15:15:03Z | E5-06707 | 0 | 0 | 09000064800e7932 | ||
| FNS-2005-0011-0001 | FNS | Agency Information Collection Activities: Proposed Collection; Comment Request--Report of the Child and Adult Care Food Program FNS-2005-0011 | Agency Information Collection Activities: Proposed Collection; Comment Request--Report of the Child and Adult Care Food Program | Notice | 2005-11-30T05:00:00Z | 2005 | 11 | 2005-11-30T05:00:00Z | 2006-11-22T15:14:59Z | E5-06708 | 0 | 0 | 09000064800e7893 | ||
| FNS-2005-0007-0001 | FNS | Agency Information Collection Activities: Proposed Collection, Comment Request--Commodity Supplemental Food Program, the Food Distribution Program on Indian Reservations, and the Food Stamp Program: Title VI Civil Rights Collection Reports FNS-2005-0007 | Agency Information Collection Activities: Proposed Collection, Comment Request--Commodity Supplemental Food Program, the Food Distribution Program on Indian Reservations, and the Food Stamp Program: Title VI Civil Rights Collection Reports | Notice | 2005-10-28T04:00:00Z | 2005 | 10 | 2005-10-28T04:00:00Z | 2006-11-22T15:14:43Z | 05-21630 | 0 | 0 | 0900006480097d21 | ||
| FNS-2005-0006-0001 | FNS | Agency Information Collection Activities: Special Supplemental Nutrition Program for Women, Infants and Children (WIC) Proposed Collection; Comment Request--Monitoring Trends in the Public Health Workforce Survey FNS-2005-0006 | Agency Information Collection Activities: Special Supplemental Nutrition Program for Women, Infants and Children (WIC) Proposed Collection; Comment Request--Monitoring Trends in the Public Health Workforce Survey | Notice | 2005-10-13T04:00:00Z | 2005 | 10 | 2005-10-13T04:00:00Z | 2006-11-22T15:14:50Z | 05-20515 | 0 | 0 | 0900006480092463 | ||
| FNS-2005-0005-0001 | FNS | Agency Information Collection Activities: Proposed Collection; Comment Request--School Lunch and Breakfast Cost Study-II FNS-2005-0005 | Agency Information Collection Activities: Proposed Collection; Comment Request--School Lunch and Breakfast Cost Study-II | Notice | 2005-10-07T04:00:00Z | 2005 | 10 | 2005-10-07T04:00:00Z | 2006-11-22T15:14:34Z | 05-20255 | 0 | 0 | 090000648009023b |
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;