documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "CFPB-2019-0010" and document_type = "Rule" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-0010-0032 | CFPB | 2019 Notices CFPB-2019-0010 | Truth in Lending Act Adjustment to Asset-Size Exemption Threshold | Rule | 2019-12-23T05:00:00Z | 2019 | 12 | 2019-12-23T05:00:00Z | 2019-12-23T15:12:23Z | 2019-27523 | 0 | 0 | 09000064842483cb | ||
| CFPB-2019-0010-0031 | CFPB | 2019 Notices CFPB-2019-0010 | Home Mortgage Disclosure Adjustment to Asset-Size Exemption Threshold | Rule | 2019-12-20T05:00:00Z | 2019 | 12 | 2019-12-20T05:00:00Z | 2019-12-23T14:43:18Z | 2019-27522 | 0 | 0 | 09000064842400ff | ||
| CFPB-2019-0010-0028 | CFPB | 2019 Notices CFPB-2019-0010 | Truth in Lending (Regulation Z) Annual Threshold Adjustments (Credit Cards, HOEPA, and Qualified Mortgages) | Rule | 2019-11-29T05:00:00Z | 2019 | 11 | 2019-11-29T05:00:00Z | 2019-11-29T16:07:29Z | 2019-25812 | 0 | 0 | 09000064841c8d7f | ||
| CFPB-2019-0010-0027 | CFPB | 2019 Notices CFPB-2019-0010 | Fair Credit Reporting Act Disclosures | Rule | 2019-11-27T05:00:00Z | 2019 | 11 | 2019-11-27T05:00:00Z | 2019-11-29T14:57:52Z | 2019-25695 | 0 | 0 | 09000064841bf9af | ||
| CFPB-2019-0010-0024 | CFPB | 2019 Notices CFPB-2019-0010 | Appraisals for Higher-Priced Mortgage Loans Exemption Threshold | Rule | 2019-10-30T04:00:00Z | 2019 | 10 | 2019-10-30T04:00:00Z | 2019-10-30T19:33:05Z | 2019-21559 | 0 | 0 | 090000648410931b | ||
| CFPB-2019-0010-0025 | CFPB | 2019 Notices CFPB-2019-0010 | Truth in Lending (Regulation Z) | Rule | 2019-10-30T04:00:00Z | 2019 | 10 | 2019-10-30T04:00:00Z | 2019-10-30T19:36:22Z | 2019-21557 | 0 | 0 | 09000064841094ac | ||
| CFPB-2019-0010-0026 | CFPB | 2019 Notices CFPB-2019-0010 | Consumer Leasing (Regulation M) | Rule | 2019-10-30T04:00:00Z | 2019 | 10 | 2019-10-30T04:00:00Z | 2019-10-30T19:37:42Z | 2019-21554 | 0 | 0 | 09000064841094ef | ||
| CFPB-2019-0010-0005 | CFPB | 2019 Notices CFPB-2019-0010 | Technical Specifications for Submissions to the Prepaid Account Agreements Database | Rule | 2019-03-06T05:00:00Z | 2019 | 3 | 2019-03-06T05:00:00Z | 2019-03-06T14:05:16Z | 2019-03852 | 0 | 0 | 0900006483ac241b |
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;