documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "FHFA", document_type = "Rule" and posted_year = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FHFA-2021-0024-0001 | FHFA | 2022-2024 Single-Family and 2022 Multifamily Enterprise Housing Goals | Rule | 2021-12-28T05:00:00Z | 2021 | 12 | 2021-12-28T05:00:00Z | 2021-12-28T12:50:08Z | 2021-28168 | 0 | 0 | 0900006484efe0ad | |||
| FHFA-2021-0022-0001 | FHFA | Credit Risk Retention: Determination of Review | Rule | 2021-12-20T05:00:00Z | 2021 | 12 | 2021-12-20T05:00:00Z | 2021-12-20T12:40:53Z | 2021-27561 | 0 | 0 | 0900006484ed624d | |||
| FHFA-2021-0011-0001 | FHFA | Policy Statement on Fair Lending | Rule | 2021-07-09T04:00:00Z | 2021 | 7 | 2021-07-09T04:00:00Z | 2021-09-08T03:59:59Z | 2021-07-09T11:57:42Z | 2021-14438 | 0 | 0 | 0900006484bdf221 | ||
| FHFA-2021-0009-0001 | FHFA | Resolution Planning | Rule | 2021-05-04T04:00:00Z | 2021 | 5 | 2021-05-04T04:00:00Z | 2021-05-04T11:47:52Z | 2021-09287 | 0 | 0 | 0900006484aca91e | |||
| FHFA-2021-0008-0001 | FHFA | Orders: Reporting by Regulated Entities of Stress Testing Results as of December 31, 2020; Summary Instructions and Guidance | Rule | 2021-04-09T04:00:00Z | 2021 | 4 | 2021-04-09T04:00:00Z | 2021-04-09T11:47:57Z | 2021-07345 | 0 | 0 | 0900006484aa1306 | |||
| FHFA-2021-0004-0001 | FHFA | Rules of Practice and Procedure; Civil Money Penalty Inflation Adjustment | Rule | 2021-01-29T05:00:00Z | 2021 | 1 | 2021-01-29T05:00:00Z | 2021-01-29T12:42:23Z | 2021-01576 | 0 | 0 | 0900006484a0b5b8 |
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;