documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "RHS", document_type = "Rule" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| RHS-12-NONE-0015-0001 | RHS | Federal Deposit Insurance Corporation Limit Change RHS-12-NONE-0015 | Federal Deposit Insurance Corporation Limit Change | Rule | 2012-07-13T04:00:00Z | 2012 | 7 | 2012-07-13T04:00:00Z | 2012-09-12T03:59:59Z | 2012-09-27T12:36:01Z | 2012-17061 | 0 | 0 | 0900006481093509 | |
| RHS-14-NONE-0016-0001 | RHS | Disaster Designation Process RHS-14-NONE-0016 | Disaster Designation Process | Rule | 2012-07-13T04:00:00Z | 2012 | 7 | 2012-07-13T04:00:00Z | 2014-06-06T19:24:22Z | 2012-17137 | 0 | 0 | 09000064810933cc | ||
| RHS-11-NONE-0018-0009 | RHS | Single Family Housing Guaranteed Loan Program RHS-11-NONE-0018 | Single Family Housing Guaranteed Loan Program | Rule | 2012-07-11T04:00:00Z | 2012 | 7 | 2012-07-11T04:00:00Z | 2012-09-27T12:33:47Z | 2012-16864 | 0 | 0 | 0900006481086231 | ||
| RHS-12-MFH-0014-0001 | RHS | Reserve Account RHS-12-MFH-0014 | Reserve Account | Rule | 2012-07-09T04:00:00Z | 2012 | 7 | 2012-07-09T04:00:00Z | 2012-09-27T12:27:22Z | 2012-16731 | 0 | 0 | 0900006481080060 | ||
| RHS-11-CF-0007-0002 | RHS | Community Facility Loans RHS-11-CF-0007 | Community Facility Loans | Rule | 2012-05-18T04:00:00Z | 2012 | 5 | 2012-05-18T04:00:00Z | 2012-06-27T19:17:22Z | 2012-11961 | 0 | 0 | 0900006481013f45 | ||
| RHS-12-SFH-0002-0001 | RHS | Direct Single Family Housing Loans and Grants RHS-12-SFH-0002 | Direct Single Family Housing Loans and Grants | Rule | 2012-01-24T05:00:00Z | 2012 | 1 | 2012-01-24T05:00:00Z | 2012-01-26T13:51:59Z | 2012-01268 | 0 | 0 | 0900006480fa2993 |
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;