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 = 2011 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, last_modified, 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-2011-0036-0001 | FHFA | Federal Home Loan Bank Housing Goals: Mortgage Reporting Amendments | Rule | 2011-12-21T05:00:00Z | 2011 | 12 | 2011-12-21T05:00:00Z | 2011-12-21T14:48:30Z | 2011-32644 | 0 | 0 | 0900006480f870cd | |||
| FHFA-2011-0034-0001 | FHFA | Voluntary Mergers of Federal Home Loan Banks | Rule | 2011-11-28T05:00:00Z | 2011 | 11 | 2011-11-28T05:00:00Z | 2011-11-28T13:59:42Z | 2011-30487 | 0 | 0 | 0900006480f7444e | |||
| FHFA-2011-0028-0001 | FHFA | Rules of Practice and Procedure | Rule | 2011-08-26T04:00:00Z | 2011 | 8 | 2011-08-26T04:00:00Z | 2011-08-26T13:35:45Z | 2011-21378 | 0 | 0 | 0900006480ef3f61 | |||
| FHFA-2011-0027-0001 | FHFA | Privacy Act Implementation | Rule | 2011-08-19T04:00:00Z | 2011 | 8 | 2011-08-19T04:00:00Z | 2011-10-19T03:59:59Z | 2011-08-19T12:51:20Z | 2011-21250 | 0 | 0 | 0900006480ee563f | ||
| FHFA-2011-0022-0001 | FHFA | Conservatorship and Receivership | Rule | 2011-06-20T04:00:00Z | 2011 | 6 | 2011-06-20T04:00:00Z | 2011-06-20T13:05:32Z | 2011-15098 | 0 | 0 | 0900006480e69004 | |||
| FHFA-2011-0018-0001 | FHFA | Record Retention for Regulated Entities and Office of Finance | Rule | 2011-06-08T04:00:00Z | 2011 | 6 | 2011-06-08T04:00:00Z | 2011-06-11T17:22:55Z | 2011-14055 | 0 | 0 | 0900006480e40129 | |||
| FHFA-2011-0015-0001 | FHFA | Freedom of Information Act Implementation | Rule | 2011-05-23T04:00:00Z | 2011 | 5 | 2011-05-23T04:00:00Z | 2011-07-23T03:59:59Z | 2011-06-11T17:22:55Z | 2011-12485 | 0 | 0 | 0900006480e30722 | ||
| FHFA-2011-0014-0001 | FHFA | Federal Home Loan Bank Investments | Rule | 2011-05-20T04:00:00Z | 2011 | 5 | 2011-05-20T04:00:00Z | 2011-06-11T17:22:54Z | 2011-12358 | 0 | 0 | 0900006480db8f1d | |||
| FHFA-2011-0010-0001 | FHFA | Federal Home Loan Bank Liabilities | Rule | 2011-04-04T04:00:00Z | 2011 | 4 | 2011-04-04T04:00:00Z | 2011-06-11T17:22:53Z | 2011-07832 | 0 | 0 | 0900006480c1ae20 | |||
| FHFA-2011-0009-0001 | FHFA | Debt Collection | Rule | 2011-03-29T04:00:00Z | 2011 | 3 | 2011-03-29T04:00:00Z | 2011-03-29T12:27:22Z | 2011-07341 | 0 | 0 | 0900006480c12765 | |||
| FHFA-2011-0007-0001 | FHFA | Minimum Capital | Rule | 2011-03-03T05:00:00Z | 2011 | 3 | 2011-03-03T05:00:00Z | 2011-06-11T17:22:53Z | 2011-04413 | 0 | 0 | 0900006480bfe011 | |||
| FHFA-2011-0005-0001 | FHFA | Office of the Ombudsman | Rule | 2011-02-10T05:00:00Z | 2011 | 2 | 2011-02-10T05:00:00Z | 2011-06-11T17:22:52Z | 2011-02845 | 0 | 0 | 0900006480bec168 |
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;