documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where agency_id = "ITA", document_type = "Proposed Rule" and posted_year = 2010 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ITA-2010-0011-0002 | ITA | Antidumping Proceedings: Calculation of the Weighted Average Dumping Margin and Assessment Rate in Certain Antidumping Duty Proceedings ITA-2010-0011 | Antidumping Proceedings: Calculation of the Weighted Average Dumping Margin and Assessment Rate in Certain Antidumping Duty Proceedings | Proposed Rule | 2010-12-28T05:00:00Z | 2010 | 12 | 2010-12-28T05:00:00Z | 2011-02-19T04:59:59Z | 2011-06-11T17:31:00Z | 2010-32632 | 0 | 0 | 0900006480bc0bad | |
| ITA-2010-0003-0001 | ITA | Antidumping and Countervailing Duty Proceedings: Electronic Filing Procedures; APO Procedures; Proposed Rule ITA-2010-0003 | Antidumping and Countervailing Duty Proceedings: Electronic Filing Procedures; Administrative Protective Order Procedures | Proposed Rule | 2010-07-28T04:00:00Z | 2010 | 7 | 2010-07-28T04:00:00Z | 2010-09-28T03:59:59Z | 2011-06-11T17:30:59Z | 2010-18389 | 0 | 0 | 0900006480b225a9 | |
| ITA-2020-0005-0011 | ITA | Quarterly Update to Cheese Subject to an In-Quota Rate of Duty ITA-2020-0005 | Import Administration IA ACCESS Pilot Program | Proposed Rule | 2010-06-21T00:00:00Z | 2010 | 6 | 2023-09-27T18:53:06Z | 0 | 1 | 0900006480b06f6c | ||||
| ITA-2010-0002-0001 | ITA | Import Administration IA ACCESS Pilot Program ITA-2010-0002 | Import Administration IA ACCESS Pilot Program | Proposed Rule | 2010-06-08T04:00:00Z | 2010 | 6 | 2010-06-08T04:00:00Z | 2010-07-09T03:59:59Z | 2010-06-10T13:26:58Z | 2010-13733 | 0 | 0 | 0900006480afe35c |
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;