documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "OFAC", document_type = "Rule" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, 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-0404 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Iranian Transactions and Sanctions Regulations | Rule | 2012-12-26T05:00:00Z | 2012 | 12 | 2012-12-26T05:00:00Z | 2012-12-26T14:31:55Z | 2012-30680 | 0 | 0 | 090000648119a542 | ||
| OFAC_FRDOC_0001-0398 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Cuban Assets Control Regulations | Rule | 2012-12-03T05:00:00Z | 2012 | 12 | 2012-12-03T05:00:00Z | 2012-12-03T14:28:09Z | 2012-29100 | 0 | 0 | 090000648117c916 | ||
| OFAC_FRDOC_0001-0387 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Yemen Sanctions Regulations | Rule | 2012-11-09T05:00:00Z | 2012 | 11 | 2012-11-09T05:00:00Z | 2012-11-09T14:37:34Z | 2012-27352 | 0 | 0 | 0900006481164232 | ||
| OFAC_FRDOC_0001-0386 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Iranian Financial Sanctions Regulations | Rule | 2012-11-08T05:00:00Z | 2012 | 11 | 2012-11-08T05:00:00Z | 2012-11-08T14:20:58Z | 2012-27420 | 0 | 0 | 09000064811629c6 | ||
| OFAC_FRDOC_0001-0382 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Iranian Transactions Regulations | Rule | 2012-10-22T04:00:00Z | 2012 | 10 | 2012-10-22T04:00:00Z | 2012-10-22T13:15:33Z | 2012-25770 | 0 | 0 | 090000648114a6ce | ||
| OFAC-2012-0001-0002 | OFAC | Iranian Financial Sanctions Regulations OFAC-2012-0001 | Iranian Transactions Regulations | Rule | 2012-03-20T04:00:00Z | 2012 | 3 | 2012-03-20T04:00:00Z | 2012-03-24T19:31:46Z | 2012-06606 | 0 | 0 | 0900006480fdb7c2 | ||
| OFAC-2012-0001-0001 | OFAC | Iranian Financial Sanctions Regulations OFAC-2012-0001 | Iranian Financial Sanctions Regulations | Rule | 2012-02-27T05:00:00Z | 2012 | 2 | 2012-02-27T05:00:00Z | 2012-02-28T14:40:05Z | 2012-04472 | 0 | 0 | 0900006480fc3086 | ||
| OFAC_FRDOC_0001-0305 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Cote d'Ivoire, Darfur, and Democratic Republic of the Congo Sanctions: Definition of the Term Financial, Material, or Technological Support | Rule | 2012-02-08T05:00:00Z | 2012 | 2 | 2012-02-08T05:00:00Z | 2012-02-08T13:47:12Z | 2012-02814 | 0 | 0 | 0900006480fb037d | ||
| OFAC_FRDOC_0001-0295 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Reporting, Procedures and Penalties Regulations: Transnational Criminal Organizations Sanctions Regulations | Rule | 2012-01-12T05:00:00Z | 2012 | 1 | 2012-01-12T05:00:00Z | 2012-01-12T13:44:45Z | 2012-00156 | 0 | 0 | 0900006480f93ea7 |
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;