documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "USTR-2016-0009" 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)
document_type 2
agency_id 1
- USTR 9
| 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-2016-0009-0056 | USTR | GSP Hearings: Initiation of the 2016 and 2017 Annual Generalized System of Preferences Product and Country Practices Review, etc. USTR-2016-0009 | 2016/2017 Generalized System of Preferences Annual Product Review: Annual Statistics, Acceptance of Public Comments and Withdrawal of Certain Petitions | Notice | 2017-03-03T05:00:00Z | 2017 | 3 | 2017-03-03T05:00:00Z | 2017-03-23T03:59:59Z | 2017-03-23T01:02:16Z | 2017-04121 | 0 | 0 | 09000064824e9409 | |
| USTR-2016-0009-0055 | USTR | GSP Hearings: Initiation of the 2016 and 2017 Annual Generalized System of Preferences Product and Country Practices Review, etc. USTR-2016-0009 | Transcript GSP Hearing February 22, 2017 | Supporting & Related Material | 2017-03-02T05:00:00Z | 2017 | 3 | 2017-03-02T22:14:24Z | 0 | 0 | 09000064824e78df | ||||
| USTR-2016-0009-0054 | USTR | GSP Hearings: Initiation of the 2016 and 2017 Annual Generalized System of Preferences Product and Country Practices Review, etc. USTR-2016-0009 | Lists of 2016 Import statistics relating to Competitive Need Limitations for GSP | Supporting & Related Material | 2017-02-27T05:00:00Z | 2017 | 2 | 2017-02-27T21:10:24Z | 0 | 0 | 09000064824de972 | ||||
| USTR-2016-0009-0053 | USTR | GSP Hearings: Initiation of the 2016 and 2017 Annual Generalized System of Preferences Product and Country Practices Review, etc. USTR-2016-0009 | Agenda for Annual Review 2016-2017 Products Hearing 2-22-17 | Supporting & Related Material | 2017-02-17T05:00:00Z | 2017 | 2 | 2017-02-21T13:25:25Z | 0 | 0 | 09000064824cbed0 | ||||
| USTR-2016-0009-0037 | USTR | GSP Hearings: Initiation of the 2016 and 2017 Annual Generalized System of Preferences Product and Country Practices Review, etc. USTR-2016-0009 | Petitions Accepted in the 2016/2017 Annual Review | Supporting & Related Material | 2017-01-24T05:00:00Z | 2017 | 1 | 2017-01-25T13:08:24Z | 0 | 0 | 09000064824908c5 | ||||
| USTR-2016-0009-0036 | USTR | GSP Hearings: Initiation of the 2016 and 2017 Annual Generalized System of Preferences Product and Country Practices Review, etc. USTR-2016-0009 | Generalized System of Preferences: 2016/2017 Annual Product Review and Certain Country Practice Cases | Notice | 2017-01-23T05:00:00Z | 2017 | 1 | 2017-01-23T05:00:00Z | 2017-03-16T03:59:59Z | 2017-03-16T01:02:22Z | 2017-01362 | 0 | 0 | 0900006482489213 | |
| USTR-2016-0009-0015 | USTR | GSP Hearings: Initiation of the 2016 and 2017 Annual Generalized System of Preferences Product and Country Practices Review, etc. USTR-2016-0009 | FEDERAL REGISTER NOTICE OF INTERIM 2016 IMPORT STATISTICS RELATING TO COMPETITIVE NEEDS LIMITATIONS | Notice | 2016-11-21T05:00:00Z | 2016 | 11 | 2016-11-21T05:00:00Z | 2016-12-03T04:59:59Z | 2016-12-03T02:01:46Z | 0 | 0 | 09000064823ac0d4 | ||
| USTR-2016-0009-0002 | USTR | GSP Hearings: Initiation of the 2016 and 2017 Annual Generalized System of Preferences Product and Country Practices Review, etc. USTR-2016-0009 | Hearings: Initiation of the 2016 and 2017 Annual Generalized System of Preferences Product and Country Practices Review, etc. | Notice | 2016-08-25T04:00:00Z | 2016 | 8 | 2016-08-25T04:00:00Z | 2016-10-05T03:59:59Z | 2016-10-13T01:02:01Z | 2016-20054 | 0 | 0 | 090000648219bd5d | |
| USTR-2016-0009-0001 | USTR | GSP Hearings: Initiation of the 2016 and 2017 Annual Generalized System of Preferences Product and Country Practices Review, etc. USTR-2016-0009 | Generalized System of Preferences: Results of the 2015/2016 Annual GSP Review | Notice | 2016-07-21T00:00:00Z | 2016 | 7 | 2016-10-04T21:08:16Z | 0 | 1 | 09000064820db908 |
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;