home / openregs

documents

Regulatory documents from Regulations.gov including rules, proposed rules, notices, and supporting materials.

Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API

12 rows where docket_id = "CFPB_FRDOC_0001" and posted_year = 2016 sorted by posted_date descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: posted_date, posted_month, comment_start_date, posted_date (date), comment_start_date (date), last_modified (date)

document_type 2

  • Rule 11
  • Proposed Rule 1

posted_year 1

  • 2016 · 12 ✖

agency_id 1

  • CFPB 12
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_FRDOC_0001-0512 CFPB Recently Posted CFPB Rules and Notices. CFPB_FRDOC_0001 Truth in Lending Act (Regulation Z) Adjustment to Asset-Size Exemption Threshold Rule   2016-12-21T05:00:00Z 2016 12 2016-12-21T05:00:00Z   2016-12-21T12:53:36Z 2016-30730 0 0 090000648242d0b6
CFPB_FRDOC_0001-0513 CFPB Recently Posted CFPB Rules and Notices. CFPB_FRDOC_0001 Home Mortgage Disclosure (Regulation C) Adjustment to Asset-Size Exemption Threshold Rule   2016-12-21T05:00:00Z 2016 12 2016-12-21T05:00:00Z   2016-12-21T12:55:02Z 2016-30731 0 0 090000648242d13b
CFPB_FRDOC_0001-0497 CFPB Recently Posted CFPB Rules and Notices. CFPB_FRDOC_0001 Electronic Fund Transfers Rule   2016-10-12T04:00:00Z 2016 10 2016-10-12T04:00:00Z   2016-10-12T11:51:35Z 2016-24506 0 0 09000064822e6d0c
CFPB_FRDOC_0001-0480 CFPB Recently Posted CFPB Rules and Notices. CFPB_FRDOC_0001 Truth in Lending (Regulation Z); CFR Correction Rule   2016-07-29T04:00:00Z 2016 7 2016-07-29T04:00:00Z   2016-07-29T12:13:23Z 2016-18050 0 0 0900006482138af9
CFPB_FRDOC_0001-0472 CFPB Recently Posted CFPB Rules and Notices. CFPB_FRDOC_0001 Equal Credit Opportunity Act (Regulation B); CFR Correction Rule   2016-07-11T04:00:00Z 2016 7 2016-07-11T04:00:00Z   2016-07-11T12:32:54Z 2016-16301 0 0 090000648209bee9
CFPB_FRDOC_0001-0470 CFPB Recently Posted CFPB Rules and Notices. CFPB_FRDOC_0001 Truth in Lending (Regulation Z) Annual Threshold Adjustments (CARD Act, HOEPA and ATR/QM) Rule   2016-06-27T04:00:00Z 2016 6 2016-06-27T04:00:00Z   2016-06-27T12:23:27Z 2016-14782 0 0 090000648206eb9f
CFPB_FRDOC_0001-0464 CFPB Recently Posted CFPB Rules and Notices. CFPB_FRDOC_0001 Semiannual Regulatory Agenda Proposed Rule   2016-06-09T04:00:00Z 2016 6 2016-06-09T04:00:00Z   2016-06-09T13:55:56Z 2016-12931 0 0 0900006482025c09
CFPB_FRDOC_0001-0454 CFPB Recently Posted CFPB Rules and Notices. CFPB_FRDOC_0001 Filing Requirements Under the Interstate Land Sales Full Disclosure Act; Amendments Rule   2016-05-11T04:00:00Z 2016 5 2016-05-11T04:00:00Z   2016-05-11T12:54:05Z 2016-10715 0 0 0900006481fc3635
CFPB_FRDOC_0001-0452 CFPB Recently Posted CFPB Rules and Notices. CFPB_FRDOC_0001 Consumer Financial Protection Laws: Finalization of Interim Final Rules Rule   2016-04-28T04:00:00Z 2016 4 2016-04-28T04:00:00Z   2016-04-28T12:05:54Z 2016-09431 0 0 0900006481f94ded
CFPB_FRDOC_0001-0448 CFPB Recently Posted CFPB Rules and Notices. CFPB_FRDOC_0001 Submission of Credit Card Agreements Rule   2016-04-05T04:00:00Z 2016 4 2016-04-05T04:00:00Z   2016-04-05T12:25:50Z 2016-07815 0 0 0900006481f28030
CFPB_FRDOC_0001-0437 CFPB Recently Posted CFPB Rules and Notices. CFPB_FRDOC_0001 Application Process for Designation of Rural Area under Federal Consumer Financial Law; Procedural Rule Rule   2016-03-03T05:00:00Z 2016 3 2016-03-03T05:00:00Z   2016-03-03T13:52:32Z 2016-04643 0 0 0900006481e9bca5
CFPB_FRDOC_0001-0429 CFPB Recently Posted CFPB Rules and Notices. CFPB_FRDOC_0001 2013 Integrated Mortgage Disclosures Rule   2016-02-10T05:00:00Z 2016 2 2016-02-10T05:00:00Z   2016-02-10T14:01:44Z 2016-02630 0 0 0900006481e60836

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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;
Powered by Datasette · Queries took 1667.825ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API