documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FMCSA-2010-0062" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, 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-2010-0062-0007 | FMCSA | ESC - In the Matter of Coyote Transport, LLC - Motion to Postpone FMCSA-2010-0062 | In the Matter of Coyote Transport, LLC - Arbitration Decision | Other | Order | 2014-10-28T04:00:00Z | 2014 | 10 | 2014-10-28T04:00:00Z | 2024-11-12T05:30:26Z | 1 | 0 | 0900006481902acc | ||
| FMCSA-2010-0062-0006 | FMCSA | ESC - In the Matter of Coyote Transport, LLC - Motion to Postpone FMCSA-2010-0062 | In the Matter of Coyote Transport, LLC - Notice of Docketing | Notice | Notice of Docketing | 2011-10-14T04:00:00Z | 2011 | 10 | 2011-10-14T04:00:00Z | 2011-10-14T14:54:15Z | 0 | 0 | 0900006480f5247a | ||
| FMCSA-2010-0062-0005 | FMCSA | ESC - In the Matter of Coyote Transport, LLC - Motion to Postpone FMCSA-2010-0062 | In the Matter of Coyote Transport, LLC - Follow-up to FMCSA's Order on Binding Arbitration dated September 2, 2011 | Other | Letter(s) | 2011-10-12T04:00:00Z | 2011 | 10 | 2011-10-12T04:00:00Z | 2024-11-07T22:41:40Z | 1 | 0 | 0900006480f50551 | ||
| FMCSA-2010-0062-0004 | FMCSA | ESC - In the Matter of Coyote Transport, LLC - Motion to Postpone FMCSA-2010-0062 | In the Matter of Coyote Transport, L.L.C - Order on Binding Arbitration | Other | Order | 2011-09-06T04:00:00Z | 2011 | 9 | 2011-09-06T04:00:00Z | 2011-09-06T14:35:25Z | 0 | 0 | 0900006480f0e8ae | ||
| FMCSA-2010-0062-0002 | FMCSA | ESC - In the Matter of Coyote Transport, LLC - Motion to Postpone FMCSA-2010-0062 | In the Matter of Coyote Transport, LLC - Motion to Postpone | Other | Motion | 2010-04-05T04:00:00Z | 2010 | 4 | 2010-03-02T05:00:00Z | 2024-11-12T04:52:01Z | 1 | 0 | 0900006480ace776 | ||
| FMCSA-2010-0062-0003 | FMCSA | ESC - In the Matter of Coyote Transport, LLC - Motion to Postpone FMCSA-2010-0062 | In the Matter of Coyote Transport, LLC - Request for Binding Arbitration | Other | Request | 2010-04-05T04:00:00Z | 2010 | 4 | 2010-04-05T04:00:00Z | 2024-11-12T04:52:09Z | 1 | 0 | 0900006480acef37 | ||
| FMCSA-2010-0062-0001 | FMCSA | ESC - In the Matter of Coyote Transport, LLC - Motion to Postpone FMCSA-2010-0062 | In the Matter of Coyote Transport, LLC | Other | Motion | 2010-03-02T05:00:00Z | 2010 | 3 | 2010-03-02T05:00:00Z | 2013-07-27T23:10:21Z | 0 | 0 | 0900006480ab1331 |
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;