documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "FHFA", document_type = "Proposed Rule" and posted_year = 2012 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-2012-0032-0001 | FHFA | Rules of Practice and Procedure: Enterprise and Federal Home Loan Bank Housing Goals Related Enforcement Amendment | Proposed Rule | 2012-12-05T05:00:00Z | 2012 | 12 | 2012-12-05T05:00:00Z | 2013-01-23T04:59:59Z | 2012-12-05T14:11:57Z | 2012-29419 | 0 | 0 | 090000648117f6c9 | ||
| FHFA-2012-0029-0001 | FHFA | Stress Testing of Regulated Entities | Proposed Rule | 2012-11-06T05:00:00Z | 2012 | 11 | 2012-11-06T05:00:00Z | 2012-12-05T04:59:59Z | 2012-11-06T13:57:38Z | 2012-27024 | 0 | 0 | 090000648115f31d | ||
| FHFA-2012-0025-0001 | FHFA | Stress Testing of Regulated Entities | Proposed Rule | 2012-10-05T04:00:00Z | 2012 | 10 | 2012-10-05T04:00:00Z | 2012-11-06T04:59:59Z | 2012-10-05T12:45:59Z | 2012-24637 | 0 | 0 | 0900006481135a92 | ||
| FHFA-2012-0024-0001 | FHFA | Margin and Capital Requirements for Covered Swap Entities | Proposed Rule | 2012-10-02T04:00:00Z | 2012 | 10 | 2012-10-02T04:00:00Z | 2012-11-27T04:59:59Z | 2012-10-02T13:11:02Z | 2012-24276 | 0 | 0 | 0900006481130e41 | ||
| FHFA-2012-0017-0001 | FHFA | Enterprise Underwriting Standards | Proposed Rule | 2012-07-12T04:00:00Z | 2012 | 7 | 2012-07-12T04:00:00Z | 2012-09-14T03:59:59Z | 2012-07-12T13:27:16Z | 2012-17049 | 0 | 0 | 0900006481088f99 | ||
| FHFA-2012-0013-0001 | FHFA | Enterprise Underwriting Standards | Proposed Rule | 2012-06-15T04:00:00Z | 2012 | 6 | 2012-06-15T04:00:00Z | 2012-07-31T03:59:59Z | 2012-06-15T13:19:07Z | 2012-14724 | 0 | 0 | 090000648104c38f | ||
| FHFA-2012-0012-0001 | FHFA | 2012-2014 Enterprise Housing Goals | Proposed Rule | 2012-06-11T04:00:00Z | 2012 | 6 | 2012-06-11T04:00:00Z | 2012-07-27T03:59:59Z | 2012-06-11T13:31:50Z | 2012-14105 | 0 | 0 | 0900006481040a24 | ||
| FHFA-2012-0003-0001 | FHFA | Mortgage Assets Affected by PACE Programs | Proposed Rule | 2012-01-26T05:00:00Z | 2012 | 1 | 2012-01-26T05:00:00Z | 2012-03-27T03:59:59Z | 2012-01-26T13:53:58Z | 2012-01345 | 0 | 0 | 0900006480fa556b |
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;