documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "NRCS-2009-0011" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| NRCS-2009-0011-0007 | NRCS | Cooperative Conservation Partnership Initiative NRCS-2009-0011 | Cooperative Conservation Partnership Initiative: Chesapeake Bay Watershed | Notice | 2010-12-16T05:00:00Z | 2010 | 12 | 2010-12-16T05:00:00Z | 2011-04-12T16:26:03Z | 2010-31648 | 0 | 0 | 0900006480bb8237 | ||
| NRCS-2009-0011-0006 | NRCS | Cooperative Conservation Partnership Initiative NRCS-2009-0011 | Cooperative Conservation Partnership Initiative and Wetlands Reserve Enhancement Program | Notice | 2010-11-29T05:00:00Z | 2010 | 11 | 2010-11-29T05:00:00Z | 2011-04-12T16:24:23Z | 2010-29958 | 0 | 0 | 0900006480ba819b | ||
| NRCS-2009-0011-0005 | NRCS | Cooperative Conservation Partnership Initiative NRCS-2009-0011 | Cooperative Conservation Partnership Initiative | Notice | 2010-04-12T04:00:00Z | 2010 | 4 | 2010-04-12T04:00:00Z | 2011-04-12T16:22:50Z | 2010-08244 | 0 | 0 | 0900006480ad5ad2 | ||
| NRCS-2009-0011-0004 | NRCS | Cooperative Conservation Partnership Initiative NRCS-2009-0011 | Cooperative Conservation Partnership Initiative: Chesapeake Bay Watershed | Notice | 2010-04-07T04:00:00Z | 2010 | 4 | 2010-04-07T04:00:00Z | 2011-04-12T16:08:34Z | 2010-07808 | 0 | 0 | 0900006480ad1ea9 | ||
| NRCS-2009-0011-0003 | NRCS | Cooperative Conservation Partnership Initiative NRCS-2009-0011 | Chesapeake Bay Watershed Initiative | Notice | 2010-03-12T05:00:00Z | 2010 | 3 | 2010-03-12T05:00:00Z | 2011-04-12T16:04:53Z | 2010-05438 | 0 | 0 | 0900006480abc1ba | ||
| NRCS-2009-0011-0002 | NRCS | Cooperative Conservation Partnership Initiative NRCS-2009-0011 | Cooperative Conservation Partners Initiative; Wetlands Reserve Enhancement Program | Notice | 2010-03-02T05:00:00Z | 2010 | 3 | 2010-03-02T05:00:00Z | 2011-04-12T16:02:28Z | 2010-04275 | 0 | 0 | 0900006480ab1ede | ||
| NRCS-2009-0011-0001 | NRCS | Cooperative Conservation Partnership Initiative NRCS-2009-0011 | Cooperative Conservation Partnership Initiative | Notice | 2009-03-10T04:00:00Z | 2009 | 3 | 2009-03-10T04:00:00Z | 2009-04-10T03:59:59Z | 2011-04-12T14:51:13Z | E9-05089 | 0 | 0 | 0900006480902208 |
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;