documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "NRCS", 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| NRCS-2005-0009-0001 | NRCS | LA-05 Floating Marsh Creation Demonstration Project, Terrebonne Parish, LA NRCS-2005-0009 | LA-05 Floating Marsh Creation Demonstration Project, Terrebonne Parish, LA | Notice | 2005-12-29T05:00:00Z | 2005 | 12 | 2005-12-29T05:00:00Z | 2006-09-02T22:02:30Z | E5-08005 | 0 | 0 | 0900006480102469 | ||
| NRCS-2005-0008-0001 | NRCS | Project: Pigeon Roost Creek Watershed, Floodwater Retarding Structure<greek-i>3, Jackson County, KY NRCS-2005-0008 | Project: Pigeon Roost Creek Watershed, Floodwater Retarding Structure<greek-i>3, Jackson County, KY | Notice | 2005-12-27T05:00:00Z | 2005 | 12 | 2005-12-27T05:00:00Z | 2006-09-02T22:02:28Z | E5-07824 | 0 | 0 | 0900006480100529 | ||
| NRCS-2005-0007-0001 | NRCS | Notice of Proposed Changes to Section IV of the Field Office Technical Guide (FOTG) of the Natural Resources Conservation Service in Indiana NRCS-2005-0007 | Notice of Proposed Changes to Section IV of the Field Office Technical Guide (FOTG) of the Natural Resources Conservation Service in Indiana | Notice | 2005-12-16T05:00:00Z | 2005 | 12 | 2005-12-16T05:00:00Z | 2006-09-02T22:02:27Z | E5-07455 | 0 | 0 | 09000064800f8971 | ||
| NRCS-2005-0006-0001 | NRCS | South Fork Licking River Watershed Licking, Perry, and Fairfield Counties, OH NRCS-2005-0006 | South Fork Licking River Watershed Licking, Perry, and Fairfield Counties, OH | Notice | 2005-11-22T05:00:00Z | 2005 | 11 | 2005-11-22T05:00:00Z | 2006-09-02T22:02:26Z | 05-23168 | 0 | 0 | 09000064800a3e9e | ||
| NRCS-2005-0005-0001 | NRCS | Environmental statements; availability, etc.: Garfield County Silt Salinity Control Project, CO NRCS-2005-0005 | Environmental statements; availability, etc.: Garfield County Silt Salinity Control Project, CO | Notice | 2005-11-17T05:00:00Z | 2005 | 11 | 2005-11-17T05:00:00Z | 2006-09-02T22:02:24Z | 05-22809 | 0 | 0 | 09000064800a18e6 | ||
| NRCS-2005-0003-0001 | NRCS | Environmental Statements; Availability NRCS-2005-0003 | Environmental Statements; Availability | Notice | 2005-11-08T05:00:00Z | 2005 | 11 | 2005-11-08T05:00:00Z | 2006-09-02T22:02:21Z | 05-22358 | 0 | 0 | 090000648009c8c7 | ||
| NRCS-2005-0004-0001 | NRCS | Notice of Intent To Extend a Currently Approved Information Collection NRCS-2005-0004 | Notice of Intent To Extend a Currently Approved Information Collection | Notice | 2005-11-08T05:00:00Z | 2005 | 11 | 2005-11-08T05:00:00Z | 2006-09-02T22:02:23Z | 05-22270 | 0 | 0 | 090000648009c908 | ||
| NRCS-2005-0002-0001 | NRCS | Notice To Reinstate and Revise a Previously Approved Information Collection NRCS-2005-0002 | Notice To Reinstate and Revise a Previously Approved Information Collection | Notice | 2005-10-12T04:00:00Z | 2005 | 10 | 2005-10-12T04:00:00Z | 2006-09-02T22:02:20Z | 05-20393 | 0 | 0 | 0900006480091d04 | ||
| NRCS-2005-0001-0001 | NRCS | None NRCS-2005-0001 | Notice of Meeting of the Agricultural Air Quality Task Force | Notice | 2005-10-04T04:00:00Z | 2005 | 10 | 2005-10-04T04:00:00Z | 2006-09-02T22:02:18Z | 05-19770 | 0 | 0 | 090000648008e86d |
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;