documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "USTR-2008-0036" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-0036-0593 | USTR | Section 301 EC Beef Hormones Dispute USTR-2008-0036 | Delay in Modification of Action Taken: WTO Dispute Settlement Proceedings on the European Communities' Ban on Imports of U.S. Beef and Beef Products; Correction | Notice | 2021-08-16T04:00:00Z | 2021 | 8 | 2021-08-16T04:00:00Z | 2021-08-16T18:02:53Z | Z9-05933 | 0 | 0 | 090000648092b7be | ||
| USTR-2008-0036-0592 | USTR | Section 301 EC Beef Hormones Dispute USTR-2008-0036 | Additional Delay in Modification of Action Taken in Connection with WTO Dispute Settlement Proceedingson the European Communities' Ban on Imports of U.S. Beef and Beef Products | Notice | 2009-05-13T04:00:00Z | 2009 | 5 | 2009-05-13T04:00:00Z | 2009-05-13T14:56:01Z | E9-11173 | 0 | 0 | 090000648098e81d | ||
| USTR-2008-0036-0591 | USTR | Section 301 EC Beef Hormones Dispute USTR-2008-0036 | Additional Delay in Modification of Action Taken in Connection With WTO Dispute Settlement Proceedings on the European Communities' Ban on Imports of U.S. Beef and Beef Products | Notice | 2009-04-28T04:00:00Z | 2009 | 4 | 2009-04-28T04:00:00Z | 2009-04-28T16:28:19Z | E9-09628 | 0 | 0 | 090000648096e3c3 | ||
| USTR-2008-0036-0590 | USTR | Section 301 EC Beef Hormones Dispute USTR-2008-0036 | Delay in Modification of Action Taken: WTO Dispute Settlement Proceedings on the European Communities' Ban on Imports of U.S. Beef and Beef Products | Notice | 2009-03-18T04:00:00Z | 2009 | 3 | 2009-03-18T04:00:00Z | 2009-03-18T14:41:49Z | E9-05933 | 0 | 0 | 090000648091b6a9 | ||
| USTR-2008-0036-0589 | USTR | Section 301 EC Beef Hormones Dispute USTR-2008-0036 | WTO Dispute Settlement Proceedings: European Communities Ban on Imports of U.S. Beef and Beef Products | Notice | 2009-01-23T05:00:00Z | 2009 | 1 | 2009-01-23T05:00:00Z | 2009-03-24T03:59:59Z | 2009-01-26T16:06:16Z | E9-01257 | 0 | 0 | 090000648082ca84 | |
| USTR-2008-0036-0001 | USTR | Section 301 EC Beef Hormones Dispute USTR-2008-0036 | Review of Action Taken in Connection With WTO Dispute Settlement Proceedings on the European Communities Measures Concerning Meat and Meat Products | Notice | 2008-11-06T05:00:00Z | 2008 | 11 | 2008-11-06T05:00:00Z | 2008-12-09T04:59:59Z | 2008-11-06T15:31:40Z | E8-26545 | 0 | 0 | 0900006480797b07 |
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;