documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "ITA", document_type = "Rule" and posted_year = 2024 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-10589 | ITA | Recently Posted ITA Rules and Notices. ITA_FRDOC_0001 | Modernizing the Annexes of the Antidumping and Countervailing Duty Trade Remedy Regulations | Rule | 2024-12-19T05:00:00Z | 2024 | 12 | 2024-12-19T05:00:00Z | 2024-12-19T13:15:37Z | 2024-30257 | 0 | 0 | 090000648687e12d | ||
| ITA_FRDOC_0001-10577 | ITA | Recently Posted ITA Rules and Notices. ITA_FRDOC_0001 | Administration of the Antidumping and Countervailing Duty Trade Remedy Laws | Rule | 2024-12-16T05:00:00Z | 2024 | 12 | 2024-12-16T05:00:00Z | 2024-12-16T13:38:12Z | 2024-29245 | 0 | 0 | 09000064868735af | ||
| ITA_FRDOC_0001-10560 | ITA | Recently Posted ITA Rules and Notices. ITA_FRDOC_0001 | Article 10.12 of the United States-Mexico-Canada Agreement; Correction | Rule | 2024-12-12T05:00:00Z | 2024 | 12 | 2024-12-12T05:00:00Z | 2024-12-12T13:16:57Z | 2024-29091 | 0 | 0 | 0900006486866290 | ||
| ITA_FRDOC_0001-9846 | ITA | Recently Posted ITA Rules and Notices. ITA_FRDOC_0001 | The U.S. and Foreign Commercial Service Pilot Fellowship Program; Correction | Rule | 2024-05-15T04:00:00Z | 2024 | 5 | 2024-05-15T04:00:00Z | 2024-05-15T12:36:51Z | 2024-10561 | 0 | 0 | 09000064865664c1 | ||
| ITA_FRDOC_0001-9824 | ITA | Recently Posted ITA Rules and Notices. ITA_FRDOC_0001 | The United States and Foreign Commercial Service Pilot Fellowship Program | Rule | 2024-05-07T04:00:00Z | 2024 | 5 | 2024-05-07T04:00:00Z | 2024-05-07T12:11:01Z | 2024-09863 | 0 | 0 | 09000064865499ed | ||
| ITA_FRDOC_0001-9683 | ITA | Recently Posted ITA Rules and Notices. ITA_FRDOC_0001 | Improving and Strengthening the Enforcement of Trade Remedies through the Administration of the Antidumping and Countervailing Duty Law | Rule | 2024-03-25T04:00:00Z | 2024 | 3 | 2024-03-25T04:00:00Z | 2024-03-25T12:18:33Z | 2024-05509 | 0 | 0 | 0900006486494c87 | ||
| ITA_FRDOC_0001-9581 | ITA | Recently Posted ITA Rules and Notices. ITA_FRDOC_0001 | Article 10.12 of the United States-Mexico-Canada Agreement; Correction | Rule | 2024-02-15T05:00:00Z | 2024 | 2 | 2024-02-15T05:00:00Z | 2024-02-15T13:11:46Z | 2024-02899 | 0 | 0 | 0900006486408da4 | ||
| ITA_FRDOC_0001-9532 | ITA | Recently Posted ITA Rules and Notices. ITA_FRDOC_0001 | Article 10.12 of the United States-Mexico-Canada Agreement | Rule | 2024-01-31T05:00:00Z | 2024 | 1 | 2024-01-31T05:00:00Z | 2024-01-31T13:05:57Z | 2024-01475 | 0 | 0 | 09000064863d382a |
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;