documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where agency_id = "BIS", document_type = "Proposed Rule" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| BIS-2016-0023-0001 | BIS | Temporary Exports to Mexico Under License Exception TMP BIS-2016-0023 | License Exceptions: Temporary Exports to Mexico | Proposed Rule | 2016-08-23T04:00:00Z | 2016 | 8 | 2016-08-23T04:00:00Z | 2016-10-25T03:59:59Z | 2016-09-27T13:38:50Z | 2016-19670 | 0 | 0 | 0900006482193b36 | |
| BIS-2016-0017-0001 | BIS | Amendment to the Export Administration Regulations: Removal of Special Iraq Reconstruction License BIS-2016-0017 | Export Administration: Removal of Special Iraq Reconstruction License | Proposed Rule | 2016-06-07T04:00:00Z | 2016 | 6 | 2016-06-07T04:00:00Z | 2016-07-08T03:59:59Z | 2016-06-08T16:12:05Z | 2016-13397 | 0 | 0 | 0900006482018b62 | |
| BIS-2015-0016-0003 | BIS | Revisions to the Export Administration Regulations (EAR): Control of Fire Control, Range Finder, Optical, and Guidance and Control Equipment the President Determines No Longer Warrant Control Under the United States Munitions List (USML) BIS-2015-0016 | Export Administration Regulations: Control of Fire Control, Laser, Imaging, and Guidance and Control Equipment, etc. | Proposed Rule | 2016-02-19T05:00:00Z | 2016 | 2 | 2016-02-19T05:00:00Z | 2016-04-05T03:59:59Z | 2016-04-04T23:00:31Z | 2016-03182 | 0 | 0 | 0900006481e785d4 | |
| BIS-2016-0009-0001 | BIS | Clarifications and Revisions to Military Aircraft, Gas Turbine Engines and Related Items License Requirements BIS-2016-0009 | Clarifications and Revisions to Military Aircraft, Gas Turbine Engines and Related Items License Requirements | Proposed Rule | 2016-02-09T05:00:00Z | 2016 | 2 | 2016-02-09T05:00:00Z | 2016-03-26T03:59:59Z | 2016-03-28T12:00:15Z | 2016-02591 | 0 | 0 | 0900006481e5ce9b |
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;