documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "CFPB-2019-0060" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: last_modified, 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-2019-0060-0001 | CFPB | Application for the Bureau’s Advisory Committees CFPB-2019-0060 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2019-12-02T05:00:00Z | 2019 | 12 | 2019-12-02T05:00:00Z | 2020-01-03T04:59:59Z | 2019-12-02T14:42:17Z | 2019-25994 | 0 | 0 | 09000064841d6160 | |
| CFPB-2019-0060-0007 | CFPB | Application for the Bureau’s Advisory Committees CFPB-2019-0060 | 3170-0037 FINANCIAL DISCLOSURE Form OMB | Supporting & Related Material | 2019-12-02T05:00:00Z | 2019 | 12 | 2019-12-02T19:27:55Z | 0 | 0 | 09000064841d9e6c | ||||
| CFPB-2019-0060-0003 | CFPB | Application for the Bureau’s Advisory Committees CFPB-2019-0060 | Application to serve on the Consumer Advisory Board OMB | Supporting & Related Material | 2019-12-02T05:00:00Z | 2019 | 12 | 2019-12-03T12:57:36Z | 0 | 0 | 09000064841d9e70 | ||||
| CFPB-2019-0060-0008 | CFPB | Application for the Bureau’s Advisory Committees CFPB-2019-0060 | 3170-0037 CFPB Travel Information Form OMB | Supporting & Related Material | 2019-12-02T05:00:00Z | 2019 | 12 | 2019-12-02T19:27:56Z | 0 | 0 | 09000064841d9e6b | ||||
| CFPB-2019-0060-0004 | CFPB | Application for the Bureau’s Advisory Committees CFPB-2019-0060 | Application to serve on the Community Bank Advisory Council or Credit Union Advisory Council OMB | Supporting & Related Material | 2019-12-02T05:00:00Z | 2019 | 12 | 2019-12-03T12:57:35Z | 0 | 0 | 09000064841d9e6f | ||||
| CFPB-2019-0060-0009 | CFPB | Application for the Bureau’s Advisory Committees CFPB-2019-0060 | 3170-0037 Application to Serve as a Small Entity Representative OMB | Supporting & Related Material | 2019-12-02T05:00:00Z | 2019 | 12 | 2019-12-02T19:27:57Z | 0 | 0 | 09000064841d9e6a | ||||
| CFPB-2019-0060-0006 | CFPB | Application for the Bureau’s Advisory Committees CFPB-2019-0060 | 3170-0037 Supporting Statement (2019 Renewal) - 30-day FRN OMB | Supporting & Related Material | 2019-12-02T05:00:00Z | 2019 | 12 | 2019-12-03T12:57:34Z | 0 | 0 | 09000064841d9e6d | ||||
| CFPB-2019-0060-0005 | CFPB | Application for the Bureau’s Advisory Committees CFPB-2019-0060 | Application to serve on the Academic Research Council OMB | Supporting & Related Material | 2019-12-02T05:00:00Z | 2019 | 12 | 2019-12-03T12:57:34Z | 0 | 0 | 09000064841d9e6e | ||||
| CFPB-2019-0060-0002 | CFPB | Application for the Bureau’s Advisory Committees CFPB-2019-0060 | FBI Name Check Request - Advisory Committee OMB | Supporting & Related Material | 2019-12-02T05:00:00Z | 2019 | 12 | 2019-12-03T12:57:37Z | 0 | 0 | 09000064841d9e71 |
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;