documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "NRCS-2024-0008" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, 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-2024-0008-0005 | NRCS | Proposed Changes to Section 1 of the Field Office Technical Guide for Several States NRCS-2024-0008 | RI_SOSM_2024_Final | Supporting & Related Material | 2024-07-25T04:00:00Z | 2024 | 7 | 2024-07-25T16:07:15Z | 0 | 0 | 0900006486605d08 | ||||
| NRCS-2024-0008-0011 | NRCS | Proposed Changes to Section 1 of the Field Office Technical Guide for Several States NRCS-2024-0008 | PA_SOSM_2024_Final | Supporting & Related Material | 2024-07-25T04:00:00Z | 2024 | 7 | 2024-07-25T16:20:28Z | 0 | 0 | 0900006486605d20 | ||||
| NRCS-2024-0008-0003 | NRCS | Proposed Changes to Section 1 of the Field Office Technical Guide for Several States NRCS-2024-0008 | KY_SOSM_2024_Final | Supporting & Related Material | 2024-07-25T04:00:00Z | 2024 | 7 | 2024-07-25T16:07:03Z | 0 | 0 | 09000064866058f9 | ||||
| NRCS-2024-0008-0004 | NRCS | Proposed Changes to Section 1 of the Field Office Technical Guide for Several States NRCS-2024-0008 | NC_SC_SOSM_2024_Final | Supporting & Related Material | 2024-07-25T04:00:00Z | 2024 | 7 | 2024-07-25T16:07:09Z | 0 | 0 | 09000064866058fd | ||||
| NRCS-2024-0008-0002 | NRCS | Proposed Changes to Section 1 of the Field Office Technical Guide for Several States NRCS-2024-0008 | CT_SOSM_2024_Final | Supporting & Related Material | 2024-07-25T04:00:00Z | 2024 | 7 | 2024-07-25T16:06:58Z | 0 | 0 | 09000064866058ef | ||||
| NRCS-2024-0008-0010 | NRCS | Proposed Changes to Section 1 of the Field Office Technical Guide for Several States NRCS-2024-0008 | NY_SOSM_2024_Final | Supporting & Related Material | 2024-07-25T04:00:00Z | 2024 | 7 | 2024-07-25T16:19:12Z | 0 | 0 | 0900006486605d1e | ||||
| NRCS-2024-0008-0008 | NRCS | Proposed Changes to Section 1 of the Field Office Technical Guide for Several States NRCS-2024-0008 | MA_SOSM_2024_Final | Supporting & Related Material | 2024-07-25T04:00:00Z | 2024 | 7 | 2024-07-25T16:15:22Z | 0 | 0 | 0900006486605d17 | ||||
| NRCS-2024-0008-0007 | NRCS | Proposed Changes to Section 1 of the Field Office Technical Guide for Several States NRCS-2024-0008 | FL_SOSM_2024_Final | Supporting & Related Material | 2024-07-25T04:00:00Z | 2024 | 7 | 2024-07-25T16:13:23Z | 0 | 0 | 0900006486605d13 | ||||
| NRCS-2024-0008-0006 | NRCS | Proposed Changes to Section 1 of the Field Office Technical Guide for Several States NRCS-2024-0008 | DE_SOSM_2024_Final | Supporting & Related Material | 2024-07-25T04:00:00Z | 2024 | 7 | 2024-07-25T16:11:30Z | 0 | 0 | 0900006486605d11 | ||||
| NRCS-2024-0008-0012 | NRCS | Proposed Changes to Section 1 of the Field Office Technical Guide for Several States NRCS-2024-0008 | VA_SOSM_2024_Final | Supporting & Related Material | 2024-07-25T04:00:00Z | 2024 | 7 | 2024-07-25T16:22:08Z | 0 | 0 | 0900006486605d23 | ||||
| NRCS-2024-0008-0009 | NRCS | Proposed Changes to Section 1 of the Field Office Technical Guide for Several States NRCS-2024-0008 | MD_SOSM_2024_Final | Supporting & Related Material | 2024-07-25T04:00:00Z | 2024 | 7 | 2024-07-25T16:19:04Z | 0 | 0 | 0900006486605d18 | ||||
| NRCS-2024-0008-0001 | NRCS | Proposed Changes to Section 1 of the Field Office Technical Guide for Several States NRCS-2024-0008 | Field Office Technical Guide, Several States; Proposed Revisions | Notice | 2024-07-22T04:00:00Z | 2024 | 7 | 2024-07-22T04:00:00Z | 2024-08-22T03:59:59Z | 2024-08-22T01:01:33Z | 2024-16006 | 0 | 0 | 09000064865fdaf5 |
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;