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 = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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-0917 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Iraq Stabilization and Insurgency Sanctions Regulations | Rule | 2017-12-28T05:00:00Z | 2017 | 12 | 2017-12-28T05:00:00Z | 2017-12-28T12:49:16Z | 2017-28023 | 0 | 0 | 0900006482d7ac1d | ||
| OFAC_FRDOC_0001-0913 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Magnitsky Act Sanctions Regulations | Rule | 2017-12-21T05:00:00Z | 2017 | 12 | 2017-12-21T05:00:00Z | 2017-12-21T12:53:20Z | 2017-27499 | 0 | 0 | 0900006482d48bce | ||
| OFAC_FRDOC_0001-0903 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Removal of Cote d'Ivoire Sanctions Regulations | Rule | 2017-11-13T05:00:00Z | 2017 | 11 | 2017-11-13T05:00:00Z | 2017-11-13T12:43:02Z | 2017-24521 | 0 | 0 | 0900006482c6a334 | ||
| OFAC_FRDOC_0001-0902 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Cuban Assets Control Regulations | Rule | 2017-11-09T05:00:00Z | 2017 | 11 | 2017-11-09T05:00:00Z | 2017-11-09T12:53:18Z | 2017-24447 | 0 | 0 | 0900006482c607a9 | ||
| OFAC_FRDOC_0001-0900 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Global Terrorism Sanctions Regulations | Rule | 2017-10-31T04:00:00Z | 2017 | 10 | 2017-10-31T04:00:00Z | 2017-10-31T12:05:28Z | 2017-23433 | 0 | 0 | 0900006482c286c9 | ||
| OFAC_FRDOC_0001-0864 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Removal of Burmese Sanctions Regulations | Rule | 2017-06-16T04:00:00Z | 2017 | 6 | 2017-06-16T04:00:00Z | 2017-06-16T11:58:01Z | 2017-12557 | 0 | 0 | 09000064826e47ea | ||
| OFAC_FRDOC_0001-0832 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Inflation Adjustment of Civil Monetary Penalties | Rule | 2017-02-10T05:00:00Z | 2017 | 2 | 2017-02-10T05:00:00Z | 2017-02-10T12:50:57Z | 2017-01637 | 0 | 0 | 09000064824b8b4f | ||
| OFAC_FRDOC_0001-0822 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Sudanese Sanctions Regulations | Rule | 2017-01-17T05:00:00Z | 2017 | 1 | 2017-01-17T05:00:00Z | 2017-01-17T14:04:33Z | 2017-00844 | 0 | 0 | 090000648247d129 |
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;