documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "USTR-2015-0013" and document_type = "Notice" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-2015-0013-0149 | USTR | Generalized System of Preferences (GSP): Notice of Initiation of the 2015 Annual GSP Product and Country Practices Review; Deadlines for Filing Petitions USTR-2015-0013 | Hearings: Initiation of the 2016 and 2017 Annual Generalized System of Preferences Product and Country Practices Review, etc. | Notice | 2016-09-20T04:00:00Z | 2016 | 9 | 2016-09-20T04:00:00Z | 2016-11-02T03:59:59Z | 2016-11-08T02:01:02Z | 2016-20054 | 0 | 0 | 090000648222ecf2 | |
| USTR-2015-0013-0096 | USTR | Generalized System of Preferences (GSP): Notice of Initiation of the 2015 Annual GSP Product and Country Practices Review; Deadlines for Filing Petitions USTR-2015-0013 | 2015/2016 Generalized System of Preferences Annual Product Review | Notice | 2016-02-29T05:00:00Z | 2016 | 2 | 2016-02-29T05:00:00Z | 2016-04-05T03:59:59Z | 2016-06-14T01:00:32Z | 2016-04301 | 0 | 0 | 0900006481e8f46e | |
| USTR-2015-0013-0056 | USTR | Generalized System of Preferences (GSP): Notice of Initiation of the 2015 Annual GSP Product and Country Practices Review; Deadlines for Filing Petitions USTR-2015-0013 | 2015/2016 Generalized System of Preferences Annual Product Review | Notice | 2016-01-11T05:00:00Z | 2016 | 1 | 2016-01-11T05:00:00Z | 2016-03-29T03:59:59Z | 2016-04-19T20:21:05Z | 2016-00088 | 0 | 0 | 0900006481dfc60e | |
| USTR-2015-0013-0043 | USTR | Generalized System of Preferences (GSP): Notice of Initiation of the 2015 Annual GSP Product and Country Practices Review; Deadlines for Filing Petitions USTR-2015-0013 | Generalized System of Preferences: Import Statistics Relating to Competitive Need Limitations and Extension of Deadline for Filing Petitions for 2015 CNLs Waivers | Notice | 2015-11-17T05:00:00Z | 2015 | 11 | 2015-11-17T05:00:00Z | 2016-02-20T04:59:59Z | 2016-02-27T21:39:22Z | 2015-29233 | 0 | 0 | 0900006481d4d572 | |
| USTR-2015-0013-0001 | USTR | Generalized System of Preferences (GSP): Notice of Initiation of the 2015 Annual GSP Product and Country Practices Review; Deadlines for Filing Petitions USTR-2015-0013 | Petitions: 2015 Annual Generalized System of Preferences Product and Country Practices Review; Deadlines | Notice | 2015-08-19T04:00:00Z | 2015 | 8 | 2015-08-19T04:00:00Z | 2016-09-20T15:55:34Z | 2015-20456 | 0 | 0 | 0900006481c29fae |
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;