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 = "Notice" and posted_year = 2011 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, 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-0035-0001 | FHFA | Revisions to Enterprise Public Use Database, etc. | Notice | 2011-12-13T05:00:00Z | 2011 | 12 | 2011-12-13T05:00:00Z | 2011-12-13T13:21:16Z | 2011-31946 | 0 | 0 | 0900006480f812c0 | |||
| FHFA-2011-0032-0001 | FHFA | Federal Home Loan Bank Members Selected for Community Support Review | Notice | 2011-11-10T05:00:00Z | 2011 | 11 | 2011-11-10T05:00:00Z | 2011-11-10T13:36:26Z | 2011-29164 | 0 | 0 | 0900006480f69c5c | |||
| FHFA-2011-0031-0001 | FHFA | Orders: Revisions to Enterprise Public Use Database Incorporating High-Cost Single-Family Securitized Loan Data Fields, etc. | Notice | 2011-09-28T04:00:00Z | 2011 | 9 | 2011-09-28T04:00:00Z | 2011-09-28T13:04:13Z | 2011-24791 | 0 | 0 | 0900006480f400aa | |||
| FHFA-2011-0029-0001 | FHFA | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2011-08-26T04:00:00Z | 2011 | 8 | 2011-08-26T04:00:00Z | 2011-09-27T03:59:59Z | 2011-08-26T13:40:37Z | 2011-21834 | 0 | 0 | 0900006480ef40a1 | ||
| FHFA-2011-0026-0001 | FHFA | Termination of Federal Home Loan Bank Resolution Funding Corporation Obligation | Notice | 2011-08-10T04:00:00Z | 2011 | 8 | 2011-08-10T04:00:00Z | 2011-08-10T14:39:30Z | 2011-20311 | 0 | 0 | 0900006480edcb3f | |||
| FHFA-2011-0020-0001 | FHFA | Federal Home Loan Bank Members Selected for Community Support Review | Notice | 2011-06-17T04:00:00Z | 2011 | 6 | 2011-06-17T04:00:00Z | 2011-06-17T12:31:00Z | 2011-15083 | 0 | 0 | 0900006480e52056 | |||
| FHFA-2011-0017-0001 | FHFA | Privacy Act; Systems of Records | Notice | 2011-06-08T04:00:00Z | 2011 | 6 | 2011-06-08T04:00:00Z | 2011-07-09T03:59:59Z | 2011-06-08T13:16:30Z | 2011-14057 | 0 | 0 | 0900006480e400f1 | ||
| FHFA-2011-0016-0001 | FHFA | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2011-05-25T04:00:00Z | 2011 | 5 | 2011-05-25T04:00:00Z | 2011-07-26T03:59:59Z | 2011-05-25T13:18:09Z | 2011-12686 | 0 | 0 | 0900006480e31ba3 | ||
| FHFA-2011-0008-0001 | FHFA | Federal Home Loan Bank Members Selected for Community Support Review: | Notice | 2011-03-04T05:00:00Z | 2011 | 3 | 2011-03-04T05:00:00Z | 2011-03-04T13:39:21Z | 2011-04979 | 0 | 0 | 0900006480bff94a | |||
| FHFA-2011-0006-0001 | FHFA | Privacy Act; Systems of Records | Notice | 2011-03-02T05:00:00Z | 2011 | 3 | 2011-03-02T05:00:00Z | 2011-04-02T03:59:59Z | 2011-03-02T13:46:10Z | 2011-04624 | 0 | 0 | 0900006480bfcb91 | ||
| FHFA-2011-0002-0001 | FHFA | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2011-01-28T05:00:00Z | 2011 | 1 | 2011-01-28T05:00:00Z | 2011-03-29T03:59:59Z | 2011-01-28T13:52:12Z | 2011-01825 | 0 | 0 | 0900006480bd5132 | ||
| FHFA-2011-0001-0001 | FHFA | Annual Adjustment of Cap on Average Total Assets that Defines Community Financial Institutions | Notice | 2011-01-19T05:00:00Z | 2011 | 1 | 2011-01-19T05:00:00Z | 2011-01-19T13:16:10Z | 2011-00991 | 0 | 0 | 0900006480bcde4d |
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;