documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "CFPB-2014-0011" and posted_year = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, withdrawn, 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-2014-0011-0009 | CFPB | Agency Information Collection Actitivies CFPB-2014-0011 | Appendix B: Justification of Questions | Supporting & Related Material | 2014-05-29T04:00:00Z | 2014 | 5 | 2014-05-29T18:33:43Z | 0 | 0 | 090000648171c8b8 | ||||
| CFPB-2014-0011-0002 | CFPB | Agency Information Collection Actitivies CFPB-2014-0011 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2014-05-29T04:00:00Z | 2014 | 5 | 2014-05-29T04:00:00Z | 2014-07-01T03:59:59Z | 2014-07-01T01:04:05Z | 2014-12412 | 0 | 0 | 090000648171ba69 | |
| CFPB-2014-0011-0008 | CFPB | Agency Information Collection Actitivies CFPB-2014-0011 | Appendix A: Questionnaire | Supporting & Related Material | 2014-05-29T04:00:00Z | 2014 | 5 | 2014-05-29T15:28:55Z | 0 | 0 | 090000648171c5c6 | ||||
| CFPB-2014-0011-0007 | CFPB | Agency Information Collection Actitivies CFPB-2014-0011 | Consumer Financial Protection Bureau Information Collection Request - Supporting Statement B - Collections of Information Employing Statistical Methods - Telephone Survey Exploring Consumer Awareness of and Perceptions Regarding Dispute Resolution Provisions in Credit Card Agreements | Supporting & Related Material | 2014-05-29T04:00:00Z | 2014 | 5 | 2014-05-29T14:24:59Z | 0 | 0 | 090000648171c3ee | ||||
| CFPB-2014-0011-0005 | CFPB | Agency Information Collection Actitivies CFPB-2014-0011 | Appendix C: Prenotification Letter | Supporting & Related Material | 2014-05-29T04:00:00Z | 2014 | 5 | 2014-05-29T14:24:39Z | 0 | 0 | 090000648171c3ec | ||||
| CFPB-2014-0011-0006 | CFPB | Agency Information Collection Actitivies CFPB-2014-0011 | Consumer Financial Protection Bureau Information Collection Request - Supporting Statement A: Telephone Survey Exploring Consumer Awareness of and Perceptions Regarding Dispute Resolution Provisions in Credit Card Agreements | Supporting & Related Material | 2014-05-29T04:00:00Z | 2014 | 5 | 2014-05-29T14:24:48Z | 0 | 0 | 090000648171c3ed | ||||
| CFPB-2014-0011-0003 | CFPB | Agency Information Collection Actitivies CFPB-2014-0011 | Appendix A: Questionnaire | Supporting & Related Material | 2014-05-29T00:00:00Z | 2014 | 5 | 2014-05-29T15:27:37Z | 0 | 1 | 090000648171c3ea | ||||
| CFPB-2014-0011-0004 | CFPB | Agency Information Collection Actitivies CFPB-2014-0011 | Appendix B: Justification of Questions | Supporting & Related Material | 2014-05-29T00:00:00Z | 2014 | 5 | 2014-05-29T18:32:15Z | 0 | 1 | 090000648171c3eb | ||||
| CFPB-2014-0011-0001 | CFPB | Agency Information Collection Actitivies CFPB-2014-0011 | Semiannual Regulatory Agenda - Spring 2014 | Other | 2014-05-23T00:00:00Z | 2014 | 5 | 2014-05-28T20:44:46Z | 0 | 1 | 09000064817106c4 |
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;