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 = 2016 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-2016-0023-0001 | FHFA | Indemnification Payments; Correction | Proposed Rule | 2016-10-27T04:00:00Z | 2016 | 10 | 2016-10-27T04:00:00Z | 2016-12-22T04:59:59Z | 2016-10-27T11:45:56Z | 2016-26028 | 0 | 0 | 0900006482356e3c | ||
| FHFA-2016-0024-0001 | FHFA | Minority and Women Inclusion Amendments | Proposed Rule | 2016-10-27T04:00:00Z | 2016 | 10 | 2016-10-27T04:00:00Z | 2016-12-28T04:59:59Z | 2016-10-27T11:47:08Z | 2016-25726 | 0 | 0 | 0900006482356f57 | ||
| FHFA-2016-0020-0001 | FHFA | Federal Home Loan Bank Membership for Non-Federally-Insured Credit Unions | Proposed Rule | 2016-09-28T04:00:00Z | 2016 | 9 | 2016-09-28T04:00:00Z | 2016-11-29T04:59:59Z | 2016-09-28T11:55:55Z | 2016-23289 | 0 | 0 | 090000648227b280 | ||
| FHFA-2016-0017-0001 | FHFA | Indemnification Payments | Proposed Rule | 2016-09-20T04:00:00Z | 2016 | 9 | 2016-09-20T04:00:00Z | 2016-11-22T04:59:59Z | 2016-09-20T11:41:57Z | 2016-22483 | 0 | 0 | 090000648222d3dc | ||
| FHFA-2016-0015-0001 | FHFA | Federal Home Loan Bank New Business Activities | Proposed Rule | 2016-08-23T04:00:00Z | 2016 | 8 | 2016-08-23T04:00:00Z | 2016-10-25T03:59:59Z | 2016-08-23T12:09:35Z | 2016-19858 | 0 | 0 | 0900006482193aec | ||
| FHFA-2016-0013-0001 | FHFA | Incentive-Based Compensation Arrangements | Proposed Rule | 2016-07-05T04:00:00Z | 2016 | 7 | 2016-07-05T04:00:00Z | 2016-07-05T13:42:32Z | 2016-15596 | 0 | 0 | 090000648208744a | |||
| FHFA-2016-0010-0001 | FHFA | Incentive-Based Compensation Arrangements | Proposed Rule | 2016-06-10T04:00:00Z | 2016 | 6 | 2016-06-10T04:00:00Z | 2016-07-23T03:59:59Z | 2016-06-10T13:01:44Z | 2016-11788 | 0 | 0 | 090000648202c17c | ||
| FHFA-2016-0009-0001 | FHFA | Technical and Conforming Changes and Corrections | Proposed Rule | 2016-05-26T04:00:00Z | 2016 | 5 | 2016-05-26T04:00:00Z | 2016-07-26T03:59:59Z | 2016-05-26T13:01:44Z | 2016-12066 | 0 | 0 | 0900006481ff32b2 |
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;