documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "FHFA", document_type = "Rule" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FHFA-2020-0028-0001 | FHFA | 2021 Enterprise Housing Goals | Rule | 2020-12-21T05:00:00Z | 2020 | 12 | 2020-12-21T05:00:00Z | 2020-12-21T12:47:53Z | 2020-28083 | 0 | 0 | 09000064849aeee0 | |||
| FHFA-2020-0026-0001 | FHFA | Enterprise Regulatory Capital Framework | Rule | 2020-12-17T05:00:00Z | 2020 | 12 | 2020-12-17T05:00:00Z | 2020-12-17T13:19:14Z | 2020-25814 | 0 | 0 | 09000064849a45ba | |||
| FHFA-2020-0020-0001 | FHFA | Federal Home Loan Bank Housing Goals Amendments | Rule | 2020-07-22T04:00:00Z | 2020 | 7 | 2020-07-22T04:00:00Z | 2020-07-22T11:53:24Z | 2020-15076 | 0 | 0 | 0900006484792709 | |||
| FHFA-2020-0018-0001 | FHFA | Margin and Capital Requirements for Covered Swap Entities | Rule | 2020-07-01T04:00:00Z | 2020 | 7 | 2020-07-01T04:00:00Z | 2020-07-01T12:20:53Z | 2020-14097 | 0 | 0 | 090000648471e29c | |||
| FHFA-2020-0019-0001 | FHFA | Margin and Capital Requirements for Covered Swap Entities | Rule | 2020-07-01T04:00:00Z | 2020 | 7 | 2020-07-01T04:00:00Z | 2020-09-01T03:59:59Z | 2020-07-01T12:24:39Z | 2020-14094 | 0 | 0 | 090000648471e483 | ||
| FHFA-2020-0015-0001 | FHFA | Federal Home Loan Bank Housing Goals Amendments | Rule | 2020-06-25T04:00:00Z | 2020 | 6 | 2020-06-25T04:00:00Z | 2020-06-25T12:04:40Z | 2020-12345 | 0 | 0 | 0900006484709fa8 | |||
| FHFA-2020-0011-0001 | FHFA | Orders: Reporting by Regulated Entities of Stress Testing Results as of December 31, 2019; Summary Instructions and Guidance | Rule | 2020-04-27T04:00:00Z | 2020 | 4 | 2020-04-27T04:00:00Z | 2020-04-27T12:26:04Z | 2020-08146 | 0 | 0 | 09000064844f5594 | |||
| FHFA-2020-0007-0001 | FHFA | Stress Testing of Regulated Entities | Rule | 2020-03-24T04:00:00Z | 2020 | 3 | 2020-03-24T04:00:00Z | 2020-03-24T11:56:04Z | 2020-05476 | 0 | 0 | 0900006484463088 | |||
| FHFA-2020-0005-0001 | FHFA | Rules of Practice and Procedure; Civil Money Penalty Inflation Adjustment | Rule | 2020-01-28T05:00:00Z | 2020 | 1 | 2020-01-28T05:00:00Z | 2020-01-28T12:46:08Z | 2020-01025 | 0 | 0 | 09000064842fa9db |
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;