documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "CFPB-2019-0022" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- CFPB 7
| 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-2019-0022-14372 | CFPB | Debt Collection Practices (Regulation F) CFPB-2019-0022 | Debt Collection Practices (Regulation F): Corrections | Rule | 2022-11-01T04:00:00Z | 2022 | 11 | 2022-11-01T04:00:00Z | 2022-11-01T14:01:07Z | 2022-23559 | 0 | 0 | 0900006485477983 | ||
| CFPB-2019-0022-14371 | CFPB | Debt Collection Practices (Regulation F) CFPB-2019-0022 | Debt Collection Practices (Regulation F) | Rule | 2021-01-19T05:00:00Z | 2021 | 1 | 2021-01-19T05:00:00Z | 2021-10-04T16:53:16Z | 2020-28422 | 0 | 0 | 09000064849f80d0 | ||
| CFPB-2019-0022-14368 | CFPB | Debt Collection Practices (Regulation F) CFPB-2019-0022 | Debt Collection Practices (Regulation F) | Rule | 2020-11-30T05:00:00Z | 2020 | 11 | 2020-11-30T05:00:00Z | 2020-11-30T15:06:04Z | 2020-24463 | 0 | 0 | 090000648497c393 | ||
| CFPB-2019-0022-2023 | CFPB | Debt Collection Practices (Regulation F) CFPB-2019-0022 | Debt Collection Practices (Regulation F); Extension of Comment Period | Proposed Rule | 2019-08-02T04:00:00Z | 2019 | 8 | 2019-08-02T04:00:00Z | 2019-09-19T03:59:59Z | 2020-09-23T01:01:00Z | 2019-16476 | 0 | 0 | 0900006483de801c | |
| CFPB-2019-0022-0002 | CFPB | Debt Collection Practices (Regulation F) CFPB-2019-0022 | 3170-0056_Supporting Statement_RIN_3170-AA41(NPRM) FINAL | Supporting & Related Material | 2019-05-21T04:00:00Z | 2019 | 5 | 2019-05-21T15:03:52Z | 0 | 0 | 0900006483cacc1a | ||||
| CFPB-2019-0022-0001 | CFPB | Debt Collection Practices (Regulation F) CFPB-2019-0022 | Debt Collection Practices (Regulation F) | Proposed Rule | 2019-05-21T04:00:00Z | 2019 | 5 | 2019-05-21T04:00:00Z | 2019-08-20T03:59:59Z | 2020-12-12T02:02:48Z | 2019-09665 | 0 | 0 | 0900006483caa715 | |
| CFPB-2019-0022-14370 | CFPB | Debt Collection Practices (Regulation F) CFPB-2019-0022 | Homeownership Counseling Organizations Lists Interpretive Rule | Rule | 2013-11-14T05:00:00Z | 2013 | 11 | 2013-11-14T05:00:00Z | 2021-01-19T13:46:40Z | 2013-27300 | 0 | 0 | 090000648147d837 |
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;