documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "USTR-2008-0045" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, withdrawn, 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-2008-0045-0025 | USTR | GSP 2008AR FRN CNLW Petitions USTR-2008-0045 | Presidential Proclamation for 2008 Annual Review | Supporting & Related Material | 2009-07-09T04:00:00Z | 2009 | 7 | 2009-07-09T14:08:49Z | 0 | 0 | 09000064809e6d12 | ||||
| USTR-2008-0045-0027 | USTR | GSP 2008AR FRN CNLW Petitions USTR-2008-0045 | Federal Register Notice: RESULTS OF THE 2008 GSP ANNUAL REVIEW | Supporting & Related Material | 2009-07-09T04:00:00Z | 2009 | 7 | 2009-07-09T14:12:29Z | 0 | 0 | 09000064809ed353 | ||||
| USTR-2008-0045-0028 | USTR | GSP 2008AR FRN CNLW Petitions USTR-2008-0045 | Generalized System of Preferences (GSP): Notice of the Results of the 2008 Annual Product Reviews | Notice | 2009-07-09T04:00:00Z | 2009 | 7 | 2009-07-09T04:00:00Z | 2009-07-14T18:52:26Z | E9-16083 | 0 | 0 | 09000064809ed1ea | ||
| USTR-2008-0045-0026 | USTR | GSP 2008AR FRN CNLW Petitions USTR-2008-0045 | FEDERAL REGISTER NOTICE: RESULTS OF THE 2008 GSP ANNUAL REVIEW | Supporting & Related Material | 2009-07-09T00:00:00Z | 2009 | 7 | 2009-07-09T14:10:06Z | 0 | 1 | 09000064809ece1d | ||||
| USTR-2008-0045-0022 | USTR | GSP 2008AR FRN CNLW Petitions USTR-2008-0045 | USTR's Press Release for the 2008 GSP Annual Review | Supporting & Related Material | 2009-06-30T04:00:00Z | 2009 | 6 | 2009-06-30T21:00:04Z | 0 | 0 | 09000064809e6c36 | ||||
| USTR-2008-0045-0023 | USTR | GSP 2008AR FRN CNLW Petitions USTR-2008-0045 | Presidential Proclamation for 2008 Annual Review | Supporting & Related Material | 2009-06-30T04:00:00Z | 2009 | 6 | 2009-06-30T21:00:05Z | 0 | 0 | 09000064809e6d15 | ||||
| USTR-2008-0045-0024 | USTR | GSP 2008AR FRN CNLW Petitions USTR-2008-0045 | Results for the 2008 Annual Review | Supporting & Related Material | 2009-06-30T04:00:00Z | 2009 | 6 | 2009-06-30T21:00:06Z | 0 | 0 | 09000064809e6d17 | ||||
| USTR-2008-0045-0001 | USTR | GSP 2008AR FRN CNLW Petitions USTR-2008-0045 | Generalized System of Preferences (GSP): Acceptance of Competitive Need Limitation Waiver and Further Review of Country Practice Petitions (2008 Annual Review) | Notice | 2009-01-21T05:00:00Z | 2009 | 1 | 2009-03-09T04:00:00Z | 2009-03-13T03:59:59Z | 2009-03-24T14:11:50Z | E9-01149 | 0 | 0 | 0900006480829433 |
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;