documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "CFPB", document_type = "Proposed Rule" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_month, 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-2018-0042-0001 | CFPB | Policy on No-Action Letters and the BCFP Product Sandbox CFPB-2018-0042 | Policy on No-Action Letters and the BCFP Product Sandbox | Proposed Rule | 2018-12-13T05:00:00Z | 2018 | 12 | 2018-12-13T05:00:00Z | 2019-02-12T04:59:59Z | 2019-03-13T01:06:14Z | 2018-26873 | 0 | 0 | 090000648398ed3f | |
| CFPB-2018-0035-0001 | CFPB | Availability of Funds and Collection of Checks (Regulation CC) CFPB-2018-0035 | Availability of Funds and Collection of Checks | Proposed Rule | 2018-12-10T05:00:00Z | 2018 | 12 | 2018-12-10T05:00:00Z | 2019-02-09T04:59:59Z | 2019-02-12T02:03:17Z | 2018-25746 | 0 | 0 | 090000648397368e | |
| CFPB-2018-0034-0001 | CFPB | Civil Penalty Inflation Adjustments CFPB-2018-0034 | Civil Penalty Inflation Adjustments | Proposed Rule | 2018-10-12T04:00:00Z | 2018 | 10 | 2018-10-12T04:00:00Z | 2018-11-14T04:59:59Z | 2018-11-15T02:02:40Z | 2018-22217 | 0 | 0 | 09000064837c6fe7 | |
| CFPB-2018-0023-0001 | CFPB | Policy to Encourage Trial Disclosure Programs CFPB-2018-0023 | Policy to Encourage Trial Disclosure Programs | Proposed Rule | 2018-09-10T04:00:00Z | 2018 | 9 | 2018-09-10T04:00:00Z | 2018-10-11T03:59:59Z | 2018-10-13T01:08:24Z | 2018-19385 | 0 | 0 | 09000064836c9919 | |
| CFPB-2018-0012-0001 | CFPB | Bureau’s Inherited Regulations and Inherited Rulemaking Authorities CFPB-2018-0012 | Bureau's Inherited Regulations and Inherited Rulemaking Authorities | Proposed Rule | Request for Information | 2018-03-26T04:00:00Z | 2018 | 3 | 2018-03-26T04:00:00Z | 2018-06-26T03:59:59Z | 2018-04-29T01:01:39Z | 2018-06027 | 0 | 0 | 090000648304d9a1 |
| CFPB-2018-0002-0010 | CFPB | Bureau Rules of Practice for Adjudication Proceedings CFPB-2018-0002 | Requests for Information: Bureau Rules of Practice for Adjudication Proceedings | Proposed Rule | 2018-03-22T04:00:00Z | 2018 | 3 | 2018-03-22T04:00:00Z | 2018-05-08T03:59:59Z | 2018-04-27T01:04:11Z | 2018-05780 | 0 | 0 | 090000648303e795 | |
| CFPB-2018-0011-0001 | CFPB | Request for Information Regarding the Bureau’s Adopted Regulations and New Rulemaking Authorities CFPB-2018-0011 | Requests for Information: Adopted Regulations and New Rulemaking Authorities | Proposed Rule | Request for Information | 2018-03-21T04:00:00Z | 2018 | 3 | 2018-03-21T04:00:00Z | 2018-06-20T03:59:59Z | 2018-07-11T01:02:58Z | 2018-05612 | 0 | 0 | 0900006483035e2b |
| CFPB-2018-0002-0001 | CFPB | Bureau Rules of Practice for Adjudication Proceedings CFPB-2018-0002 | Bureau Rules of Practice for Adjudication Proceedings | Proposed Rule | 2018-02-05T05:00:00Z | 2018 | 2 | 2018-02-05T05:00:00Z | 2018-03-23T03:59:59Z | 2018-03-26T18:58:11Z | 2018-02208 | 0 | 0 | 0900006482eea532 |
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;