documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FMCSA-2013-0450" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FMCSA-2013-0450-0007 | FMCSA | ESC - In the Matter of Travel Time Transportation, LLC - Consent to Arbitration FMCSA-2013-0450 | In the Matter of Time Travel Transportation, LLC - Order Dismissing Proceedings and Closing Docket | Other | Order | 2018-02-09T05:00:00Z | 2018 | 2 | 2018-02-09T05:00:00Z | 2024-11-07T01:21:27Z | 1 | 0 | 0900006482f0246e | ||
| FMCSA-2013-0450-0006 | FMCSA | ESC - In the Matter of Travel Time Transportation, LLC - Consent to Arbitration FMCSA-2013-0450 | In the Matter of Travel Time Transportation, LLC - Motion to Dismiss | Other | Motion | 2018-02-02T05:00:00Z | 2018 | 2 | 2018-02-02T05:00:00Z | 2024-11-07T01:20:56Z | 1 | 0 | 0900006482ea0d25 | ||
| FMCSA-2013-0450-0005 | FMCSA | ESC - In the Matter of Travel Time Transportation, LLC - Consent to Arbitration FMCSA-2013-0450 | In the Matter of Travel Time Transportation, LLC - Address Change | Other | Amendment | 2018-01-09T05:00:00Z | 2018 | 1 | 2018-01-09T05:00:00Z | 2024-11-07T01:17:00Z | 1 | 0 | 0900006482dc88c4 | ||
| FMCSA-2013-0450-0004 | FMCSA | ESC - In the Matter of Travel Time Transportation, LLC - Consent to Arbitration FMCSA-2013-0450 | In the Matter of Travel Time Transportation, LLC - Answer to Motion for Final Order | Other | Answer | 2014-04-14T04:00:00Z | 2014 | 4 | 2014-04-14T04:00:00Z | 2024-11-11T20:50:01Z | 1 | 0 | 09000064816b28bd | ||
| FMCSA-2013-0450-0003 | FMCSA | ESC - In the Matter of Travel Time Transportation, LLC - Consent to Arbitration FMCSA-2013-0450 | In the Matter of Travel Time Transportation, LLC - Motion for Final Order and Memorandum In Support of Motion for Final Order | Other | Motion | 2014-03-04T05:00:00Z | 2014 | 3 | 2014-03-04T05:00:00Z | 2024-11-12T05:25:31Z | 1 | 0 | 09000064815ebae8 | ||
| FMCSA-2013-0450-0002 | FMCSA | ESC - In the Matter of Travel Time Transportation, LLC - Consent to Arbitration FMCSA-2013-0450 | In the Matter of Travel Time Transportation, LLC - Order Referring Matter to Binding Arbitration | Other | Order | 2013-12-27T05:00:00Z | 2013 | 12 | 2013-12-27T05:00:00Z | 2024-11-07T23:00:37Z | 1 | 0 | 09000064814dd36b | ||
| FMCSA-2013-0450-0001 | FMCSA | ESC - In the Matter of Travel Time Transportation, LLC - Consent to Arbitration FMCSA-2013-0450 | In the Matter of Travel Time Transportation, LLC - Regional Field Administrator's Consent to Arbitration | Other | Consent | 2013-11-14T05:00:00Z | 2013 | 11 | 2013-11-14T05:00:00Z | 2024-11-12T05:24:36Z | 1 | 0 | 0900006481477a5f |
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;