documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FMCSA-2011-0347" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, open_for_comment, 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-2011-0347-0009 | FMCSA | ESC - In the Matter of GST Transport Corp. - Petition for Reconsideration FMCSA-2011-0347 | In the Matter of GST Transport Corp. - Order Granting Motion to Dismiss | Other | Order | 2013-09-09T04:00:00Z | 2013 | 9 | 2013-09-09T04:00:00Z | 2024-11-12T05:20:11Z | 1 | 0 | 09000064813dfe75 | ||
| FMCSA-2011-0347-0008 | FMCSA | ESC - In the Matter of GST Transport Corp. - Petition for Reconsideration FMCSA-2011-0347 | In the Matter of GST Transport Corp. - Motion to Dismiss | Other | Motion | 2013-09-05T04:00:00Z | 2013 | 9 | 2013-09-05T04:00:00Z | 2024-11-07T22:53:23Z | 1 | 0 | 09000064813dcc4a | ||
| FMCSA-2011-0347-0007 | FMCSA | ESC - In the Matter of GST Transport Corp. - Petition for Reconsideration FMCSA-2011-0347 | In the Matter of GST Transport Corp - Rule 26(f) Proposed Discovery Plan | Other | Discovery | 2013-08-27T04:00:00Z | 2013 | 8 | 2013-08-27T04:00:00Z | 2024-11-07T22:53:28Z | 1 | 0 | 09000064813c7001 | ||
| FMCSA-2011-0347-0006 | FMCSA | ESC - In the Matter of GST Transport Corp. - Petition for Reconsideration FMCSA-2011-0347 | In the Matter of GST Transport Corp. - Order Setting Rule 16 Litigation Scheduling Conference, and Directing Rule 26(f) Planning and Submission | Other | Order | 2013-07-15T04:00:00Z | 2013 | 7 | 2013-07-15T04:00:00Z | 2024-11-07T22:56:46Z | 1 | 0 | 0900006481366bb0 | ||
| FMCSA-2011-0347-0005 | FMCSA | ESC - In the Matter of GST Transport Corp. - Petition for Reconsideration FMCSA-2011-0347 | In the Matter of GST Transport Corp. - Notice of Assignment of Proceeding | Other | Adjudication Notice | 2013-06-20T04:00:00Z | 2013 | 6 | 2013-06-20T04:00:00Z | 2024-11-12T05:15:38Z | 1 | 0 | 09000064813341f5 | ||
| FMCSA-2011-0347-0004 | FMCSA | ESC - In the Matter of GST Transport Corp. - Petition for Reconsideration FMCSA-2011-0347 | In the Matter of GST Transport Corp. - Order Granting Petition for Reconsideration and Appointing Administrative Law Judge | Other | Order | 2013-06-19T04:00:00Z | 2013 | 6 | 2013-06-19T04:00:00Z | 2024-11-11T20:45:41Z | 1 | 0 | 090000648132b21e | ||
| FMCSA-2011-0347-0003 | FMCSA | ESC - In the Matter of GST Transport Corp. - Petition for Reconsideration FMCSA-2011-0347 | In the Matter of GST Transport Corp. - GST Transport Corporation's Reply in Support of its Formal Petition for Reconsideration | Other | Reply | 2012-01-17T05:00:00Z | 2012 | 1 | 2012-01-17T05:00:00Z | 2012-01-17T17:26:39Z | 0 | 0 | 0900006480f9895d | ||
| FMCSA-2011-0347-0002 | FMCSA | ESC - In the Matter of GST Transport Corp. - Petition for Reconsideration FMCSA-2011-0347 | In the Matter of GST Transport Corp. - Field Administrator's Response and Opposition to Petition for Reconsideration | Other | Response(s) | 2011-12-14T05:00:00Z | 2011 | 12 | 2011-12-14T05:00:00Z | 2013-07-28T00:10:35Z | 0 | 0 | 0900006480f8140f | ||
| FMCSA-2011-0347-0001 | FMCSA | ESC - In the Matter of GST Transport Corp. - Petition for Reconsideration FMCSA-2011-0347 | In the Matter of GST Transport Corp. - Petition for Reconsideration | Other | Petition for Reconsideration | 2011-11-22T05:00:00Z | 2011 | 11 | 2011-11-22T05:00:00Z | 2011-11-22T20:55:24Z | 0 | 0 | 0900006480f719cb |
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;