home / openregs

documents

Regulatory documents from Regulations.gov including rules, proposed rules, notices, and supporting materials.

Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API

15 rows where agency_id = "FHFA", document_type = "Rule" and posted_year = 2009 sorted by posted_date descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: title, posted_date, posted_month, comment_start_date, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)

posted_year 1

  • 2009 · 15 ✖

document_type 1

  • Rule · 15 ✖

agency_id 1

  • FHFA · 15 ✖
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-2009-0034-0001 FHFA   Federal Home Loan Bank Boards of Directors: Eligibility and Elections Rule   2009-10-07T04:00:00Z 2009 10 2009-10-07T04:00:00Z   2011-06-11T17:22:44Z E9-24063 0 0 0900006480a3dc82
FHFA-2009-0033-0001 FHFA   Post-Employment Restriction for Senior Examiners Rule   2009-10-05T04:00:00Z 2009 10 2009-10-05T04:00:00Z   2011-06-11T17:22:44Z E9-23807 0 0 0900006480a3ba19
FHFA-2009-0028-0001 FHFA   2009 Enterprise Transition Affordable Housing Goals Rule   2009-08-10T04:00:00Z 2009 8 2009-08-10T04:00:00Z   2011-06-11T17:22:43Z E9-18517 0 0 0900006480a0501b
FHFA-2009-0025-0001 FHFA   Capital Classifications and Critical Capital Levels for the Federal Home Loan Banks Rule   2009-08-04T04:00:00Z 2009 8 2009-08-04T04:00:00Z   2011-06-11T17:22:43Z E9-18581 0 0 0900006480a0086b
FHFA-2009-0023-0001 FHFA   Affordable Housing Program Amendments: Federal Home Loan Bank Mortgage Refinancing Authority Rule   2009-08-04T04:00:00Z 2009 8 2009-08-04T04:00:00Z 2009-10-06T03:59:59Z 2011-06-11T17:22:42Z E9-18484 0 0 0900006480a0081e
FHFA-2009-0019-0001 FHFA   Privacy Act Implementation Rule   2009-07-14T04:00:00Z 2009 7 2009-07-14T04:00:00Z   2009-07-14T15:41:50Z E9-16678 0 0 09000064809f0e5b
FHFA-2009-0012-0001 FHFA   Prior Approval for Enterprise Products Rule   2009-07-02T04:00:00Z 2009 7 2009-07-02T04:00:00Z 2009-09-01T03:59:59Z 2011-06-11T17:22:40Z E9-15304 0 0 09000064809e89a8
FHFA-2009-0004-0001 FHFA   Freedom of Information Act Implementation Rule   2009-04-24T04:00:00Z 2009 4 2009-04-24T04:00:00Z   2011-06-11T17:22:37Z E9-09424 0 0 0900006480968c34
FHFA-2009-0003-0001 FHFA   Capital Classifications and Critical Capital Levels for the Federal Home Loan Banks Rule   2009-03-26T04:00:00Z 2009 3 2009-03-26T04:00:00Z 2009-05-16T03:59:59Z 2011-06-11T17:22:37Z E9-06780 0 0 0900006480930733
FHFA-2009-0002-0001 FHFA   Flood insurance; Correction Rule   2009-02-17T05:00:00Z 2009 2 2009-02-17T05:00:00Z   2011-06-11T17:22:37Z E9-03243 0 0 090000648085cda8
FHFA-2009-0016-0001 FHFA   Portfolio Holdings Rule   2009-01-30T16:22:08Z 2009 1 2009-01-30T05:00:00Z 2009-06-02T03:59:59Z 2011-06-11T17:22:41Z E9-2047 0 0 09000064809ec3aa
FHFA-2009-0015-0001 FHFA   Capital Classifications and Critical Capital Levels for the Federal Home Loan Banks Rule   2009-01-30T16:10:36Z 2009 1 2009-01-30T05:00:00Z 2009-05-01T03:59:59Z 2011-06-11T17:22:41Z E9-2083 0 0 09000064809ec389
FHFA-2009-0001-0001 FHFA   Golden Parachute Payments Rule   2009-01-29T05:00:00Z 2009 1 2009-01-29T05:00:00Z   2011-06-11T17:22:36Z E9-01517 0 0 090000648083a02f
FHFA-2009-0014-0001 FHFA   Flood Insurance Rule   2009-01-15T19:06:56Z 2009 1 2009-01-15T05:00:00Z   2011-06-11T17:22:41Z E9-809 0 0 09000064809eabfb
FHFA-2009-0017-0001 FHFA   Freedom of Information Act Rule   2009-01-15T16:40:16Z 2009 1 2009-01-15T16:40:16Z   2011-06-11T17:22:41Z E9-808 0 0 09000064809ec3d9

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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;
Powered by Datasette · Queries took 602.622ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API