documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where agency_id = "FHFA", document_type = "Rule" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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-2018-0033-0001 | FHFA | Golden Parachute and Indemnification Payments | Rule | 2018-12-20T05:00:00Z | 2018 | 12 | 2018-12-20T05:00:00Z | 2018-12-20T13:02:42Z | 2018-27564 | 0 | 0 | 09000064839b9165 | |||
| FHFA-2018-0032-0001 | FHFA | Miscellaneous Federal Home Loan Bank Operations and Authorities-Financing Corporation Assessments | Rule | 2018-12-07T05:00:00Z | 2018 | 12 | 2018-12-07T05:00:00Z | 2018-12-07T12:49:48Z | 2018-26449 | 0 | 0 | 0900006483958663 | |||
| FHFA-2018-0031-0001 | FHFA | Affordable Housing Program Amendments | Rule | 2018-11-28T05:00:00Z | 2018 | 11 | 2018-11-28T05:00:00Z | 2018-11-28T12:43:36Z | 2018-25635 | 0 | 0 | 09000064839052b5 | |||
| FHFA-2018-0029-0001 | FHFA | Responsibilities of Boards of Directors, Corporate Practices, and Corporate Governance | Rule | 2018-10-19T04:00:00Z | 2018 | 10 | 2018-10-19T04:00:00Z | 2018-10-19T12:06:57Z | 2018-22859 | 0 | 0 | 090000648380ac34 | |||
| FHFA-2018-0027-0001 | FHFA | Federal Home Loan Bank Community Support Program | Rule | 2018-10-16T04:00:00Z | 2018 | 10 | 2018-10-16T04:00:00Z | 2018-10-16T12:04:45Z | 2018-22451 | 0 | 0 | 09000064837eb5eb | |||
| FHFA-2018-0026-0001 | FHFA | Margin and Capital Requirements for Covered Swap Entities | Rule | 2018-10-10T04:00:00Z | 2018 | 10 | 2018-10-10T04:00:00Z | 2018-10-10T12:01:30Z | 2018-22021 | 0 | 0 | 09000064837b54fb | |||
| FHFA-2018-0025-0001 | FHFA | Indemnification Payments | Rule | 2018-10-04T04:00:00Z | 2018 | 10 | 2018-10-04T04:00:00Z | 2018-10-04T11:55:06Z | 2018-21592 | 0 | 0 | 0900006483794f7b | |||
| FHFA-2018-0021-0001 | FHFA | Civil Money Penalty Inflation Adjustments | Rule | 2018-08-29T04:00:00Z | 2018 | 8 | 2018-08-29T04:00:00Z | 2018-08-29T11:57:46Z | 2018-18517 | 0 | 0 | 090000648366c51f | |||
| FHFA-2018-0018-0001 | FHFA | Federal Housing Finance Board Regulations: Repeal and Technical Amendments | Rule | 2018-08-09T04:00:00Z | 2018 | 8 | 2018-08-09T04:00:00Z | 2018-08-09T11:59:48Z | 2018-16972 | 0 | 0 | 09000064835f8bef | |||
| FHFA-2018-0010-0001 | FHFA | Orders: Reporting by Regulated Entities of Stress Testing Results as of December 31, 2017; Summary Instructions and Guidance | Rule | 2018-04-30T04:00:00Z | 2018 | 4 | 2018-04-30T04:00:00Z | 2018-04-30T11:50:16Z | 2018-09072 | 0 | 0 | 090000648320bcef | |||
| FHFA-2018-0003-0001 | FHFA | 2018-2020 Enterprise Housing Goals | Rule | 2018-02-12T05:00:00Z | 2018 | 2 | 2018-02-12T05:00:00Z | 2018-02-12T12:54:16Z | 2018-02649 | 0 | 0 | 0900006482f16620 | |||
| FHFA-2018-0002-0001 | FHFA | Freedom of Information Act Implementation | Rule | 2018-02-09T05:00:00Z | 2018 | 2 | 2018-02-09T05:00:00Z | 2018-02-09T13:38:16Z | 2018-02338 | 0 | 0 | 0900006482f05ff4 |
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;