documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "FHFA", document_type = "Proposed Rule" and posted_year = 2011 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-0033-0001 | FHFA | Federal Home Loan Bank Community Support Amendments | Proposed Rule | 2011-11-10T05:00:00Z | 2011 | 11 | 2011-11-10T05:00:00Z | 2012-02-09T04:59:59Z | 2011-11-10T13:36:36Z | 2011-29159 | 0 | 0 | 0900006480f69c62 | ||
| FHFA-2011-0030-0001 | FHFA | Regulatory Review Plan | Proposed Rule | 2011-09-23T04:00:00Z | 2011 | 9 | 2011-09-23T04:00:00Z | 2011-11-23T04:59:59Z | 2011-09-23T12:15:25Z | 2011-24405 | 0 | 0 | 0900006480f28502 | ||
| FHFA-2011-0023-0001 | FHFA | Margin and Capital Requirements for Covered Swap Entities | Proposed Rule | 2011-06-24T04:00:00Z | 2011 | 6 | 2011-06-24T04:00:00Z | 2011-07-12T03:59:59Z | 2011-06-24T17:23:05Z | 2011-16004 | 0 | 0 | 0900006480eb33e1 | ||
| FHFA-2011-0021-0001 | FHFA | Prudential Management and Operations Standards | Proposed Rule | 2011-06-20T04:00:00Z | 2011 | 6 | 2011-06-20T04:00:00Z | 2011-08-20T03:59:59Z | 2011-06-20T13:02:40Z | 2011-15100 | 0 | 0 | 0900006480e68f60 | ||
| FHFA-2011-0019-0001 | FHFA | Credit Risk Retention | Proposed Rule | 2011-06-10T04:00:00Z | 2011 | 6 | 2011-06-10T04:00:00Z | 2011-08-02T03:59:59Z | 2011-06-11T17:22:55Z | 2011-14444 | 0 | 0 | 0900006480e446c1 | ||
| FHFA-2011-0013-0001 | FHFA | Margin and Capital Requirements for Covered Swap Entities Agencies | Proposed Rule | 2011-05-11T04:00:00Z | 2011 | 5 | 2011-05-11T04:00:00Z | 2011-06-25T03:59:59Z | 2011-06-11T17:22:54Z | 2011-10432 | 0 | 0 | 0900006480c6c031 | ||
| FHFA-2011-0012-0001 | FHFA | Credit Risk Retention | Proposed Rule | 2011-04-29T04:00:00Z | 2011 | 4 | 2011-04-29T04:00:00Z | 2011-06-11T03:59:59Z | 2011-06-11T17:22:54Z | 2011-08364 | 0 | 0 | 0900006480c3be12 | ||
| FHFA-2011-0011-0001 | FHFA | Incentive-based Compensation Arrangements | Proposed Rule | 2011-04-14T04:00:00Z | 2011 | 4 | 2011-04-14T04:00:00Z | 2011-06-01T03:59:59Z | 2011-06-11T17:22:53Z | 2011-07937 | 0 | 0 | 0900006480c2c599 | ||
| FHFA-2011-0004-0001 | FHFA | Private Transfer Fees | Proposed Rule | 2011-02-08T05:00:00Z | 2011 | 2 | 2011-02-08T05:00:00Z | 2011-04-12T03:59:59Z | 2011-06-11T17:22:52Z | 2011-02565 | 0 | 0 | 0900006480be0f39 | ||
| FHFA-2011-0003-0001 | FHFA | Alternatives to Use of Credit Ratings in Regulations Governing the Federal National Mortgage Association, et al. | Proposed Rule | 2011-01-31T05:00:00Z | 2011 | 1 | 2011-01-31T05:00:00Z | 2011-03-18T03:59:59Z | 2011-01-31T14:15:49Z | 2011-02041 | 0 | 0 | 0900006480bd6760 |
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;