documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where agency_id = "OFAC", document_type = "Rule" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| OFAC_FRDOC_0001-0814 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Iranian Transactions and Sanctions Regulations | Rule | 2016-12-23T05:00:00Z | 2016 | 12 | 2016-12-23T05:00:00Z | 2016-12-23T14:03:07Z | 2016-30968 | 0 | 0 | 0900006482433d5d | ||
| OFAC_FRDOC_0001-0804 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Former Liberian Regime of Charles Taylor Sanctions Regulations | Rule | 2016-11-04T04:00:00Z | 2016 | 11 | 2016-11-04T04:00:00Z | 2016-11-04T11:46:23Z | 2016-26717 | 0 | 0 | 0900006482371bfd | ||
| OFAC_FRDOC_0001-0799 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Cuban Assets Control Regulations | Rule | 2016-10-17T04:00:00Z | 2016 | 10 | 2016-10-17T04:00:00Z | 2016-10-17T11:46:52Z | 2016-25032 | 0 | 0 | 090000648230307e | ||
| OFAC_FRDOC_0001-0775 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Implementation of the Federal Civil Penalties Inflation Adjustment Act | Rule | 2016-07-01T04:00:00Z | 2016 | 7 | 2016-07-01T04:00:00Z | 2016-08-02T03:59:59Z | 2016-07-01T12:18:09Z | 2016-15552 | 0 | 0 | 0900006482080665 | |
| OFAC_FRDOC_0001-0768 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Burmese Sanctions Regulations | Rule | 2016-05-18T04:00:00Z | 2016 | 5 | 2016-05-18T04:00:00Z | 2016-05-18T12:22:16Z | 2016-11677 | 0 | 0 | 0900006481fd9bce | ||
| OFAC_FRDOC_0001-0760 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Hizballah Financial Sanctions Regulations | Rule | 2016-04-15T04:00:00Z | 2016 | 4 | 2016-04-15T04:00:00Z | 2016-06-15T03:59:59Z | 2016-04-15T12:45:24Z | 2016-08720 | 0 | 0 | 0900006481f6c90b | |
| OFAC_FRDOC_0001-0756 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Burundi Sanctions Regulations | Rule | 2016-04-06T04:00:00Z | 2016 | 4 | 2016-04-06T04:00:00Z | 2016-04-06T12:17:58Z | 2016-07851 | 0 | 0 | 0900006481f2e2d8 | ||
| OFAC_FRDOC_0001-0754 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Highly Enriched Uranium Agreement Assets Control Regulations | Rule | 2016-03-29T04:00:00Z | 2016 | 3 | 2016-03-29T04:00:00Z | 2016-03-29T12:35:31Z | 2016-06874 | 0 | 0 | 0900006481ee76c4 | ||
| OFAC_FRDOC_0001-0750 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Cuban Assets Control Regulations | Rule | 2016-03-16T04:00:00Z | 2016 | 3 | 2016-03-16T04:00:00Z | 2016-03-16T12:22:29Z | 2016-06018 | 0 | 0 | 0900006481ec70b2 | ||
| OFAC_FRDOC_0001-0732 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Cuban Assets Control Regulations | Rule | 2016-01-27T05:00:00Z | 2016 | 1 | 2016-01-27T05:00:00Z | 2016-01-27T13:23:20Z | 2016-01559 | 0 | 0 | 0900006481e31491 | ||
| OFAC_FRDOC_0001-0730 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Iranian Transactions and Sanctions | Rule | 2016-01-21T05:00:00Z | 2016 | 1 | 2016-01-21T05:00:00Z | 2016-01-21T13:37:18Z | 2016-01227 | 0 | 0 | 0900006481e248e4 |
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;