documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "CFPB_FRDOC_0001" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| CFPB_FRDOC_0001-0422 | CFPB | Recently Posted CFPB Rules and Notices. CFPB_FRDOC_0001 | 2013 Integrated Mortgage Disclosures Rule Under the Real Estate Settlement Procedures Act (Regulation X) and the Truth in Lending Act (Regulation Z); Correction, | Rule | 2015-12-24T05:00:00Z | 2015 | 12 | 2015-12-24T05:00:00Z | 2015-12-24T13:34:01Z | 2015-32463 | 0 | 0 | 0900006481dd0713 | ||
| CFPB_FRDOC_0001-0420 | CFPB | Recently Posted CFPB Rules and Notices. CFPB_FRDOC_0001 | Truth in Lending: Adjustment to Asset-Size Exemption Threshold, | Rule | 2015-12-23T05:00:00Z | 2015 | 12 | 2015-12-23T05:00:00Z | 2015-12-23T14:15:27Z | 2015-32293 | 0 | 0 | 0900006481dc96ec | ||
| CFPB_FRDOC_0001-0421 | CFPB | Recently Posted CFPB Rules and Notices. CFPB_FRDOC_0001 | Home Mortgage Disclosure: Adjustment to Asset-Size Exemption Threshold, | Rule | 2015-12-23T05:00:00Z | 2015 | 12 | 2015-12-23T05:00:00Z | 2015-12-23T14:15:53Z | 2015-32285 | 0 | 0 | 0900006481dc97c0 | ||
| CFPB_FRDOC_0001-0416 | CFPB | Recently Posted CFPB Rules and Notices. CFPB_FRDOC_0001 | Consumer Lending | Rule | 2015-11-27T05:00:00Z | 2015 | 11 | 2015-11-27T05:00:00Z | 2015-11-27T13:26:38Z | 2015-30071 | 0 | 0 | 0900006481d76200 | ||
| CFPB_FRDOC_0001-0415 | CFPB | Recently Posted CFPB Rules and Notices. CFPB_FRDOC_0001 | Appraisals for Higher-Priced Mortgage Loans Exemption Threshold | Rule | 2015-11-27T05:00:00Z | 2015 | 11 | 2015-11-27T05:00:00Z | 2015-11-27T13:26:17Z | 2015-30097 | 0 | 0 | 0900006481d75cf5 | ||
| CFPB_FRDOC_0001-0414 | CFPB | Recently Posted CFPB Rules and Notices. CFPB_FRDOC_0001 | Truth in Lending | Rule | 2015-11-27T05:00:00Z | 2015 | 11 | 2015-11-27T05:00:00Z | 2015-11-27T13:25:56Z | 2015-30091 | 0 | 0 | 0900006481d75cbc | ||
| CFPB_FRDOC_0001-0392 | CFPB | Recently Posted CFPB Rules and Notices. CFPB_FRDOC_0001 | Truth in Lending (Regulation Z) Annual Threshold Adjustments | Rule | 2015-09-21T04:00:00Z | 2015 | 9 | 2015-09-21T04:00:00Z | 2015-09-21T13:06:47Z | 2015-22987 | 0 | 0 | 0900006481c883eb | ||
| CFPB_FRDOC_0001-0387 | CFPB | Recently Posted CFPB Rules and Notices. CFPB_FRDOC_0001 | Compliance Bulletins: Amendment to the Interstate Land Sales Full Disclosure Act | Rule | 2015-08-17T04:00:00Z | 2015 | 8 | 2015-08-17T04:00:00Z | 2015-08-17T12:48:08Z | 2015-19998 | 0 | 0 | 0900006481c2493c | ||
| CFPB_FRDOC_0001-0369 | CFPB | Recently Posted CFPB Rules and Notices. CFPB_FRDOC_0001 | Minimum Requirements for Appraisal Management Companies | Rule | 2015-06-09T04:00:00Z | 2015 | 6 | 2015-06-09T04:00:00Z | 2015-06-09T12:28:39Z | 2015-12719 | 0 | 0 | 0900006481b24bd5 | ||
| CFPB_FRDOC_0001-0359 | CFPB | Recently Posted CFPB Rules and Notices. CFPB_FRDOC_0001 | Homeownership Counseling Organizations Lists and High-Cost Mortgage Counseling Interpretive Rule | Rule | 2015-04-21T04:00:00Z | 2015 | 4 | 2015-04-21T04:00:00Z | 2015-04-21T12:25:06Z | 2015-09244 | 0 | 0 | 0900006481ab121b |
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;