documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "RHS", document_type = "Rule" and posted_year = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, 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-15-NONE-0001-0001 | RHS | Federal Awarding Agency Regulatory Implementation of Office of Management and Budget’s Uniform Administrative Requirements, Cost Principles, and Audit Requirements for Federal Awards RHS-15-NONE-0001 | Uniform Administrative Requirements, Cost Principles, and Audit Requirements for Federal Awards: Federal Awarding Agency Regulatory Implementation | Rule | 2014-12-19T05:00:00Z | 2014 | 12 | 2014-12-19T05:00:00Z | 2015-02-18T04:59:59Z | 2015-01-05T17:51:33Z | 2014-28697 | 0 | 0 | 0900006481985fb0 | |
| RHS-14-SFH-0032-0001 | RHS | Direct Single Family Housing Loans and Grants RHS-14-SFH-0032 | Direct Single Family Housing Loans and Grants | Rule | 2014-12-15T05:00:00Z | 2014 | 12 | 2014-12-15T05:00:00Z | 2014-12-17T15:40:10Z | 2014-29281 | 0 | 0 | 090000648197660e | ||
| RHS-14-NONE-0029-0001 | RHS | Methodology and Formulas for Allocation of Loan and Grant Program Funds RHS-14-NONE-0029 | Methodology and Formulas for Allocation of Loan and Grant Program Funds | Rule | 2014-09-19T04:00:00Z | 2014 | 9 | 2014-10-22T14:46:11Z | 2014-22309 | 0 | 0 | 090000648187e8f9 | |||
| RHS-14-NONE-0030-0002 | 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 | Rule | 2014-09-18T04:00:00Z | 2014 | 9 | 2014-09-18T04:00:00Z | 2014-11-18T04:59:59Z | 2014-10-22T15:34:33Z | 2014-21704 | 0 | 0 | 090000648187b51a | |
| RHS-14-SFH-0013-0004 | RHS | Single Family Housing Direct Loan Program RHS-14-SFH-0013 | Single Family Housing Guaranteed Loan Program; Correction | Rule | 2014-08-22T04:00:00Z | 2014 | 8 | 2014-08-22T04:00:00Z | 2014-10-22T13:17:03Z | 2014-19958 | 0 | 0 | 090000648183b322 | ||
| RHS-14-NONE-0015-0002 | RHS | Intermediary Relending Program RHS-14-NONE-0015 | Intermediary Relending Program | Rule | 2014-06-03T04:00:00Z | 2014 | 6 | 2014-06-03T04:00:00Z | 2014-06-04T20:01:48Z | 2014-12633 | 0 | 0 | 0900006481725d75 | ||
| RHS-14-SFH-0013-0002 | RHS | Single Family Housing Direct Loan Program RHS-14-SFH-0013 | Direct Single Family Housing Loans and Grants | Rule | 2014-05-20T04:00:00Z | 2014 | 5 | 2014-05-20T04:00:00Z | 2014-07-22T03:59:59Z | 2014-06-24T01:03:21Z | 2014-11610 | 0 | 0 | 0900006481705753 |
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;