documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "USTR-2013-0007" and posted_year = 2013 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| USTR-2013-0007-0013 | USTR | GSP Country Practice Review - Uzbekistan (WR) USTR-2013-0007 | March 28, 2013 - Hearing Transcripts | Supporting & Related Material | 2013-04-11T04:00:00Z | 2013 | 4 | 2020-01-22T00:24:04Z | 0 | 0 | 09000064812905a3 | ||||
| USTR-2013-0007-0012 | USTR | GSP Country Practice Review - Uzbekistan (WR) USTR-2013-0007 | Post-Hearing Questions – March 28, 2013 | Supporting & Related Material | 2013-04-08T04:00:00Z | 2013 | 4 | 2013-04-08T15:45:43Z | 0 | 0 | 0900006481281036 | ||||
| USTR-2013-0007-0011 | USTR | GSP Country Practice Review - Uzbekistan (WR) USTR-2013-0007 | Hearing Agenda - March 28, 2013 | Supporting & Related Material | 2013-03-22T04:00:00Z | 2013 | 3 | 2013-03-22T12:50:02Z | 0 | 0 | 090000648123d2b2 | ||||
| USTR-2013-0007-0005 | USTR | GSP Country Practice Review - Uzbekistan (WR) USTR-2013-0007 | Post-Hearing Brief - International Labor Rights Forum - January 2012 | Supporting & Related Material | 2013-03-01T05:00:00Z | 2013 | 3 | 2013-03-01T17:22:06Z | 0 | 0 | 090000648121372e | ||||
| USTR-2013-0007-0008 | USTR | GSP Country Practice Review - Uzbekistan (WR) USTR-2013-0007 | Post-Hearing Q's & A's - January 2012 | Supporting & Related Material | 2013-03-01T05:00:00Z | 2013 | 3 | 2013-03-01T17:23:27Z | 0 | 0 | 0900006481213732 | ||||
| USTR-2013-0007-0007 | USTR | GSP Country Practice Review - Uzbekistan (WR) USTR-2013-0007 | Hearing Agenda - January 2012 | Supporting & Related Material | 2013-03-01T05:00:00Z | 2013 | 3 | 2013-03-01T17:22:16Z | 0 | 0 | 090000648121363e | ||||
| USTR-2013-0007-0006 | USTR | GSP Country Practice Review - Uzbekistan (WR) USTR-2013-0007 | Rqst to Testify - International Labor Rights Forum - January 2012 | Supporting & Related Material | 2013-03-01T05:00:00Z | 2013 | 3 | 2013-03-01T17:22:12Z | 0 | 0 | 0900006481213645 | ||||
| USTR-2013-0007-0003 | USTR | GSP Country Practice Review - Uzbekistan (WR) USTR-2013-0007 | Hearing Transcripts - January 24, 2012 | Supporting & Related Material | 2013-02-25T05:00:00Z | 2013 | 2 | 2013-02-25T17:56:07Z | 0 | 0 | 0900006481207670 | ||||
| USTR-2013-0007-0004 | USTR | GSP Country Practice Review - Uzbekistan (WR) USTR-2013-0007 | Hearing Transcripts - January 25, 2012 | Supporting & Related Material | 2013-02-25T05:00:00Z | 2013 | 2 | 2013-02-25T17:56:08Z | 0 | 0 | 0900006481207672 | ||||
| USTR-2013-0007-0001 | USTR | GSP Country Practice Review - Uzbekistan (WR) USTR-2013-0007 | Generalized System of Preferences: Status of Certain Pending Country Practice Petitions; Schedule for Public Comments and Hearing on Certain Country Practice Reviews | Notice | 2013-02-22T05:00:00Z | 2013 | 2 | 2013-02-22T05:00:00Z | 2018-11-14T04:59:59Z | 2018-11-15T02:02:38Z | 2013-04039 | 0 | 0 | 0900006481202f7d | |
| USTR-2013-0007-0002 | USTR | GSP Country Practice Review - Uzbekistan (WR) USTR-2013-0007 | Original Petition - ILRF - June 21, 2007 | Supporting & Related Material | 2013-02-22T05:00:00Z | 2013 | 2 | 2013-02-22T16:39:05Z | 0 | 0 | 0900006481203a84 |
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;