documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FSA_FRDOC_0001" and document_type = "Proposed Rule" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FSA_FRDOC_0001-0320 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Rural Development Environmental Regulation for Rural Infrastructure Projects | Proposed Rule | 2018-11-23T05:00:00Z | 2018 | 11 | 2018-11-23T05:00:00Z | 2018-12-25T04:59:59Z | 2018-12-20T02:02:39Z | 2018-25522 | 0 | 0 | 09000064838f5b1d | |
| FSA_FRDOC_0001-0232 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Eliminate the 6-Day Reservation Period Requirement for Rural Development Obligations | Proposed Rule | 2014-09-18T04:00:00Z | 2014 | 9 | 2014-09-18T04:00:00Z | 2014-11-18T04:59:59Z | 2014-09-18T12:27:46Z | 2014-21702 | 0 | 0 | 090000648187b5d3 | |
| FSA_FRDOC_0001-0230 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Environmental Policies and Procedures: Compliance with the National Environmental Policy Act and Related Authorities | Proposed Rule | 2014-09-03T04:00:00Z | 2014 | 9 | 2014-09-03T04:00:00Z | 2014-12-03T04:59:59Z | 2015-03-29T02:31:05Z | 2014-20836 | 0 | 0 | 0900006481857aaa | |
| FSA_FRDOC_0001-0225 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Intermediary Relending Program | Proposed Rule | 2014-06-03T04:00:00Z | 2014 | 6 | 2014-06-03T04:00:00Z | 2014-08-05T03:59:59Z | 2014-08-03T01:04:45Z | 2014-12632 | 0 | 0 | 090000648172580f | |
| FSA_FRDOC_0001-0220 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Environmental Policies and Procedures | Proposed Rule | 2014-04-02T04:00:00Z | 2014 | 4 | 2014-04-02T04:00:00Z | 2014-05-08T03:59:59Z | 2014-04-02T12:40:24Z | 2014-07236 | 0 | 0 | 0900006481697ae2 | |
| FSA_FRDOC_0001-0216 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Methodology and Formulas for Allocation of Loan and Grant Program Funds | Proposed Rule | 2014-03-18T04:00:00Z | 2014 | 3 | 2014-03-18T04:00:00Z | 2014-05-20T03:59:59Z | 2014-05-17T01:04:56Z | 2014-05491 | 0 | 0 | 090000648166c373 | |
| FSA_FRDOC_0001-0214 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Environmental Policies and Procedures | Proposed Rule | 2014-02-04T05:00:00Z | 2014 | 2 | 2014-02-04T05:00:00Z | 2014-04-08T03:59:59Z | 2015-03-29T01:59:57Z | 2014-00220 | 0 | 0 | 0900006481545cae | |
| FSA_FRDOC_0001-0166 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Single Family Housing Guaranteed Loan Program | Proposed Rule | 2011-10-28T04:00:00Z | 2011 | 10 | 2011-10-28T04:00:00Z | 2011-12-28T04:59:59Z | 2014-01-18T17:21:52Z | 2011-27945 | 0 | 0 | 0900006480f5ed5b | |
| FSA_FRDOC_0001-0163 | FSA | Recently Posted FSA Rules and Notices. FSA_FRDOC_0001 | Retrospective Review under E.O. 13563; Improving Common Acreage Reporting Processes | Proposed Rule | 2011-07-19T04:00:00Z | 2011 | 7 | 2011-07-19T04:00:00Z | 2011-09-20T03:59:59Z | 2014-01-17T21:38:11Z | 2011-17923 | 0 | 0 | 0900006480ec6197 |
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;