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 = 2016 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FHFA-2016-0034-0001 | FHFA | Enterprise Duty to Serve Underserved Markets | Rule | 2016-12-29T05:00:00Z | 2016 | 12 | 2016-12-29T05:00:00Z | 2016-12-29T13:07:34Z | 2016-30284 | 0 | 0 | 090000648243d1ff | |||
| FHFA-2016-0029-0001 | FHFA | Federal Home Loan Bank New Business Activities | Rule | 2016-12-19T05:00:00Z | 2016 | 12 | 2016-12-19T05:00:00Z | 2016-12-19T12:49:55Z | 2016-30245 | 0 | 0 | 090000648242343f | |||
| FHFA-2016-0028-0001 | FHFA | Acquired Member Assets | Rule | 2016-12-19T05:00:00Z | 2016 | 12 | 2016-12-19T05:00:00Z | 2016-12-19T12:49:52Z | 2016-30161 | 0 | 0 | 090000648242343b | |||
| FHFA-2016-0025-0001 | FHFA | Technical and Conforming Changes and Corrections | Rule | 2016-11-02T04:00:00Z | 2016 | 11 | 2016-11-02T04:00:00Z | 2016-11-02T12:11:44Z | 2016-26022 | 0 | 0 | 0900006482369356 | |||
| FHFA-2016-0014-0001 | FHFA | Margin and Capital Requirements for Covered Swap Entities | Rule | 2016-08-02T04:00:00Z | 2016 | 8 | 2016-08-02T04:00:00Z | 2016-08-02T12:20:58Z | 2016-18193 | 0 | 0 | 090000648214c5e7 | |||
| FHFA-2016-0011-0001 | FHFA | Implementation of the Program Fraud Civil Remedies Act of 1986 | Rule | 2016-07-01T04:00:00Z | 2016 | 7 | 2016-07-01T04:00:00Z | 2016-08-02T03:59:59Z | 2016-07-01T12:18:48Z | 2016-15620 | 0 | 0 | 090000648208071b | ||
| FHFA-2016-0012-0001 | FHFA | Rules of Practice and Procedure; Civil Money Penalty Inflation Adjustment | Rule | 2016-07-01T04:00:00Z | 2016 | 7 | 2016-07-01T04:00:00Z | 2016-08-02T03:59:59Z | 2016-07-01T12:19:13Z | 2016-15619 | 0 | 0 | 09000064820807ab | ||
| FHFA-2016-0008-0001 | FHFA | Enterprise Housing Goals and Mission; CFR Correction | Rule | 2016-05-04T04:00:00Z | 2016 | 5 | 2016-05-04T04:00:00Z | 2016-05-04T13:01:44Z | 2016-10521 | 0 | 0 | 0900006481fa8698 | |||
| FHFA-2016-0007-0001 | FHFA | Orders: Reporting by Regulated Entities of Stress Testing Results as of December 31, 2015; Summary Instructions and Guidance | Rule | 2016-04-18T04:00:00Z | 2016 | 4 | 2016-04-18T04:00:00Z | 2016-04-18T12:07:03Z | 2016-08903 | 0 | 0 | 0900006481f7066e | |||
| FHFA-2016-0002-0001 | FHFA | Practice and Procedure: Civil Money Penalty Inflation Adjustment | Rule | 2016-02-22T05:00:00Z | 2016 | 2 | 2016-02-22T05:00:00Z | 2016-02-22T13:31:48Z | 2016-03631 | 0 | 0 | 0900006481e7bdf0 | |||
| FHFA-2016-0001-0001 | FHFA | Members of Federal Home Loan Banks | Rule | 2016-01-20T05:00:00Z | 2016 | 1 | 2016-01-20T05:00:00Z | 2016-01-20T13:54:44Z | 2016-00761 | 0 | 0 | 0900006481e1ff2a |
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;