documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where agency_id = "FHFA", document_type = "Rule" and posted_year = 2022 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), 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-2022-0028-0001 | FHFA | Civil Monetary Penalty Inflation Adjustment | Rule | 2022-12-29T05:00:00Z | 2022 | 12 | 2022-12-29T05:00:00Z | 2022-12-29T14:03:44Z | 2022-28161 | 0 | 0 | 090000648555c7e9 | |||
| FHFA-2022-0027-0001 | FHFA | Prior Approval for Enterprise Products | Rule | 2022-12-27T05:00:00Z | 2022 | 12 | 2022-12-27T05:00:00Z | 2022-12-27T13:06:48Z | 2022-27942 | 0 | 0 | 0900006485556b92 | |||
| FHFA-2022-0026-0001 | FHFA | 2023-2024 Multifamily Enterprise Housing Goals | Rule | 2022-12-23T05:00:00Z | 2022 | 12 | 2022-12-23T05:00:00Z | 2022-12-23T12:55:32Z | 2022-27467 | 0 | 0 | 0900006485551249 | |||
| FHFA-2022-0014-0001 | FHFA | Enterprise Regulatory Capital Framework-Public Disclosures for the Standardized Approach; Correction | Rule | 2022-06-27T04:00:00Z | 2022 | 6 | 2022-06-27T04:00:00Z | 2022-06-27T12:16:32Z | 2022-13544 | 0 | 0 | 090000648519eff5 | |||
| FHFA-2022-0013-0001 | FHFA | Capital Planning and Stress Capital Buffer Determination | Rule | 2022-06-03T04:00:00Z | 2022 | 6 | 2022-06-03T04:00:00Z | 2022-06-03T12:14:09Z | 2022-11928 | 0 | 0 | 090000648512a008 | |||
| FHFA-2022-0011-0001 | FHFA | Enterprise Regulatory Capital Framework: Public Disclosures for the Standardized Approach | Rule | 2022-06-02T04:00:00Z | 2022 | 6 | 2022-06-02T04:00:00Z | 2022-06-02T11:52:24Z | 2022-11582 | 0 | 0 | 0900006485124b42 | |||
| FHFA-2022-0010-0001 | FHFA | Affordable Housing Program; Technical Revisions | Rule | 2022-06-01T04:00:00Z | 2022 | 6 | 2022-06-01T04:00:00Z | 2022-06-01T12:08:47Z | 2022-11543 | 0 | 0 | 090000648511e3a8 | |||
| FHFA-2022-0007-0001 | FHFA | Civil Monetary Penalty Inflation Adjustment; Correction | Rule | 2022-04-06T04:00:00Z | 2022 | 4 | 2022-04-06T04:00:00Z | 2022-04-06T12:13:41Z | 2022-07176 | 0 | 0 | 0900006484ffb25b | |||
| FHFA-2022-0005-0001 | FHFA | Orders: Reporting by Regulated Entities of Stress Testing Results as of December 31, 2021; Summary Instructions and Guidance | Rule | 2022-03-16T04:00:00Z | 2022 | 3 | 2022-03-16T04:00:00Z | 2022-03-16T12:05:54Z | 2022-05437 | 0 | 0 | 0900006484fcc0f3 | |||
| FHFA-2022-0004-0001 | FHFA | Enterprise Regulatory Capital Framework-Prescribed Leverage Buffer Amount and Credit Risk Transfer | Rule | 2022-03-16T04:00:00Z | 2022 | 3 | 2022-03-16T04:00:00Z | 2022-03-16T12:05:44Z | 2022-04529 | 0 | 0 | 0900006484fcc0ec | |||
| FHFA-2022-0002-0001 | FHFA | Civil Money Penalty Inflation Adjustment | Rule | 2022-01-12T05:00:00Z | 2022 | 1 | 2022-01-12T05:00:00Z | 2022-01-12T12:50:20Z | 2022-00361 | 0 | 0 | 0900006484f1b633 |
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;