documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "OFAC" and document_type = "Proposed Rule" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, posted_date, posted_month, comment_start_date, 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-0939 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Effectiveness of Licensing Procedures for Exportation of Agricultural Commodities, Medicine, and Medical Devices to Sudan and Iran | Proposed Rule | 2018-03-22T04:00:00Z | 2018 | 3 | 2018-03-22T04:00:00Z | 2018-04-24T03:59:59Z | 2018-04-24T01:01:03Z | 2018-05638 | 0 | 0 | 090000648303e68b | |
| OFAC_FRDOC_0001-0722 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Effectiveness of Licensing Procedures: Exportation of Agricultural Commodities, Medicine, and Medical Devices to Sudan and Iran | Proposed Rule | 2015-12-07T05:00:00Z | 2015 | 12 | 2015-12-07T05:00:00Z | 2016-01-07T04:59:59Z | 2016-01-07T22:00:36Z | 2015-30787 | 0 | 0 | 0900006481d896bc | |
| OFAC_FRDOC_0001-0500 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Licensing Procedures for Exportation: Agricultural Commodities, Medicine, and Medical Devices to Sudan And Iran | Proposed Rule | 2013-09-03T04:00:00Z | 2013 | 9 | 2013-09-03T04:00:00Z | 2013-10-04T03:59:59Z | 2013-10-04T01:03:20Z | 2013-21363 | 0 | 0 | 09000064813d6499 | |
| OFAC_FRDOC_0001-0219 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Effectiveness of Licensing Procedures: Exportation of Agricultural Commodities, Medicine, and Medical Devices to Sudan and Iran | Proposed Rule | 2011-04-21T04:00:00Z | 2011 | 4 | 2011-04-21T04:00:00Z | 2011-05-24T03:59:59Z | 2011-07-11T15:01:28Z | 2011-09568 | 0 | 0 | 0900006480c34c02 | |
| OFAC_FRDOC_0001-0026 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Comment Request Regarding the Effectiveness of Licensing Procedures for Exportation of Agricultural Commodities, Medicine, and Medical Devices to Sudan and Iran | Proposed Rule | 2008-11-17T05:00:00Z | 2008 | 11 | 2008-11-17T05:00:00Z | 2008-12-18T04:59:59Z | 2011-07-11T15:01:13Z | E8-27242 | 0 | 0 | 09000064807af98f | |
| OFAC-2007-0029-0001 | OFAC | Comment Request Regarding the Effectiveness of Licensing Procedures for Exportation of Agricultural Commodities, Medicine, and Medical Devices to Sudan and Iran OFAC-2007-0029 | Comment Request Regarding the Effectiveness of Licensing Procedures for Exportation of Agricultural Commodities, Medicine, and Medical Devices to Sudan and Iran | Proposed Rule | NPRM | 2007-02-23T05:00:00Z | 2007 | 2 | 2007-02-23T05:00:00Z | 2007-02-23T19:35:27Z | 0 | 0 | 090000648020ae52 | ||
| OFAC-2007-0004-0001 | OFAC | Reporting and Procedures Regulations: Cuban Assets Control Regulations; Economic Sanctions Enforcement Guidelines; Partial Withdrawal OFAC-2007-0004 | Reporting and Procedures Regulations: Cuban Assets Control Regulations; Economic Sanctions Enforcement Guidelines; Partial Withdrawal | Proposed Rule | NPRM | 2007-02-23T05:00:00Z | 2007 | 2 | 2007-02-23T05:00:00Z | 2007-02-23T17:43:44Z | 0 | 0 | 090000648020ad1d |
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;