documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where agency_id = "TREAS", document_type = "Notice" and posted_year = 2014 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| TREAS-DO-2014-0008-0001 | TREAS | Tribal Consultation Policy TREAS-DO-2014-0008 | Tribal Consultation Policy | Notice | Request for Comments | 2014-12-03T05:00:00Z | 2014 | 12 | 2014-12-03T05:00:00Z | 2015-04-03T03:59:59Z | 2014-12-03T21:23:02Z | 0 | 0 | 09000064819590d9 | |
| TREAS-DO-2014-0007-0001 | TREAS | Treasury Directive 75–02 and Directive Publication 75–02, Department of the Treasury National Environmental Policy Act (NEPA) Program TREAS-DO-2014-0007 | Treasury Directive 75–02 and Directive Publication 75–02, Department of the Treasury National Environmental Policy Act (NEPA) Program | Notice | Request for Comments | 2014-09-30T04:00:00Z | 2014 | 9 | 2014-09-30T04:00:00Z | 2014-10-22T03:59:59Z | 2014-10-25T01:07:08Z | 0 | 0 | 090000648189d860 | |
| TREAS-DO-2014-0005-0001 | TREAS | Public Input on Development of Responsible Private Label Securities (PLS) Market TREAS-DO-2014-0005 | Public Input on Development of Responsible Private Label Securities (PLS) Market | Notice | Request for Comments | 2014-06-30T04:00:00Z | 2014 | 6 | 2014-06-30T04:00:00Z | 2014-08-09T03:59:59Z | 2014-08-15T18:20:44Z | 0 | 0 | 090000648177555c | |
| TREAS-DO-2014-0001-0001 | TREAS | Monitoring Availability and Affordability of Auto Insurance TREAS-DO-2014-0001 | Monitoring Availability and Affordability of Auto Insurance | Notice | Request for Comments | 2014-04-10T04:00:00Z | 2014 | 4 | 2014-04-10T04:00:00Z | 2014-06-10T03:59:59Z | 2014-06-10T01:05:10Z | 0 | 0 | 09000064816ae618 |
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;