documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "CFPB-2013-0019" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2013-0019-0004 | CFPB | Agency Information Collection Activities: Submission for OMB Review; Comment Request CFPB-2013-0019 | Pilot Evaluation of Financial Empowerment Training Toolkit: Protocol for Telephone Focus Group with Cohort Trainers | Supporting & Related Material | 2013-07-02T04:00:00Z | 2013 | 7 | 2013-07-02T15:11:49Z | 0 | 0 | 0900006481350ec4 | ||||
| CFPB-2013-0019-0005 | CFPB | Agency Information Collection Activities: Submission for OMB Review; Comment Request CFPB-2013-0019 | Instrument 2: Survey for Trainer Feedback on Curriculum Following Usage with Case Managers | Supporting & Related Material | 2013-07-02T04:00:00Z | 2013 | 7 | 2013-07-02T15:14:48Z | 0 | 0 | 0900006481350ec5 | ||||
| CFPB-2013-0019-0006 | CFPB | Agency Information Collection Activities: Submission for OMB Review; Comment Request CFPB-2013-0019 | Instrument 3A: Case Manager Training Pre-Test | Supporting & Related Material | 2013-07-02T04:00:00Z | 2013 | 7 | 2013-07-02T15:17:08Z | 0 | 0 | 0900006481350f8b | ||||
| CFPB-2013-0019-0002 | CFPB | Agency Information Collection Activities: Submission for OMB Review; Comment Request CFPB-2013-0019 | Supporting Statement A: Program Evaluation of Financial Empowerment Training Programs | Supporting & Related Material | 2013-07-02T04:00:00Z | 2013 | 7 | 2013-07-02T15:07:10Z | 0 | 0 | 0900006481350ec2 | ||||
| CFPB-2013-0019-0001 | CFPB | Agency Information Collection Activities: Submission for OMB Review; Comment Request CFPB-2013-0019 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2013-07-02T04:00:00Z | 2013 | 7 | 2013-07-02T04:00:00Z | 2013-08-02T03:59:59Z | 2013-07-19T01:02:12Z | 2013-15853 | 0 | 0 | 0900006481351695 | |
| CFPB-2013-0019-0007 | CFPB | Agency Information Collection Activities: Submission for OMB Review; Comment Request CFPB-2013-0019 | Instrument 3B: Case Manager Training Post-Test | Supporting & Related Material | 2013-07-02T04:00:00Z | 2013 | 7 | 2013-07-02T15:18:34Z | 0 | 0 | 0900006481350f8d | ||||
| CFPB-2013-0019-0008 | CFPB | Agency Information Collection Activities: Submission for OMB Review; Comment Request CFPB-2013-0019 | Instruments 4 and 5: Three Month Case Manager Survey/ Six Month Case Manager Survey | Supporting & Related Material | 2013-07-02T04:00:00Z | 2013 | 7 | 2013-07-02T15:19:51Z | 0 | 0 | 0900006481350f8e | ||||
| CFPB-2013-0019-0003 | CFPB | Agency Information Collection Activities: Submission for OMB Review; Comment Request CFPB-2013-0019 | Supporting Statement B: Collections of Information Employing Statistical Methods | Supporting & Related Material | 2013-07-02T04:00:00Z | 2013 | 7 | 2013-07-02T15:10:25Z | 0 | 0 | 0900006481350ec3 |
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;