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 = 2013 sorted by posted_date descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: 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

  • 2013 · 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-2013-0040-0001 FHFA   Supplemental Orders on Reporting by Regulated Entities of Stress Testing Results Rule   2013-12-27T05:00:00Z 2013 12 2013-12-27T05:00:00Z   2013-12-27T14:17:38Z 2013-30567 0 0 09000064814de9ad
FHFA-2013-0039-0001 FHFA   Reporting by Regulated Entities of Stress Testing Results Rule   2013-12-26T05:00:00Z 2013 12 2013-12-26T05:00:00Z   2013-12-26T14:28:08Z 2013-30356 0 0 09000064814dcc26
FHFA-2013-0036-0001 FHFA   Information Sharing Among Federal Home Loan Banks Rule   2013-12-06T05:00:00Z 2013 12 2013-12-06T05:00:00Z   2013-12-06T14:18:44Z 2013-28824 0 0 09000064814acf6d
FHFA-2013-0037-0001 FHFA   Information to be Distributed to the Federal Home Loan Banks and the Office of Finance Rule   2013-12-06T05:00:00Z 2013 12 2013-12-06T05:00:00Z   2013-12-06T14:21:04Z 2013-28886 0 0 09000064814ad296
FHFA-2013-0034-0001 FHFA   Removal of References to Credit Ratings in Certain Regulations Governing the Federal Home Loan Banks Rule   2013-11-08T05:00:00Z 2013 11 2013-11-08T05:00:00Z   2013-11-08T15:03:41Z 2013-26775 0 0 09000064814738a3
FHFA-2013-0030-0001 FHFA   Suspended Counterparty Program Rule   2013-10-23T04:00:00Z 2013 10 2013-10-23T04:00:00Z 2013-12-24T04:59:59Z 2013-10-23T13:13:59Z 2013-24730 0 0 090000648145ab7e
FHFA-2013-0028-0001 FHFA   Orders: Information Reporting with Respect to Stress Testing of Regulated Entities Rule   2013-09-26T04:00:00Z 2013 9 2013-09-26T04:00:00Z   2013-09-26T13:12:23Z 2013-22914 0 0 090000648143b771
FHFA-2013-0027-0001 FHFA   Stress Testing of Regulated Entities Rule   2013-09-26T04:00:00Z 2013 9 2013-09-26T04:00:00Z   2013-09-26T13:10:46Z 2013-22586 0 0 090000648143b6d3
FHFA-2013-0022-0001 FHFA   Production of FHFA Records, Information, and Employee Testimony in Third-Party Legal Proceedings Rule   2013-07-03T04:00:00Z 2013 7 2013-07-03T04:00:00Z   2013-07-03T14:00:36Z 2013-15906 0 0 0900006481354986
FHFA-2013-0023-0001 FHFA   Availability of Non-Public Information Rule   2013-07-03T04:00:00Z 2013 7 2013-07-03T04:00:00Z   2013-07-03T14:00:36Z 2013-15905 0 0 0900006481354c44
FHFA-2013-0018-0001 FHFA   Rules of Practice and Procedure: Enterprise and Federal Home Loan Bank Housing Goals Related Enforcement Amendment Rule   2013-06-20T04:00:00Z 2013 6 2013-06-20T04:00:00Z   2013-06-20T13:00:12Z 2013-14676 0 0 0900006481334221
FHFA-2013-0016-0001 FHFA   Executive Compensation Rule   2013-05-14T04:00:00Z 2013 5 2013-05-14T04:00:00Z 2013-07-16T03:59:59Z 2013-05-14T14:01:22Z 2013-11215 0 0 09000064812e2ff8
FHFA-2013-0009-0001 FHFA   Repeal of Disclosure Regulations Rule   2013-03-13T04:00:00Z 2013 3 2013-03-13T04:00:00Z   2013-03-13T12:59:44Z 2013-05765 0 0 09000064812279b7
FHFA-2013-0006-0001 FHFA   Appraisals for Higher-Priced Mortgage Loans Rule   2013-02-13T05:00:00Z 2013 2 2013-02-13T05:00:00Z   2013-02-13T13:52:55Z 2013-01809 0 0 09000064811f6ff7
FHFA-2013-0001-0001 FHFA   Relocation of Regulations Rule   2013-01-11T05:00:00Z 2013 1 2013-01-11T05:00:00Z   2013-01-11T13:50:29Z 2012-31093 0 0 09000064811b75c4

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 964.244ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API