documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "USTR_FRDOC_0001" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, last_modified, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| USTR_FRDOC_0001-0364 | USTR | Recently Posted USTR Rules and Notices. USTR_FRDOC_0001 | Procurement Thresholds; Determinations, | Notice | 2015-12-15T05:00:00Z | 2015 | 12 | 2015-12-15T05:00:00Z | 2020-03-30T17:48:43Z | 2015-31503 | 0 | 0 | 0900006481da74c4 | ||
| USTR_FRDOC_0001-0362 | USTR | Recently Posted USTR Rules and Notices. USTR_FRDOC_0001 | Determination of Trade Surplus: Certain Sugar and Syrup Goods and Sugar-Containing Products of Chile, Morocco, Costa Rica, the Dominican Republic, El Salvador, Guatemala, Honduras, Nicaragua, Peru, Colombia, and Panama, | Notice | 2015-12-11T05:00:00Z | 2015 | 12 | 2015-12-11T05:00:00Z | 2020-03-30T17:48:43Z | 2015-31192 | 0 | 0 | 0900006481d9d4d2 | ||
| USTR_FRDOC_0001-0354 | USTR | Recently Posted USTR Rules and Notices. USTR_FRDOC_0001 | Determination Under the Caribbean Basin Trade Partnership Act | Notice | 2015-08-25T04:00:00Z | 2015 | 8 | 2015-08-25T04:00:00Z | 2020-03-30T17:48:43Z | 2015-20921 | 0 | 0 | 0900006481c36edf | ||
| USTR_FRDOC_0001-0348 | USTR | Recently Posted USTR Rules and Notices. USTR_FRDOC_0001 | Determination Regarding Waiver of Discriminatory Purchasing Requirements with Respect to Goods and Services of New Zealand | Notice | 2015-08-12T04:00:00Z | 2015 | 8 | 2015-08-12T04:00:00Z | 2020-03-30T17:48:43Z | 2015-19746 | 0 | 0 | 0900006481c19bb5 | ||
| USTR_FRDOC_0001-0344 | USTR | Recently Posted USTR Rules and Notices. USTR_FRDOC_0001 | Fiscal Year 2016 Tariff-Rate Quota Allocations for Raw Cane Sugar, Refined and Specialty Sugar and Sugar-Containing Products | Notice | 2015-07-15T04:00:00Z | 2015 | 7 | 2015-07-15T04:00:00Z | 2020-03-30T17:48:43Z | 2015-17337 | 0 | 0 | 0900006481b8696b | ||
| USTR_FRDOC_0001-0343 | USTR | Recently Posted USTR Rules and Notices. USTR_FRDOC_0001 | Determinations Regarding Waivers of Discriminatory Purchasing Requirements: Goods and Services of Montenegro | Notice | 2015-07-10T04:00:00Z | 2015 | 7 | 2015-07-10T04:00:00Z | 2020-03-30T17:48:43Z | 2015-16955 | 0 | 0 | 0900006481b78d67 | ||
| USTR_FRDOC_0001-0340 | USTR | Recently Posted USTR Rules and Notices. USTR_FRDOC_0001 | Agreement on Government Procurement; Effective Date of Amendments for Armenia | Notice | 2015-06-26T04:00:00Z | 2015 | 6 | 2015-06-26T04:00:00Z | 2020-03-30T17:48:43Z | 2015-15695 | 0 | 0 | 0900006481b5722c | ||
| USTR_FRDOC_0001-0339 | USTR | Recently Posted USTR Rules and Notices. USTR_FRDOC_0001 | Tariff-Rate Quotas: Volume for Raw Cane Sugar; Reallocation | Notice | 2015-06-08T04:00:00Z | 2015 | 6 | 2015-06-08T04:00:00Z | 2020-03-30T17:48:42Z | 2015-13887 | 0 | 0 | 0900006481b211af | ||
| USTR_FRDOC_0001-0335 | USTR | Recently Posted USTR Rules and Notices. USTR_FRDOC_0001 | List of Countries Denying Fair Market Opportunities for Government-Funded Airport Construction Projects | Notice | 2015-04-24T04:00:00Z | 2015 | 4 | 2015-04-24T04:00:00Z | 2020-03-30T17:48:42Z | 2015-09559 | 0 | 0 | 0900006481ab86f9 |
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;