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 = "Proposed Rule" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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-2018-0025-0001 | TREAS | Freedom of Information Act Regulations TREAS-DO-2018-0025 | Freedom of Information Act Regulations | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2018-10-26T04:00:00Z | 2018 | 10 | 2018-10-26T04:00:00Z | 2018-12-27T04:59:59Z | 2018-11-07T15:17:37Z | 2018-23447 | 0 | 0 | 0900006483855700 |
| TREAS_FRDOC_0001-0325 | TREAS | Financial Crimes Enforcement Network; Anti-Money Laundering Programs; Special Due Diligence Programs for Certain Foreign Accounts RULES TREAS_FRDOC_0001 | Modernized Drawback; Correction | Proposed Rule | 2018-08-20T04:00:00Z | 2018 | 8 | 2018-08-20T04:00:00Z | 2018-08-20T11:57:06Z | 2018-17847 | 0 | 0 | 090000648363735d | ||
| TREAS-DO-2018-0019-0001 | TREAS | SUBMIT COMMENTS TO USCBP-2018-0029 - Modernized Drawback TREAS-DO-2018-0019 | Modernized Drawback - Submit comments to docket USCBP-2018-0029 | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2018-08-02T04:00:00Z | 2018 | 8 | 2018-08-02T04:00:00Z | 2018-08-03T03:59:59Z | 2018-08-02T17:56:24Z | 2018-16279 | 0 | 0 | 09000064835bb93a |
| TREAS-DO-2018-0014-0001 | TREAS | Ongoing Data Collection of Centrally Cleared Transactions in the U.S. Repurchase Agreement Market TREAS-DO-2018-0014 | Ongoing Data Collection of Centrally Cleared Transactions in the U.S. Repurchase Agreement Market | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2018-07-10T04:00:00Z | 2018 | 7 | 2018-07-10T04:00:00Z | 2018-09-11T03:59:59Z | 2018-09-11T01:03:45Z | 2018-14706 | 0 | 0 | 09000064834ca327 |
| TREAS-DO-2018-0013-0001 | TREAS | Regulations for the Gulf Coast Restoration Trust Fund TREAS-DO-2018-0013 | Gulf Coast Restoration Trust Fund | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2018-06-20T04:00:00Z | 2018 | 6 | 2018-06-20T04:00:00Z | 2018-07-21T03:59:59Z | 2018-07-21T01:06:36Z | 2018-13227 | 0 | 0 | 09000064834336b2 |
| TREAS-DO-2018-0007-0001 | TREAS | Eliminating Unnecessary Regulations TREAS-DO-2018-0007 | Eliminating Unnecessary Regulations | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2018-04-09T04:00:00Z | 2018 | 4 | 2018-04-09T04:00:00Z | 2018-06-09T03:59:59Z | 2018-05-06T22:26:31Z | 2018-07102 | 0 | 0 | 09000064830dd3d9 |
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;