documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "CFPB", document_type = "Proposed Rule" and posted_year = 2011 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, comment_start_date, 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-2011-0023-0001 | CFPB | Regulation G, H Secure and Fair Enforcement Act (SAFE) CFPB-2011-0023 | Disclosure of Certain Credit Card Complaint Data | Proposed Rule | 2011-12-08T05:00:00Z | 2011 | 12 | 2011-12-08T05:00:00Z | 2012-01-31T04:59:59Z | 2011-12-19T21:06:56Z | 2011-31153 | 0 | 0 | 0900006480f7dfeb | |
| CFPB-2011-0039-0001 | CFPB | Streamling Inherited Regulations CFPB-2011-0039 | Streamlining Inherited Regulations | Proposed Rule | 2011-12-05T05:00:00Z | 2011 | 12 | 2011-12-05T05:00:00Z | 2012-03-06T04:59:59Z | 2012-06-12T02:01:59Z | 2011-31030 | 0 | 0 | 0900006480f7b5d9 | |
| CFPB-2011-0002-0001 | CFPB | Defining Larger Participants in Certain Consumer Financial Products and Services Markets CFPB-2011-0002 | Defining Larger Participants in Certain Consumer Financial Products and Services Markets | Proposed Rule | 2011-06-29T04:00:00Z | 2011 | 6 | 2011-06-29T04:00:00Z | 2011-08-16T03:59:59Z | 2011-07-19T18:24:24Z | 2011-15984 | 0 | 0 | 0900006480eb63e5 | |
| CFPB-2011-0009-0001 | CFPB | Electronic Fund Transfers CFPB-2011-0009 | Electronic Fund Transfers - To comment on this Document please see Document FRS-2011-0133-0001 | Proposed Rule | 2011-05-23T04:00:00Z | 2011 | 5 | 2011-07-21T04:00:00Z | 2011-07-23T03:59:59Z | 2013-04-30T01:02:15Z | 2011-12019 | 0 | 0 | 0900006480ec8157 | |
| CFPB-2011-0008-0001 | CFPB | Regulation Z; Truth in Lending CFPB-2011-0008 | Regulation Z; Truth in Lending - To comment on this Document please see Document FRS-2011-0124-0001 | Proposed Rule | 2011-05-11T04:00:00Z | 2011 | 5 | 2011-07-21T04:00:00Z | 2013-01-09T03:07:12Z | 2011-9766 | 0 | 0 | 0900006480ec7d91 |
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;