documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "TREAS", document_type = "Notice" and posted_year = 2011 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, open_for_comment, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| TREAS-DO-2011-0010-0001 | TREAS | Public Input on the Report to Congress on How to Modernize and Improve the System of Insurance Regulation in the United States TREAS-DO-2011-0010 | Public Input on the Report to Congress on How To Modernize and Improve the System of Insurance Regulation in the United States | Notice | Request for Comments | 2011-10-17T04:00:00Z | 2011 | 10 | 2011-10-17T04:00:00Z | 2011-12-20T04:59:59Z | 2024-11-12T05:03:57Z | 1 | 0 | 0900006480f54233 | |
| TREAS-DO-2011-0007-0001 | TREAS | CONSUMER FINANCIAL PROTECTION BUREAU: Defining Larger Participants in Certain Consumer Financial Products and Services Markets TREAS-DO-2011-0007 | Defining Larger Participants in Certain Consumer Financial Products and Services Markets - To Comment on this Document please see CFPB-2011-0002-0001 | Notice | Request for Comments | 2011-07-05T04:00:00Z | 2011 | 7 | 2011-07-05T04:00:00Z | 2011-07-25T19:51:07Z | 0 | 0 | 0900006480eb99e8 | ||
| TREAS-DO-2011-0003-0015 | TREAS | Reducing Regulatory Burden; Retrospective Review under E.O. 13563 TREAS-DO-2011-0003 | Preliminary Plan for Retrospective Analysis of Existing Rules | Notice | Notice | 2011-06-01T04:00:00Z | 2011 | 6 | 2011-06-01T04:00:00Z | 2011-07-26T03:59:59Z | 2021-01-17T01:06:44Z | 0 | 0 | 0900006480e38dd9 | |
| TREAS-DO-2011-0005-0001 | TREAS | BUREAU OF CONSUMER FINANCIAL PROTECTION - Identification of Enforceable Rules and Orders TREAS-DO-2011-0005 | Identification of Enforceable Rules and Orders | Notice | Notice | 2011-05-31T04:00:00Z | 2011 | 5 | 2011-05-31T04:00:00Z | 2011-07-01T03:59:59Z | 2011-05-31T18:12:57Z | 0 | 0 | 0900006480e35006 | |
| TREAS-DO-2011-0004-0001 | TREAS | Determination of Foreign Exchange Swaps and Foreign Exchange Forwards Under the Commodity Exchange Act TREAS-DO-2011-0004 | Determination of Foreign Exchange Swaps and Forwards | Notice | Notice | 2011-05-05T04:00:00Z | 2011 | 5 | 2011-05-05T04:00:00Z | 2011-06-07T03:59:59Z | 2011-05-05T14:28:27Z | 0 | 0 | 0900006480c4000c | |
| TREAS-DO-2011-0001-0001 | TREAS | Tribal Economic Development Bonds TREAS-DO-2011-0001 | Tribal Economic Development Bonds | Notice | Notice | 2011-02-28T05:00:00Z | 2011 | 2 | 2011-02-28T05:00:00Z | 2010-09-11T03:59:59Z | 2011-02-28T19:13:50Z | 0 | 0 | 0900006480bfab4d |
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;