documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "OFAC", document_type = "Rule" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, posted_date (date), comment_start_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-1004 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Democratic Republic of the Congo Sanctions Regulations | Rule | 2018-11-15T05:00:00Z | 2018 | 11 | 2018-11-15T05:00:00Z | 2018-11-15T12:53:20Z | 2018-24696 | 0 | 0 | 09000064838d97cb | ||
| OFAC_FRDOC_0001-0998 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Iranian Transactions and Sanctions Regulations | Rule | 2018-11-05T05:00:00Z | 2018 | 11 | 2018-11-05T05:00:00Z | 2018-11-05T12:54:31Z | 2018-24058 | 0 | 0 | 09000064838988d5 | ||
| OFAC_FRDOC_0001-0966 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Removal of Sudanese Sanctions Regulations and Amendment of Terrorism List Government Sanctions Regulations | Rule | 2018-06-29T04:00:00Z | 2018 | 6 | 2018-06-29T04:00:00Z | 2018-06-29T12:38:08Z | 2018-14084 | 0 | 0 | 0900006483478afc | ||
| OFAC_FRDOC_0001-0967 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Global Magnitsky Sanctions Regulations | Rule | 2018-06-29T04:00:00Z | 2018 | 6 | 2018-06-29T04:00:00Z | 2018-06-29T12:45:40Z | 2018-14060 | 0 | 0 | 0900006483478cd0 | ||
| OFAC_FRDOC_0001-0965 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Iranian Transactions and Sanctions Regulations | Rule | 2018-06-28T04:00:00Z | 2018 | 6 | 2018-06-28T04:00:00Z | 2018-06-28T11:51:08Z | 2018-13939 | 0 | 0 | 0900006483470be6 | ||
| OFAC_FRDOC_0001-0961 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Rough Diamonds Control Regulations | Rule | 2018-06-19T04:00:00Z | 2018 | 6 | 2018-06-19T04:00:00Z | 2018-06-19T11:55:49Z | 2018-12887 | 0 | 0 | 090000648342c7bd | ||
| OFAC_FRDOC_0001-0936 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Inflation Adjustment of Civil Monetary Penalties | Rule | 2018-03-19T04:00:00Z | 2018 | 3 | 2018-03-19T04:00:00Z | 2018-03-19T12:36:28Z | 2018-05550 | 0 | 0 | 090000648302551a | ||
| OFAC_FRDOC_0001-0933 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | North Korea Sanctions Regulations | Rule | 2018-03-05T05:00:00Z | 2018 | 3 | 2018-03-05T05:00:00Z | 2018-03-05T12:56:02Z | 2018-04113 | 0 | 0 | 0900006482f8f97b |
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;