documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "USTR-2009-0037" 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-2009-0037-0050 | USTR | 2009 Annual Competitive Need Limitations (CNL) Waiver Review USTR-2009-0037 | Generalized System of Preferences: Results of the 2009 Annual Product Reviews | Notice | 2010-07-13T04:00:00Z | 2010 | 7 | 2010-07-13T04:00:00Z | 2010-07-13T15:33:52Z | 2010-17012 | 0 | 0 | 0900006480b181d4 | ||
| USTR-2009-0037-0029 | USTR | 2009 Annual Competitive Need Limitations (CNL) Waiver Review USTR-2009-0037 | GENERALIZED SYSTEM OF PREFERENCES (GSP): NOTICE OF CHANGE IN DEADLINE FOR POST-HEARING COMMENTS ON A WAIVER OF THE COMPETITIVE NEED LIMITATION (CNL) FOR CERTAIN TIRES FROM THAILAND | Notice | 2010-02-17T05:00:00Z | 2010 | 2 | 2010-02-17T05:00:00Z | 2010-03-10T04:59:59Z | 2010-02-17T20:46:39Z | 0 | 0 | 0900006480aa6968 | ||
| USTR-2009-0037-0028 | USTR | 2009 Annual Competitive Need Limitations (CNL) Waiver Review USTR-2009-0037 | GENERALIZED SYSTEM OF PREFERENCES (GSP): NOTICE OF POSTPONEMENT OF PUBLIC HEARING ON CNL WAIVER PETITION | Notice | 2010-02-17T05:00:00Z | 2010 | 2 | 2010-02-17T05:00:00Z | 2010-02-17T20:44:28Z | 0 | 0 | 0900006480a903c3 | |||
| USTR-2009-0037-0026 | USTR | 2009 Annual Competitive Need Limitations (CNL) Waiver Review USTR-2009-0037 | GENERALIZED SYSTEM OF PREFERENCES (GSP): NOTICE OF POSTPONEMENT OF PUBLIC HEARING ON CNL WAIVER PETITION | Notice | 2010-02-11T05:00:00Z | 2010 | 2 | 2010-02-11T05:00:00Z | 2010-02-11T15:08:53Z | 0 | 0 | 0900006480a903c1 | |||
| USTR-2009-0037-0013 | USTR | 2009 Annual Competitive Need Limitations (CNL) Waiver Review USTR-2009-0037 | Generalized System of Preferences (GSP): Acceptance of Petitions to Grant a Competitive Need Limitation Waiver | Notice | 2010-01-05T05:00:00Z | 2010 | 1 | 2010-01-05T05:00:00Z | 2010-05-04T03:59:59Z | 2010-04-28T20:21:37Z | E9-31378 | 0 | 0 | 0900006480a76ec7 | |
| USTR-2009-0037-0001 | USTR | 2009 Annual Competitive Need Limitations (CNL) Waiver Review USTR-2009-0037 | Generalized System of Preferences (GSP): Notice Regarding the Filing of Petitions Requesting Competitive Need Limitations (CNL) Waivers for the 2009 GSP Annual Review | Notice | 2009-11-03T05:00:00Z | 2009 | 11 | 2009-11-03T05:00:00Z | 2009-11-18T04:59:59Z | 2013-04-24T16:14:33Z | E9-26409 | 0 | 0 | 0900006480a4fe50 |
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;