documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "BIS" and docket_id = "BIS_FRDOC_0001" 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_FRDOC_0001-0714 | BIS | Recently Posted BIS Rules and Notices. BIS_FRDOC_0001 | Export Administration Regulations: Cambodia | Rule | 2026-02-04T05:00:00Z | 2026 | 2 | 2026-02-04T05:00:00Z | 2026-02-04T17:30:41Z | 2026-02262 | 0 | 0 | 09000064b91901de | ||
| BIS_FRDOC_0001-0711 | BIS | Recently Posted BIS Rules and Notices. BIS_FRDOC_0001 | The Commerce Control List; CFR Correction | Rule | 2025-12-05T05:00:00Z | 2025 | 12 | 2025-12-05T05:00:00Z | 2025-12-05T18:27:32Z | 2025-22137 | 0 | 0 | 09000064b90b0074 | ||
| BIS_FRDOC_0001-0710 | BIS | Recently Posted BIS Rules and Notices. BIS_FRDOC_0001 | Revisions to the Entity List | Rule | 2025-11-12T05:00:00Z | 2025 | 11 | 2025-11-12T05:00:00Z | 2025-11-12T18:16:04Z | 2025-19858 | 0 | 0 | 09000064b907d9f3 | ||
| BIS_FRDOC_0001-0705 | BIS | Recently Posted BIS Rules and Notices. BIS_FRDOC_0001 | Adoption and Procedures of the Section 232 Automobile Parts Tariff Inclusions Process | Rule | 2025-09-17T04:00:00Z | 2025 | 9 | 2025-09-17T04:00:00Z | 2025-11-04T04:59:59Z | 2025-11-04T10:00:11Z | 2025-18015 | 0 | 0 | 09000064b8fa54a2 | |
| BIS_FRDOC_0001-0482 | BIS | Recently Posted BIS Rules and Notices. BIS_FRDOC_0001 | Wassenaar Arrangement 2018 Plenary Decisions Implementation: Revisions Related to National Security Controls | Rule | 2020-09-11T04:00:00Z | 2020 | 9 | 2020-09-11T04:00:00Z | 2020-09-11T11:49:31Z | 2020-16286 | 0 | 0 | 0900006484852044 |
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;