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 = "Proposed Rule" and posted_year = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-2014-0025-0001 | FHFA | Federal Home Loan Bank Capital Stock and Capital Plans | Proposed Rule | 2014-10-08T04:00:00Z | 2014 | 10 | 2014-10-08T04:00:00Z | 2014-12-09T04:59:59Z | 2014-10-08T13:07:49Z | 2014-23799 | 0 | 0 | 09000064818b1a7e | ||
| FHFA-2014-0024-0001 | FHFA | Members of Federal Home Loan Banks | Proposed Rule | 2014-10-07T04:00:00Z | 2014 | 10 | 2014-10-07T04:00:00Z | 2015-01-13T04:59:59Z | 2014-10-07T13:35:33Z | 2014-23893 | 0 | 0 | 09000064818af0b1 | ||
| FHFA-2014-0023-0001 | FHFA | Margin and Capital Requirements for Covered Swap Entities | Proposed Rule | 2014-09-24T04:00:00Z | 2014 | 9 | 2014-09-24T04:00:00Z | 2014-11-25T04:59:59Z | 2014-09-24T13:15:06Z | 2014-22001 | 0 | 0 | 090000648188c7f2 | ||
| FHFA-2014-0022-0001 | FHFA | 2015-2017 Enterprise Housing Goals | Proposed Rule | 2014-09-24T04:00:00Z | 2014 | 9 | 2014-09-24T04:00:00Z | 2014-10-21T16:49:17Z | 0 | 0 | 090000648188c6ff | ||||
| FHFA-2014-0021-0001 | FHFA | Members ofFederal Home Loan Banks | Proposed Rule | 2014-09-12T04:00:00Z | 2014 | 9 | 2014-09-12T04:00:00Z | 2014-11-13T04:59:59Z | 2014-09-12T13:04:27Z | 2014-21114 | 0 | 0 | 090000648186d008 | ||
| FHFA-2014-0020-0001 | FHFA | 2015-2017 Enterprise Housing Goals | Proposed Rule | 2014-09-11T04:00:00Z | 2014 | 9 | 2014-09-11T04:00:00Z | 2014-10-29T03:59:59Z | 2014-09-11T13:06:22Z | 2014-21118 | 0 | 0 | 090000648186a7eb | ||
| FHFA-2014-0015-0001 | FHFA | Minority and Women Inclusion Amendments | Proposed Rule | 2014-06-25T04:00:00Z | 2014 | 6 | 2014-06-25T04:00:00Z | 2014-08-26T03:59:59Z | 2014-06-25T12:56:02Z | 2014-14512 | 0 | 0 | 0900006481765657 | ||
| FHFA-2014-0008-0001 | FHFA | Minimum Requirements for Appraisal Management Companies | Proposed Rule | 2014-04-09T04:00:00Z | 2014 | 4 | 2014-04-09T04:00:00Z | 2014-06-10T03:59:59Z | 2014-04-09T13:02:45Z | 2014-06860 | 0 | 0 | 09000064816ab291 | ||
| FHFA-2014-0007-0001 | FHFA | Procedures | Proposed Rule | 2014-03-19T04:00:00Z | 2014 | 3 | 2014-03-19T04:00:00Z | 2014-05-20T03:59:59Z | 2014-03-19T13:29:05Z | 2014-06033 | 0 | 0 | 090000648166ec2e | ||
| FHFA-2014-0006-0001 | FHFA | Responsibilities of Boards of Directors, Corporate Practices and Corporate Governance Matters | Proposed Rule | 2014-02-28T05:00:00Z | 2014 | 2 | 2014-02-28T05:00:00Z | 2014-05-16T03:59:59Z | 2014-02-28T14:04:36Z | 2014-04421 | 0 | 0 | 09000064815eac98 | ||
| FHFA-2014-0002-0001 | FHFA | Responsibilities of Boards of Directors: Corporate Practices and Corporate Governance Matters | Proposed Rule | 2014-01-28T05:00:00Z | 2014 | 1 | 2014-01-28T05:00:00Z | 2014-04-01T03:59:59Z | 2014-01-28T13:43:59Z | 2014-01173 | 0 | 0 | 090000648152e257 |
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;