documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "CFPB", document_type = "Other" and posted_year = 2025 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2024-0038-0014 | CFPB | Petition for Rulemaking Requesting Enhanced Consumer Financial Protection for Renters under the Equal Credit Opportunity Act (ECOA) CFPB-2024-0038 | J222_NCLC Final Decision_MPB_final_122624 | Other | Agency Response | 2025-01-13T05:00:00Z | 2025 | 1 | 2025-01-13T05:00:00Z | 2025-01-13T16:01:17Z | 0 | 0 | 09000064868b745c | ||
| CFPB-2024-0047-0003 | CFPB | Petition for Rulemaking Requesting a Rule Regulating or Prohibiting Maintenance Fees for Credit Card Accounts CFPB-2024-0047 | J229_2024.12.23_NACA et al_MPB_final_011325 | Other | Agency Response | 2025-01-13T05:00:00Z | 2025 | 1 | 2025-01-13T05:00:00Z | 2025-01-13T20:39:01Z | 0 | 0 | 09000064868b7f47 | ||
| CFPB-2024-0051-0008 | CFPB | Petition for Rulemaking to Amend the Expedited Funds Availability Act (EFAA) to Reduce Deposit Hold Times Based on Technological Improvements CFPB-2024-0051 | J239_Petition for a Rulemaking_MPB_final_011025 | Other | Agency Response | 2025-01-13T05:00:00Z | 2025 | 1 | 2025-01-13T05:00:00Z | 2025-01-13T15:32:14Z | 0 | 0 | 09000064868b73a1 | ||
| CFPB-2022-0064-0002 | CFPB | Petition for Rulemaking - CRL/CBA - Larger Participant Rulemaking CFPB-2022-0064 | J234_Response to CRL CBA_MPB_final_011025 | Other | Agency Response | 2025-01-13T05:00:00Z | 2025 | 1 | 2025-01-13T05:00:00Z | 2025-01-13T15:37:14Z | 0 | 0 | 09000064868b73a5 | ||
| CFPB-2022-0036-0002 | CFPB | Petition for Rulemaking - J. Patrick Altes_Automobile Repossession Assignments CFPB-2022-0036 | J220_J Patrick Altes Petition_MPB_final_122624 | Other | Agency Response | 2025-01-13T05:00:00Z | 2025 | 1 | 2025-01-13T05:00:00Z | 2025-01-13T15:50:20Z | 0 | 0 | 09000064868b7458 | ||
| CFPB-2022-0047-0002 | CFPB | Petition for Rulemaking - David Addington - NFIB Petition for Issuance of Rule Prohibiting Discrimination Against Medical Debt CFPB-2022-0047 | J221_David Addington NFIB Petition_MPB_final_122624 | Other | Agency Response | 2025-01-13T05:00:00Z | 2025 | 1 | 2025-01-13T05:00:00Z | 2025-01-13T15:43:26Z | 0 | 0 | 09000064868b7457 |
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;