documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "TREAS", document_type = "Proposed Rule" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, 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_FRDOC_0001-0277 | TREAS | Financial Crimes Enforcement Network; Anti-Money Laundering Programs; Special Due Diligence Programs for Certain Foreign Accounts RULES TREAS_FRDOC_0001 | Electronic Notice of Liquidation | Proposed Rule | 2016-10-14T04:00:00Z | 2016 | 10 | 2016-10-14T04:00:00Z | 2016-11-15T04:59:59Z | 2016-10-14T11:59:08Z | 2016-24858 | 0 | 0 | 09000064822f77e9 | |
| TREAS_FRDOC_0001-0268 | TREAS | Financial Crimes Enforcement Network; Anti-Money Laundering Programs; Special Due Diligence Programs for Certain Foreign Accounts RULES TREAS_FRDOC_0001 | Toxic Substance Control Act Chemical Substance Import Certification Process Revisions | Proposed Rule | 2016-08-29T04:00:00Z | 2016 | 8 | 2016-08-29T04:00:00Z | 2016-09-29T03:59:59Z | 2016-08-29T12:01:08Z | 2016-20546 | 0 | 0 | 09000064821a81ab | |
| TREAS_FRDOC_0001-0265 | TREAS | Financial Crimes Enforcement Network; Anti-Money Laundering Programs; Special Due Diligence Programs for Certain Foreign Accounts RULES TREAS_FRDOC_0001 | Importations of Certain Vehicles and Engines Subject to Federal Antipollution Emission Standards | Proposed Rule | 2016-08-17T04:00:00Z | 2016 | 8 | 2016-08-17T04:00:00Z | 2016-09-17T03:59:59Z | 2016-08-17T12:11:46Z | 2016-18761 | 0 | 0 | 090000648217cecc | |
| TREAS-DO-2016-0009-0001 | TREAS | Department of the Treasury Acquisition Regulations; Incremental Funding of Fixed-Price, Time-and-Material or Labor-Hour Contracts During a Continuing Resolution TREAS-DO-2016-0009 | Acquisition Regulations: Incremental Funding of Fixed-Price, Time-and-Material or Labor-Hour Contracts during a Continuing Resolution | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2016-07-12T04:00:00Z | 2016 | 7 | 2016-07-12T04:00:00Z | 2016-09-13T03:59:59Z | 2016-07-12T15:29:41Z | 2016-16346 | 0 | 0 | 09000064820a0b4e |
| TREAS_FRDOC_0001-0262 | TREAS | Financial Crimes Enforcement Network; Anti-Money Laundering Programs; Special Due Diligence Programs for Certain Foreign Accounts RULES TREAS_FRDOC_0001 | North American Free Trade Agreement: Preference Override | Proposed Rule | 2016-07-08T04:00:00Z | 2016 | 7 | 2016-07-08T04:00:00Z | 2016-09-07T03:59:59Z | 2016-07-08T12:09:15Z | 2016-16088 | 0 | 0 | 0900006482095b3f | |
| TREAS_FRDOC_0001-0261 | TREAS | Financial Crimes Enforcement Network; Anti-Money Laundering Programs; Special Due Diligence Programs for Certain Foreign Accounts RULES TREAS_FRDOC_0001 | Semiannual Agenda | Proposed Rule | 2016-06-09T04:00:00Z | 2016 | 6 | 2016-06-09T04:00:00Z | 2016-06-09T13:56:43Z | 2016-12914 | 0 | 0 | 0900006482026126 | ||
| TREAS-TRIP-2016-0005-0001 | TREAS | Terrorism Risk Insurance Program TREAS-TRIP-2016-0005 | Terrorism Risk Insurance Program | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2016-04-01T04:00:00Z | 2016 | 4 | 2016-04-01T04:00:00Z | 2016-06-01T03:59:59Z | 2016-06-01T01:01:05Z | 2016-06920 | 0 | 0 | 0900006481f09359 |
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;