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 = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, 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-2014-0010-0001 | TREAS | Department of the Treasury Acquisition Regulation; Technical Amendments TREAS-DO-2014-0010 | Acquisition Regulations: Technical Amendments | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2014-12-23T05:00:00Z | 2014 | 12 | 2014-12-23T05:00:00Z | 2015-01-23T04:59:59Z | 2014-12-24T17:02:25Z | 2014-29767 | 0 | 0 | 090000648198ea41 |
| TREAS_FRDOC_0001-0219 | TREAS | Financial Crimes Enforcement Network; Anti-Money Laundering Programs; Special Due Diligence Programs for Certain Foreign Accounts RULES TREAS_FRDOC_0001 | Privacy Act; Implementation | Proposed Rule | 2014-10-03T04:00:00Z | 2014 | 10 | 2014-10-03T04:00:00Z | 2014-11-04T04:59:59Z | 2014-10-25T01:07:42Z | 2014-23012 | 0 | 0 | 09000064818a67db | |
| TREAS-DO-2014-0006-0001 | TREAS | Gulf Coast Restoration Trust Fund TREAS-DO-2014-0006 | Gulf Coast Restoration Trust Fund | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2014-07-31T04:00:00Z | 2014 | 7 | 2014-07-31T04:00:00Z | 2014-09-03T03:59:59Z | 2014-09-13T01:06:54Z | 2014-18131 | 0 | 0 | 09000064817f17d9 |
| TREAS-DO-2014-0002-0001 | TREAS | Large Position Reporting Rules TREAS-DO-2014-0002 | Government Securities Act: Large Position Reporting | Proposed Rule | Negotiated Rulemaking (NEG REG) | 2014-06-10T04:00:00Z | 2014 | 6 | 2014-06-10T04:00:00Z | 2014-08-10T03:59:59Z | 2024-11-11T20:52:38Z | 2014-13482 | 1 | 0 | 09000064817351ce |
| TREAS-DO-2008-0014-0017 | TREAS | Customs revenue function TREAS-DO-2008-0014 | Documentation Related to Goods Imported from U.S. Insular Possessions | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2014-01-14T05:00:00Z | 2014 | 1 | 2014-01-14T05:00:00Z | 2014-01-15T04:59:59Z | 2014-01-14T17:51:39Z | 2014-00485 | 0 | 0 | 0900006481505d8b |
| TREAS_FRDOC_0001-0202 | TREAS | Financial Crimes Enforcement Network; Anti-Money Laundering Programs; Special Due Diligence Programs for Certain Foreign Accounts RULES TREAS_FRDOC_0001 | Semiannual Agenda and Fiscal Year 2014 Regulatory Plan | Proposed Rule | 2014-01-07T05:00:00Z | 2014 | 1 | 2014-01-07T05:00:00Z | 2014-01-07T17:23:27Z | 2013-29638 | 0 | 0 | 09000064814f150b |
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;