documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "USTR_FRDOC_0001" and posted_year = 2026 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, open_for_comment, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| USTR_FRDOC_0001-0926 | USTR | Recently Posted USTR Rules and Notices. USTR_FRDOC_0001 | Charter Amendments, Establishments, Renewals and Terminations: Industry Trade Advisory Committees, Request for Membership Application | Notice | 2026-03-12T04:00:00Z | 2026 | 3 | 2026-03-12T04:00:00Z | 2026-03-12T16:56:01Z | 2026-04861 | 0 | 0 | 09000064b9210324 | ||
| USTR_FRDOC_0001-0925 | USTR | Recently Posted USTR Rules and Notices. USTR_FRDOC_0001 | Charter Amendments, Establishments, Renewals and Terminations: Intergovernmental Policy Advisory Committee on Trade; Requests for Nominations | Notice | 2026-03-04T05:00:00Z | 2026 | 3 | 2026-03-04T05:00:00Z | 2026-03-04T17:56:40Z | 2026-04245 | 0 | 0 | 09000064b91ef9ac | ||
| USTR_FRDOC_0001-0924 | USTR | Recently Posted USTR Rules and Notices. USTR_FRDOC_0001 | Charter Amendments, Establishments, Renewals and Terminations: Advisory Committee for Trade Policy and Negotiations; Requests for Nominations | Notice | 2026-03-04T05:00:00Z | 2026 | 3 | 2026-03-04T05:00:00Z | 2026-03-04T17:56:38Z | 2026-04242 | 0 | 0 | 09000064b91ef9a9 | ||
| USTR_FRDOC_0001-0922 | USTR | Recently Posted USTR Rules and Notices. USTR_FRDOC_0001 | Charter Amendments, Establishments, Renewals and Terminations: Trade Advisory Committee on Africa; Requests for Nominations | Notice | 2026-03-04T05:00:00Z | 2026 | 3 | 2026-03-04T05:00:00Z | 2026-03-04T17:55:32Z | 2026-04243 | 0 | 0 | 09000064b91ed689 | ||
| USTR_FRDOC_0001-0923 | USTR | Recently Posted USTR Rules and Notices. USTR_FRDOC_0001 | Charter Amendments, Establishments, Renewals and Terminations: Trade and Environment Policy Advisory Committee; Requests for Nominations | Notice | 2026-03-04T05:00:00Z | 2026 | 3 | 2026-03-04T05:00:00Z | 2026-03-04T17:55:42Z | 2026-04246 | 0 | 0 | 09000064b91eef60 | ||
| USTR_FRDOC_0001-0921 | USTR | Recently Posted USTR Rules and Notices. USTR_FRDOC_0001 | Design of a Plurilateral Agreement on Trade in Critical Minerals and Policy Actions to Strengthen the Resilience of Critical Mineral Supply Chains | Notice | 2026-02-26T05:00:00Z | 2026 | 2 | 2026-02-26T05:00:00Z | 2026-03-20T03:59:59Z | 2026-03-13T09:00:24Z | 2026-03868 | 1 | 0 | 09000064b91deb45 | |
| USTR_FRDOC_0001-0920 | USTR | Recently Posted USTR Rules and Notices. USTR_FRDOC_0001 | Procurement Thresholds for Implementation of the Trade Agreements Act | Notice | 2026-02-03T05:00:00Z | 2026 | 2 | 2026-02-03T05:00:00Z | 2026-02-03T17:30:24Z | 2026-02106 | 0 | 0 | 09000064b918c738 | ||
| USTR_FRDOC_0001-0919 | USTR | Recently Posted USTR Rules and Notices. USTR_FRDOC_0001 | Procurement Thresholds for Implementation of the Trade Agreements Act of 1979 | Notice | 2026-01-02T05:00:00Z | 2026 | 1 | 2026-01-02T05:00:00Z | 2026-01-13T23:37:34Z | 2025-24130 | 0 | 0 | 09000064b9114024 |
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;