documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FMCSA-2019-0090" and posted_year = 2024 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FMCSA-2019-0090-0046 | FMCSA | None FMCSA-2019-0090 | In the Matter of Terra Industries, Inc. - Order Closing Discovery | Other | Order | 2024-11-25T05:00:00Z | 2024 | 11 | 2024-11-25T05:00:00Z | 2024-11-25T16:42:50Z | 1 | 0 | 09000064868341f9 | ||
| FMCSA-2019-0090-0045 | FMCSA | None FMCSA-2019-0090 | In the Matter of Terra Industries Inc. - Prehearing Conference Report | Other | Report | 2024-07-30T04:00:00Z | 2024 | 7 | 2024-07-30T04:00:00Z | 2024-11-12T22:39:24Z | 1 | 0 | 090000648660d66b | ||
| FMCSA-2019-0090-0044 | FMCSA | None FMCSA-2019-0090 | In the Matter of Terra Industries Inc. - Regional Field Administrator's Response to Respondent's June 2024 Request for Depositions | Other | Response(s) | 2024-07-16T04:00:00Z | 2024 | 7 | 2024-07-16T04:00:00Z | 2024-11-12T22:35:45Z | 1 | 0 | 09000064865f1d95 | ||
| FMCSA-2019-0090-0043 | FMCSA | None FMCSA-2019-0090 | In the Matter of Terra Industries, Inc. - Request for Depositions | Other | Request | 2024-06-14T04:00:00Z | 2024 | 6 | 2024-06-14T04:00:00Z | 2024-11-12T22:36:18Z | 1 | 0 | 09000064865b65ae | ||
| FMCSA-2019-0090-0041 | FMCSA | None FMCSA-2019-0090 | In the Matter of Terra Industries, Inc. - Order Granting Respondent's Motion for Extension | Other | Order | 2024-04-17T04:00:00Z | 2024 | 4 | 2024-04-17T04:00:00Z | 2024-11-12T22:30:03Z | 1 | 0 | 09000064864dc491 | ||
| FMCSA-2019-0090-0042 | FMCSA | None FMCSA-2019-0090 | In the Matter of Terra Industries, Inc. - Motion for an Extension to the Schedule of the Procedural Order | Other | Motion | 2024-04-17T04:00:00Z | 2024 | 4 | 2024-04-17T04:00:00Z | 2024-11-12T22:30:04Z | 1 | 0 | 09000064864dc976 | ||
| FMCSA-2019-0090-0040 | FMCSA | None FMCSA-2019-0090 | In the Matter of Terra Industries, Inc. - Motion for an Extension to the Schedule of the Procedural Order | Other | Motion | 2024-02-27T05:00:00Z | 2024 | 2 | 2024-02-27T05:00:00Z | 2024-11-12T22:24:39Z | 1 | 0 | 09000064864309cc | ||
| FMCSA-2019-0090-0039 | FMCSA | None FMCSA-2019-0090 | In the Matter of Terra Industries, Inc. - Order Granting Respondent's Motion for Extension | Other | Order | 2024-02-13T05:00:00Z | 2024 | 2 | 2024-02-13T05:00:00Z | 2024-11-12T22:22:14Z | 1 | 0 | 0900006486404452 | ||
| FMCSA-2019-0090-0038 | FMCSA | None FMCSA-2019-0090 | In the Matter of Terra Industries, Inc. - Motion for an Extension to the Schedule of the Procedural Order | Other | Motion | 2024-02-09T05:00:00Z | 2024 | 2 | 2024-02-09T05:00:00Z | 2024-11-12T22:22:34Z | 1 | 0 | 09000064863fa9d7 |
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;