documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "TREAS-DO-2008-0014" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, comment_end_date, last_modified, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| TREAS-DO-2008-0014-0009 | TREAS | Customs revenue function TREAS-DO-2008-0014 | Haitian Hemispheric Opportunity Through Partnership Encouragement Acts of 2006 and 2008 | Rule | Final Rule | 2008-09-30T04:00:00Z | 2008 | 9 | 2008-09-30T04:00:00Z | 2011-06-11T18:01:26Z | E8-23008 | 0 | 0 | 090000648072e3fb | |
| TREAS-DO-2008-0014-0005 | TREAS | Customs revenue function TREAS-DO-2008-0014 | Extension of Import Restrictions Imposed on Archaeological Material From Cambodia | Rule | Final Rule | 2008-09-19T04:00:00Z | 2008 | 9 | 2008-09-19T04:00:00Z | 2011-06-11T18:01:27Z | E8-22034 | 0 | 0 | 090000648070f551 | |
| TREAS-DO-2008-0014-0006 | TREAS | Customs revenue function TREAS-DO-2008-0014 | Uniform Rules of Origin for Imported Merchandise | Proposed Rule | NPRM | 2008-09-08T04:00:00Z | 2008 | 9 | 2008-09-08T04:00:00Z | 2008-10-24T03:59:59Z | 2011-06-11T18:01:26Z | E8-20662 | 0 | 0 | 09000064806f82b6 |
| TREAS-DO-2008-0014-0008 | TREAS | Customs revenue function TREAS-DO-2008-0014 | First Sale Declaration Requirement | Rule | Interim Rule | 2008-08-25T04:00:00Z | 2008 | 8 | 2008-08-25T04:00:00Z | 2008-10-25T03:59:59Z | 2011-06-11T18:01:28Z | E8-19640 | 0 | 0 | 09000064806d8037 |
| TREAS-DO-2008-0014-0007 | TREAS | Customs revenue function TREAS-DO-2008-0014 | Entry Requirements for Certain Softwood Lumber Products Exported From Any Country Into the United States | Rule | Interim Rule | 2008-08-25T04:00:00Z | 2008 | 8 | 2008-08-25T04:00:00Z | 2008-10-25T03:59:59Z | 2011-06-11T18:01:27Z | E8-19641 | 0 | 0 | 09000064806d8090 |
| TREAS-DO-2008-0014-0004 | TREAS | Customs revenue function TREAS-DO-2008-0014 | United States-Morocco Free Trade Agreement | Rule | Final Rule | 2008-08-05T04:00:00Z | 2008 | 8 | 2008-08-05T04:00:00Z | 2008-08-06T15:31:25Z | E8-17968 | 0 | 0 | 09000064806aeda9 | |
| TREAS-DO-2008-0014-0003 | TREAS | Customs revenue function TREAS-DO-2008-0014 | Electronic Payment and Refund of Quarterly Harbor Maintenance Fees | Proposed Rule | NPRM | 2008-08-05T04:00:00Z | 2008 | 8 | 2008-08-05T04:00:00Z | 2008-10-07T03:59:59Z | 2008-10-06T11:10:30Z | E8-17967 | 0 | 0 | 09000064806aed19 |
| TREAS-DO-2008-0014-0002 | TREAS | Customs revenue function TREAS-DO-2008-0014 | Entry of Softwood Lumber Products From Canada | Rule | Interim Rule | 2008-04-17T04:00:00Z | 2008 | 4 | 2008-04-17T04:00:00Z | 2011-06-11T18:01:26Z | E8-08095 | 0 | 0 | 090000648050c21f | |
| TREAS-DO-2008-0014-0001 | TREAS | Customs revenue function TREAS-DO-2008-0014 | United States-Jordan Free Trade Agreement | Rule | Interim Rule | 2008-03-31T04:00:00Z | 2008 | 3 | 2008-03-31T04:00:00Z | 2011-06-11T18:01:27Z | E8-06511 | 0 | 0 | 0900006480414850 | |
| TREAS-DO-2008-0014-0018 | TREAS | Customs revenue function TREAS-DO-2008-0014 | Standards for the Administrative Collection of Claims | Rule | Interim Rule | 2008-03-07T05:00:00Z | 2008 | 3 | 2008-03-07T05:00:00Z | 2008-04-08T03:59:59Z | 2015-10-15T14:33:41Z | E8-04586 | 0 | 0 | 09000064803eac89 |
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;