documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "CFPB" and docket_id = "CFPB-2012-0029" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, comment_end_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| CFPB-2012-0029-0258 | CFPB | HIGH-COST MORTGAGE AND HOMEOWNERSHIP COUNSELING AMENDMENTS TO THE TRUTH IN LENDING ACT (REGULATION Z) AND HOMEOWNERSHIP COUNSELING AMENDMENTS TO THE REAL ESTATE SETTLEMENT PROCEDURES ACT (REGULATION X) CFPB-2012-0029 | High-Cost Mortgage and Homeownership Counseling Amendments to Truth in Lending Act, etc. | Rule | 2013-01-31T05:00:00Z | 2013 | 1 | 2013-01-31T05:00:00Z | 2018-02-01T13:55:47Z | 2013-00740 | 0 | 0 | 09000064811e0ae7 | ||
| CFPB-2012-0029-0065 | CFPB | HIGH-COST MORTGAGE AND HOMEOWNERSHIP COUNSELING AMENDMENTS TO THE TRUTH IN LENDING ACT (REGULATION Z) AND HOMEOWNERSHIP COUNSELING AMENDMENTS TO THE REAL ESTATE SETTLEMENT PROCEDURES ACT (REGULATION X) CFPB-2012-0029 | High-Cost Mortgage and Homeownership Counseling Amendments to the Truth in Lending Act (Regulation Z) and Homeownership Counseling Amendments to the Real Estate Settlement Procedures Act (Regulation X) (Comments on proposed § 1026.32(a)(1)(i) and (b)(1)(i) have been extended to November 6, 2012) | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2012-09-07T04:00:00Z | 2012 | 9 | 2012-09-07T04:00:00Z | 2012-11-07T04:59:59Z | 2012-12-04T03:01:33Z | 0 | 0 | 090000648110cd0a | |
| CFPB-2012-0029-0064 | CFPB | HIGH-COST MORTGAGE AND HOMEOWNERSHIP COUNSELING AMENDMENTS TO THE TRUTH IN LENDING ACT (REGULATION Z) AND HOMEOWNERSHIP COUNSELING AMENDMENTS TO THE REAL ESTATE SETTLEMENT PROCEDURES ACT (REGULATION X) CFPB-2012-0029 | Truth in Lending Act (Regulation Z) and Homeownership Counseling Amendments to Real Estate Settlement Procedures Act (Regulation X): High-Cost Mortgage and Homeownership Counseling Amendments (Notice of Extension) | Proposed Rule | 2012-09-06T04:00:00Z | 2012 | 9 | 2012-09-06T04:00:00Z | 2012-11-07T04:59:59Z | 2012-11-07T03:01:13Z | 2012-21998 | 0 | 0 | 0900006481109193 | |
| CFPB-2012-0029-0016 | CFPB | HIGH-COST MORTGAGE AND HOMEOWNERSHIP COUNSELING AMENDMENTS TO THE TRUTH IN LENDING ACT (REGULATION Z) AND HOMEOWNERSHIP COUNSELING AMENDMENTS TO THE REAL ESTATE SETTLEMENT PROCEDURES ACT (REGULATION X) CFPB-2012-0029 | High-Cost Mortgage and Homeownership Counseling Amendments: Truth in Lending and Homeownership Counseling Amendments to the Real Estate Settlement Procedures Acts (as published in the Federal Register) | Proposed Rule | 2012-08-15T04:00:00Z | 2012 | 8 | 2012-08-15T04:00:00Z | 2012-09-08T03:59:59Z | 2012-10-25T02:01:04Z | 2012-17059 | 0 | 0 | 09000064810dac7f | |
| CFPB-2012-0029-0001 | CFPB | HIGH-COST MORTGAGE AND HOMEOWNERSHIP COUNSELING AMENDMENTS TO THE TRUTH IN LENDING ACT (REGULATION Z) AND HOMEOWNERSHIP COUNSELING AMENDMENTS TO THE REAL ESTATE SETTLEMENT PROCEDURES ACT (REGULATION X) CFPB-2012-0029 | High-Cost Mortgage and Homeownership Counseling Amendments to the Truth in Lending Act (Regulation Z) and Homeownership Counseling Ammendments to the Real Estate Settlement Procedures Act (Regulation X) | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2012-07-09T04:00:00Z | 2012 | 7 | 2013-01-11T03:01:02Z | 0 | 0 | 0900006481080a4a |
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;