documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "NRCS-2019-0006" 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)
document_type 2
agency_id 1
- NRCS 5
| 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-2019-0006-0075 | NRCS | Agricultural Conservation Easement Program NRCS-2019-0006 | ACEP RIA 1 7 2021 | Supporting & Related Material | 2021-02-11T05:00:00Z | 2021 | 2 | 2021-02-11T14:50:00Z | 0 | 0 | 0900006484a328ea | ||||
| NRCS-2019-0006-0074 | NRCS | Agricultural Conservation Easement Program NRCS-2019-0006 | Agricultural Conservation Easement Program | Rule | 2021-02-04T05:00:00Z | 2021 | 2 | 2021-02-04T05:00:00Z | 2021-02-04T20:07:21Z | 2021-02268 | 0 | 0 | 0900006484a1b992 | ||
| NRCS-2019-0006-0013 | NRCS | Agricultural Conservation Easement Program NRCS-2019-0006 | Agricultural Conservation Easement Program | Rule | 2020-01-24T05:00:00Z | 2020 | 1 | 2020-01-24T05:00:00Z | 2020-03-21T03:59:59Z | 2020-03-22T01:01:45Z | 2020-01066 | 0 | 0 | 09000064842e7be5 | |
| NRCS-2019-0006-0002 | NRCS | Agricultural Conservation Easement Program NRCS-2019-0006 | Agricultural Conservation Easement Program (ACEP) Regulatory Impact Analysis (RIA) 12 10 2019 | Supporting & Related Material | Final Economic Impact Analysis | 2020-01-07T05:00:00Z | 2020 | 1 | 2021-02-11T14:49:35Z | 0 | 0 | 09000064842779ab | |||
| NRCS-2019-0006-0001 | NRCS | Agricultural Conservation Easement Program NRCS-2019-0006 | Agricultural Conservation Easement Program | Rule | 2020-01-06T05:00:00Z | 2020 | 1 | 2020-01-06T05:00:00Z | 2020-03-07T04:59:59Z | 2020-03-08T03:01:26Z | 2019-27883 | 0 | 0 | 090000648426ec45 |
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;