documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "BIS", document_type = "Proposed Rule" and posted_year = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, withdrawn, 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-2014-0035-0001 | BIS | Request for Public Comment on the Recordkeeping Requirements of the Export Administration Regulations BIS-2014-0035 | Export Administration Regulations: Recordkeeping Requirements | Proposed Rule | 2014-10-01T04:00:00Z | 2014 | 10 | 2014-10-01T04:00:00Z | 2014-12-02T04:59:59Z | 2014-12-02T03:02:48Z | 2014-23372 | 0 | 0 | 090000648189f97b | |
| BIS-2014-0021-0001 | BIS | Proposed Amendments to the Export Administration Regulations: Special Comprehensive License Provisions BIS-2014-0021 | Proposed Amendments to the Export Administration Regulations: Removal of Special Comprehensive License Provisions | Proposed Rule | 2014-09-30T04:00:00Z | 2014 | 9 | 2014-09-30T04:00:00Z | 2014-10-31T03:59:59Z | 2014-10-03T13:19:01Z | 2014-23078 | 0 | 0 | 090000648189e0c4 | |
| BIS-2014-0040-0001 | BIS | Proposed Amendments to the Export Administration Regulations: Removal of Special Comprehensive License Provisions BIS-2014-0040 | Export Administration Regulations: Removal of Special Comprehensive License Provisions | Proposed Rule | 2014-09-30T00:00:00Z | 2014 | 9 | 2014-10-03T13:22:43Z | 0 | 1 | 090000648189c003 | ||||
| BIS-2014-0034-0001 | BIS | Effectiveness of Licensing Procedures for Agricultural Commodities to Cuba BIS-2014-0034 | Effectiveness of Licensing Procedures for Agricultural Commodities to Cuba | Proposed Rule | 2014-09-04T04:00:00Z | 2014 | 9 | 2014-09-04T04:00:00Z | 2014-10-07T03:59:59Z | 2014-09-23T16:36:47Z | 2014-21081 | 0 | 0 | 090000648185c0dd | |
| BIS-2012-0045-0048 | BIS | Revisions to the Export Administration Regulations (EAR): Control of Military Electronic Equipment and Related Items the President Determines No Longer Warrant Control Under the United States Munitions List (USML) BIS-2012-0045 | Civil Uses of Certain Microwave Monolithic Integrated Circuit Power Amplifiers, Discrete Microwave Transistors and Bi-static and Multi-static Radar | Proposed Rule | 2014-07-01T04:00:00Z | 2014 | 7 | 2014-07-01T04:00:00Z | 2014-09-03T03:59:59Z | 2014-09-04T01:01:47Z | 2014-14682 | 0 | 0 | 0900006481778604 | |
| BIS-2014-0009-0001 | BIS | Proposed Revisions to the Support Document Requirements of the Export Administration Regulations in Response to Executive Order 13563 Regulatory Review BIS-2014-0009 | Export Administration Regulations; Support Document Requirements | Proposed Rule | 2014-04-09T04:00:00Z | 2014 | 4 | 2014-04-09T04:00:00Z | 2014-06-10T03:59:59Z | 2014-06-28T01:07:32Z | 2014-07918 | 0 | 0 | 09000064816ab371 | |
| BIS-2014-0004-0001 | BIS | Delegation of License Requirements Determination and Licensing Responsibility to a Foreign Principal Party BIS-2014-0004 | Delegation of License Requirements Determination and Licensing Responsibility to a Foreign Principal Party | Proposed Rule | 2014-02-06T05:00:00Z | 2014 | 2 | 2014-02-06T05:00:00Z | 2014-04-08T03:59:59Z | 2014-04-08T01:02:08Z | 2014-01176 | 0 | 0 | 090000648154c7f2 | |
| BIS-2010-0021-0003 | BIS | Revisions to Defense Priorities and Allocations System Regulations BIS-2010-0021 | Revisions to Defense Priorities and Allocations System Regulations | Proposed Rule | 2014-01-31T05:00:00Z | 2014 | 1 | 2014-01-31T05:00:00Z | 2014-04-02T03:59:59Z | 2014-01-31T14:33:41Z | 2014-01613 | 0 | 0 | 09000064815394fa |
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;