documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "OFAC", document_type = "Rule" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-0727 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Cyber-Related Sanctions, | Rule | 2015-12-31T05:00:00Z | 2015 | 12 | 2015-12-31T05:00:00Z | 2015-12-31T13:12:31Z | 2015-32881 | 0 | 0 | 0900006481dde897 | ||
| OFAC_FRDOC_0001-0694 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Cuban Assets Control Regulations | Rule | 2015-09-21T04:00:00Z | 2015 | 9 | 2015-09-21T04:00:00Z | 2015-09-21T13:09:00Z | 2015-23587 | 0 | 0 | 0900006481c88483 | ||
| OFAC_FRDOC_0001-0677 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Venezuela Sanctions Regulations | Rule | 2015-07-10T04:00:00Z | 2015 | 7 | 2015-07-10T04:00:00Z | 2015-07-10T13:09:36Z | 2015-16782 | 0 | 0 | 0900006481b78d08 | ||
| OFAC_FRDOC_0001-0668 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Cuban Assets Control: Terrorism List Governments Sanctions | Rule | 2015-06-15T04:00:00Z | 2015 | 6 | 2015-06-15T04:00:00Z | 2015-06-15T12:17:54Z | 2015-14459 | 0 | 0 | 0900006481b364ab | ||
| OFAC_FRDOC_0001-0650 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Syrian Sanctions | Rule | 2015-04-13T04:00:00Z | 2015 | 4 | 2015-04-13T04:00:00Z | 2015-04-13T13:09:14Z | 2015-08374 | 0 | 0 | 0900006481aa1d24 | ||
| OFAC_FRDOC_0001-0637 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Sudanese Sanctions | Rule | 2015-02-18T05:00:00Z | 2015 | 2 | 2015-02-18T05:00:00Z | 2015-02-18T14:22:03Z | 2015-03330 | 0 | 0 | 0900006481a076b5 | ||
| OFAC_FRDOC_0001-0631 | OFAC | Recently Posted OFAC Rules and Notices. OFAC_FRDOC_0001 | Cuban Assets Control Regulations | Rule | 2015-01-16T05:00:00Z | 2015 | 1 | 2015-01-16T05:00:00Z | 2015-01-16T13:55:58Z | 2015-00632 | 0 | 0 | 09000064819cdd59 |
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;