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 = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, comment_end_date, 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-2019-0015-0001 | TREAS | Multiemployer Pension Plan Application To Reduce Benefits; Carpenters Pension Trust Fund—Detroit and Vicinity Pension Plan TREAS-DO-2019-0015 | MPRA Notice of Availability; Carpenters Pension Trust Fund - Detroit and Vicinity Pension Plan | Notice | Request for Comments | 2019-10-29T04:00:00Z | 2019 | 10 | 2019-10-29T04:00:00Z | 2019-12-10T04:59:59Z | 2019-12-11T02:02:36Z | 0 | 0 | 0900006484104345 | |
| TREAS-DO-2019-0005-0001 | TREAS | Multiemployer Pension Plan Application To Reduce Benefits ; IBEW Local 237 Pension Fund TREAS-DO-2019-0005 | MPRA Notice of Availability; IBEW Local 237 | Notice | Request for Comments | 2019-07-29T04:00:00Z | 2019 | 7 | 2019-07-29T04:00:00Z | 2019-09-10T03:59:59Z | 2019-07-29T15:16:32Z | 0 | 0 | 0900006483dc4e84 | |
| TREAS-DO-2019-0006-0001 | TREAS | Multiemployer Pension Plan Application To Reduce Benefits; Composition Roofers Local 42 Pension Fund Fund TREAS-DO-2019-0006 | MPRA Notice of Availability; Composition Roofers Local 42 | Notice | Request for Comments | 2019-07-29T04:00:00Z | 2019 | 7 | 2019-07-29T04:00:00Z | 2019-09-10T03:59:59Z | 2019-07-29T15:20:26Z | 0 | 0 | 0900006483dc515a | |
| TREAS-DO-2019-0004-0001 | TREAS | Request for Information on Data Collection and Tracking for Qualified Opportunity Zones TREAS-DO-2019-0004 | RFI - Data Collection and Tracking for Qualified Opportunity Zones | Notice | Request for Comments | 2019-05-01T04:00:00Z | 2019 | 5 | 2019-05-01T04:00:00Z | 2019-06-01T03:59:59Z | 2019-11-13T02:03:44Z | 0 | 0 | 0900006483c22bc8 | |
| TREAS-DO-2019-0003-0001 | TREAS | Multiemployer Pension Plan Application To Reduce Benefits; Sheet Metal Workers Local Pension Fund TREAS-DO-2019-0003 | MPRA Notice of Availability, Sheet Metal Workers Local Pension | Notice | Request for Comments | 2019-04-29T04:00:00Z | 2019 | 4 | 2019-04-29T04:00:00Z | 2019-06-14T03:59:59Z | 2019-04-29T16:41:30Z | 0 | 0 | 0900006483c13be5 | |
| TREAS-TRIP-2019-0002-0001 | TREAS | Comments in Aid of Analyses of the Terrorism Risk Insurance Program TREAS-TRIP-2019-0002 | Comments in Aid of Analyses of the Terrorism Risk Insurance Program | Notice | Request for Comments | 2019-04-17T04:00:00Z | 2019 | 4 | 2019-04-17T04:00:00Z | 2019-05-14T03:59:59Z | 2019-05-14T01:01:51Z | 0 | 0 | 0900006483bb4c67 |
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;