documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "NRCS", document_type = "Notice" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, 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_FRDOC_0001-0258 | NRCS | Recently Posted NRCS Rules and Notices. NRCS_FRDOC_0001 | Environmental Assessments; Availability, etc.: Restoration of Wetlands, Coastal, and Nearshore Habitats; Habitat Projects on Federally Managed Lands; Nutrient Reduction (Nonpoint Source); Sea Turtles; Marine Mammals; Birds; and Oysters and Finding of No Significant Impact | Notice | 2018-09-18T04:00:00Z | 2018 | 9 | 2018-09-18T04:00:00Z | 2018-09-18T13:43:18Z | 2018-20168 | 0 | 0 | 090000648370f88c | ||
| NRCS-2018-0006-0001 | NRCS | Notice of Adoption of Standard Methods used for Soil Health Indicator Measurements NRCS-2018-0006 | Recommended Standard Methods for use as Soil Health Indicator Measurements | Notice | 2018-09-14T04:00:00Z | 2018 | 9 | 2018-09-14T04:00:00Z | 2018-12-14T04:59:59Z | 2018-12-15T02:02:57Z | 2018-19985 | 0 | 0 | 09000064836ee5cd | |
| NRCS-2018-0005-0002 | NRCS | Notice of Proposed Changes to the National Handbook of Conservation Practices for the Natural Resources Conservation Service NRCS-2018-0005 | Proposed Changes to National Handbook of Conservation Practices | Notice | 2018-09-05T04:00:00Z | 2018 | 9 | 2018-09-05T04:00:00Z | 2018-10-06T03:59:59Z | 2018-10-10T13:33:14Z | 2018-19145 | 0 | 0 | 09000064836a5540 | |
| NRCS-2018-0005-0001 | NRCS | Notice of Proposed Changes to the National Handbook of Conservation Practices for the Natural Resources Conservation Service NRCS-2018-0005 | Proposed Changes to National Handbook of Conservation Practices for Natural Resources Conservation Service | Notice | 2018-08-24T04:00:00Z | 2018 | 8 | 2018-08-24T04:00:00Z | 2018-09-25T03:59:59Z | 2018-10-10T13:32:21Z | 2018-18296 | 0 | 0 | 090000648364f674 | |
| NRCS-2018-0003-0001 | NRCS | Notice of Availability of the Alabama Trustee Implementation Group Draft Restoration Plan II/Environmental Assessment: Wetlands, Coastal and Nearshore Habitat; Habitat Projects on Federally Managed Lands; Nutrient Reduction (Nonpoint Source); Sea Turtles; Marine Mammals; Birds and Oysters NRCS-2018-0003 | Environmental Assessments; Availability, etc.: Alabama Trustee Implementation Group Draft Restoration Plan II | Notice | 2018-04-05T04:00:00Z | 2018 | 4 | 2018-04-05T04:00:00Z | 2018-05-05T03:59:59Z | 2018-05-06T01:01:00Z | 2018-06929 | 0 | 0 | 090000648309765a | |
| NRCS-2017-0004-0001 | NRCS | South Branch Potomac River Subwatershed of the Potomac River Watershed, Highland County, Virginia and Pendleton and Grant counties, West Virginia NRCS-2017-0004 | Deauthorization of Federal Funding: South Branch Potomac River Subwatershed of Potomac River Watershed, Highland County, VA, and Pendleton and Grant Counties, WV | Notice | 2018-02-14T05:00:00Z | 2018 | 2 | 2018-02-14T05:00:00Z | 2018-04-06T13:28:43Z | 2018-02944 | 0 | 0 | 0900006482f30590 | ||
| NRCS-2018-0001-0001 | NRCS | Notice of Request for an Extension of Existing Information Collection Package NRCS-2018-0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2018-02-06T05:00:00Z | 2018 | 2 | 2018-02-06T05:00:00Z | 2018-04-06T13:25:44Z | 2018-02329 | 0 | 0 | 0900006482ef08e8 |
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;