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 = "Rule" and posted_year = 2012 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), 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-0035-0001 | FHFA | 2012-2014 Enterprise Housing Goals | Rule | 2012-12-20T05:00:00Z | 2012 | 12 | 2012-12-20T05:00:00Z | 2012-12-20T13:39:05Z | 2012-30481 | 0 | 0 | 0900006481193a5f | |||
| FHFA-2012-0034-0001 | FHFA | Organization and Functions, and Seal | Rule | 2012-12-10T05:00:00Z | 2012 | 12 | 2012-12-10T05:00:00Z | 2012-12-10T14:07:30Z | 2012-29695 | 0 | 0 | 090000648118467a | |||
| FHFA-2012-0030-0001 | FHFA | 2012-2014 Enterprise Housing Goals | Rule | 2012-11-13T05:00:00Z | 2012 | 11 | 2012-11-13T05:00:00Z | 2012-11-13T14:48:41Z | 2012-27121 | 0 | 0 | 0900006481165d3c | |||
| FHFA-2012-0011-0001 | FHFA | Prudential Management and Operations Standards | Rule | 2012-06-08T04:00:00Z | 2012 | 6 | 2012-06-08T04:00:00Z | 2012-06-08T14:59:41Z | 2012-13997 | 0 | 0 | 090000648103bfad | |||
| FHFA-2012-0009-0001 | FHFA | Private Transfer Fees | Rule | 2012-03-16T04:00:00Z | 2012 | 3 | 2012-03-16T04:00:00Z | 2012-03-16T13:06:49Z | 2012-06414 | 0 | 0 | 0900006480fd89f8 | |||
| FHFA-2012-0006-0001 | FHFA | Regulatory Review Plans | Rule | 2012-02-22T05:00:00Z | 2012 | 2 | 2012-02-22T05:00:00Z | 2012-02-22T14:06:39Z | 2012-04056 | 0 | 0 | 0900006480fbd6af | |||
| FHFA-2012-0004-0001 | FHFA | Freedom of Information Act Implementation | Rule | 2012-01-31T05:00:00Z | 2012 | 1 | 2012-01-31T05:00:00Z | 2012-01-31T14:10:36Z | 2012-01967 | 0 | 0 | 0900006480fa9864 | |||
| FHFA-2012-0005-0001 | FHFA | Privacy Act Implementation | Rule | 2012-01-31T05:00:00Z | 2012 | 1 | 2012-01-31T05:00:00Z | 2012-01-31T14:11:06Z | 2012-01968 | 0 | 0 | 0900006480fa9884 |
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;