documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "ITA", document_type = "Rule" and posted_year = 2013 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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-0884 | ITA | Recently Posted ITA Rules and Notices. ITA_FRDOC_0001 | Import Administration: Change of Agency Name for Supplies for Use in Emergency Relief Work | Rule | 2013-12-23T05:00:00Z | 2013 | 12 | 2013-12-23T05:00:00Z | 2013-12-23T14:03:34Z | 2013-30570 | 0 | 0 | 09000064814d2fa6 | ||
| ITA_FRDOC_0001-0842 | ITA | Recently Posted ITA Rules and Notices. ITA_FRDOC_0001 | Import Administration; Change of Agency Name for Instruments and Apparatus for Educational and Scientific Institutions | Rule | 2013-12-03T05:00:00Z | 2013 | 12 | 2013-12-03T05:00:00Z | 2013-12-03T14:10:20Z | 2013-28912 | 0 | 0 | 09000064814a3e9a | ||
| ITA_FRDOC_0001-0751 | ITA | Recently Posted ITA Rules and Notices. ITA_FRDOC_0001 | Import Administration; Change of Agency Name | Rule | 2013-10-22T04:00:00Z | 2013 | 10 | 2013-10-22T04:00:00Z | 2013-10-22T13:26:11Z | 2013-24710 | 0 | 0 | 090000648145898a | ||
| ITA_FRDOC_0001-0714 | ITA | Recently Posted ITA Rules and Notices. ITA_FRDOC_0001 | Extension of Time Limits | Rule | 2013-09-20T04:00:00Z | 2013 | 9 | 2013-09-20T04:00:00Z | 2013-09-20T13:22:54Z | 2013-22853 | 0 | 0 | 090000648142da0f | ||
| ITA_FRDOC_0001-0626 | ITA | Recently Posted ITA Rules and Notices. ITA_FRDOC_0001 | Use of Market Economy Input Prices in Nonmarket Economy Proceedings | Rule | 2013-08-02T04:00:00Z | 2013 | 8 | 2013-08-02T04:00:00Z | 2013-08-02T13:01:59Z | 2013-18547 | 0 | 0 | 090000648138c7e6 | ||
| ITA_FRDOC_0001-0597 | ITA | Recently Posted ITA Rules and Notices. ITA_FRDOC_0001 | Certification of Factual Information to Import Administration During Antidumping and Countervailing Duty Proceedings | Rule | 2013-07-17T04:00:00Z | 2013 | 7 | 2013-07-17T04:00:00Z | 2013-07-17T13:05:15Z | 2013-17045 | 0 | 0 | 090000648136a722 | ||
| ITA_FRDOC_0001-0450 | ITA | Recently Posted ITA Rules and Notices. ITA_FRDOC_0001 | Accountability of Attorneys and Non-Attorney Representatives Appearing before the Department | Rule | 2013-04-17T04:00:00Z | 2013 | 4 | 2013-04-17T04:00:00Z | 2013-04-17T14:45:39Z | 2013-09041 | 0 | 0 | 0900006481297df5 | ||
| ITA_FRDOC_0001-0431 | ITA | Recently Posted ITA Rules and Notices. ITA_FRDOC_0001 | Definition of Factual Information and Time Limits for Submission of Factual Information | Rule | 2013-04-10T04:00:00Z | 2013 | 4 | 2013-04-10T04:00:00Z | 2013-04-10T13:42:59Z | 2013-08227 | 0 | 0 | 090000648128cc89 | ||
| ITA_FRDOC_0001-0330 | ITA | Recently Posted ITA Rules and Notices. ITA_FRDOC_0001 | Steel Import Monitoring and Analysis System | Rule | 2013-02-15T05:00:00Z | 2013 | 2 | 2013-02-15T05:00:00Z | 2013-02-15T13:54:05Z | 2013-03619 | 0 | 0 | 09000064811fa22b |
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;