documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "RHS", document_type = "Proposed Rule" and posted_year = 2014 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| RHS-14-NONE-0030-0001 | RHS | Eliminate the 6-Day Reservation Period Requirement for Rural Development Obligations RHS-14-NONE-0030 | 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-11-02T01:10:58Z | 2014-21702 | 0 | 0 | 090000648187b649 | |
| RHS-14-NONE-0023-0001 | RHS | Environmental Policies and Procedures; Compliance with the National Environmental Policy Act and Related Authorities - FSA RHS-14-NONE-0023 | 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-08T13:57:16Z | 2014-20836 | 0 | 0 | 0900006481857dc9 | |||
| RHS-14-MFH-0021-0001 | RHS | Reserve Account RHS-14-MFH-0021 | Reserve Account | Proposed Rule | 2014-08-13T04:00:00Z | 2014 | 8 | 2014-08-13T04:00:00Z | 2014-10-15T03:59:59Z | 2014-08-28T01:03:41Z | 2014-19086 | 0 | 0 | 090000648181f15e | |
| RHS-14-NONE-0015-0001 | RHS | Intermediary Relending Program RHS-14-NONE-0015 | Intermediary Relending Program | Proposed Rule | 2014-06-03T04:00:00Z | 2014 | 6 | 2014-06-03T04:00:00Z | 2014-06-04T19:59:08Z | 2014-12632 | 0 | 0 | 0900006481725e28 | ||
| RHS-14-SFH-0013-0001 | RHS | Single Family Housing Direct Loan Program RHS-14-SFH-0013 | Single Family Housing Direct Loan Program | Proposed Rule | 2014-05-20T04:00:00Z | 2014 | 5 | 2014-05-20T04:00:00Z | 2014-07-22T03:59:59Z | 2014-06-25T01:05:05Z | 2014-11607 | 0 | 0 | 090000648170565a | |
| RHS-14-NONE-0011-0001 | RHS | Environmental Policies and Procedures RHS-14-NONE-0011 | Environmental Policies and Procedures | Proposed Rule | 2014-04-02T04:00:00Z | 2014 | 4 | 2014-04-02T04:00:00Z | 2014-05-08T03:59:59Z | 2014-05-07T01:02:30Z | 2014-07236 | 0 | 0 | 09000064816975ee | |
| RHS-14-NONE-0010-0001 | RHS | Methodology and Formulas for Allocation of Loan and Grant Program Funds RHS-14-NONE-0010 | 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-20T01:02:08Z | 2014-05491 | 0 | 0 | 090000648166c47a | |
| RHS-14-NONE-0005-0001 | RHS | Environmental Policies and Procedures RHS-14-NONE-0005 | Environmental Policies and Procedures | Proposed Rule | 2014-02-04T05:00:00Z | 2014 | 2 | 2014-02-04T05:00:00Z | 2014-04-08T03:59:59Z | 2014-04-08T01:05:13Z | 2014-00220 | 0 | 0 | 0900006481545ce4 |
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;