documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "ITA", document_type = "Rule" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date (date), comment_start_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_FRDOC_0001-6714 | ITA | Recently Posted ITA Rules and Notices. ITA_FRDOC_0001 | Aluminum Import Monitoring and Analysis System | Rule | 2020-12-23T05:00:00Z | 2020 | 12 | 2020-12-23T05:00:00Z | 2020-12-23T12:54:04Z | 2020-28166 | 0 | 0 | 09000064849c0d52 | ||
| ITA_FRDOC_0001-6453 | ITA | Recently Posted ITA Rules and Notices. ITA_FRDOC_0001 | Steel Import Monitoring and Analysis System | Rule | 2020-09-11T04:00:00Z | 2020 | 9 | 2020-09-11T04:00:00Z | 2020-09-11T11:49:43Z | 2020-19753 | 0 | 0 | 0900006484852078 | ||
| ITA_FRDOC_0001-6286 | ITA | Recently Posted ITA Rules and Notices. ITA_FRDOC_0001 | Temporary Rule Modifying AD/CVD Service Requirements Due to COVID-19 | Rule | 2020-07-10T04:00:00Z | 2020 | 7 | 2020-07-10T04:00:00Z | 2020-07-10T12:10:22Z | 2020-14404 | 0 | 0 | 090000648473ac3e | ||
| ITA_FRDOC_0001-6150 | ITA | Recently Posted ITA Rules and Notices. ITA_FRDOC_0001 | Temporary Rule Modifying AD/CVD Service Requirements Due to COVID-19 | Rule | 2020-05-18T04:00:00Z | 2020 | 5 | 2020-05-18T04:00:00Z | 2020-05-18T11:52:18Z | 2020-10238 | 0 | 0 | 09000064846302e0 | ||
| ITA_FRDOC_0001-6000 | ITA | Recently Posted ITA Rules and Notices. ITA_FRDOC_0001 | Temporary Rule Modifying AD/CVD Service Requirements Due to COVID-19 | Rule | 2020-03-26T04:00:00Z | 2020 | 3 | 2020-03-26T04:00:00Z | 2020-03-26T11:45:42Z | 2020-06306 | 0 | 0 | 090000648446a890 | ||
| ITA_FRDOC_0001-5853 | ITA | Recently Posted ITA Rules and Notices. ITA_FRDOC_0001 | Modification of Regulations Regarding Benefit and Specificity in Countervailing Duty Proceedings | Rule | 2020-02-04T05:00:00Z | 2020 | 2 | 2020-02-04T05:00:00Z | 2020-02-04T12:59:30Z | 2020-02097 | 0 | 0 | 090000648432502e |
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;