documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FMCSA-2001-10197" and document_type = "Other" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-2001-10197-0013 | FMCSA | ESC - In the Matter of Bruce B. Latshaw - Motion for Final Order FMCSA-2001-10197 | In the Matter of Bruce B. Latshaw - Order Terminating Proceeding | Other | Order | 2004-06-25T04:00:00Z | 2004 | 6 | 2004-06-25T04:00:00Z | 2004-06-30T03:59:59Z | 2024-11-12T02:20:02Z | 1 | 0 | 09000064803013d5 | |
| FMCSA-2001-10197-0011 | FMCSA | ESC - In the Matter of Bruce B. Latshaw - Motion for Final Order FMCSA-2001-10197 | In the Matter of Bruce B. Latshaw - Motion for Continuance of Hearing Date Current Hearing Date: June 7, 2004 | Other | Motion | 2004-06-04T04:00:00Z | 2004 | 6 | 2004-06-04T04:00:00Z | 2004-06-05T03:59:59Z | 2024-11-12T02:20:02Z | 1 | 0 | 09000064803013d3 | |
| FMCSA-2001-10197-0010 | FMCSA | ESC - In the Matter of Bruce B. Latshaw - Motion for Final Order FMCSA-2001-10197 | In the Matter of Bruce B. Latshaw - Witness Lists and Testimony Summaries | Other | Witness List | 2004-05-19T04:00:00Z | 2004 | 5 | 2004-05-19T04:00:00Z | 2004-05-21T03:59:59Z | 2024-11-12T02:20:01Z | 1 | 0 | 09000064803013d2 | |
| FMCSA-2001-10197-0007 | FMCSA | ESC - In the Matter of Bruce B. Latshaw - Motion for Final Order FMCSA-2001-10197 | In the Matter of Bruce B. Latshaw - Order Appointing Administrative Law Judge | Other | Order | 2003-11-24T05:00:00Z | 2003 | 11 | 2003-11-24T05:00:00Z | 2003-11-25T04:59:59Z | 2024-11-12T02:20:03Z | 1 | 0 | 09000064803013da | |
| FMCSA-2001-10197-0004 | FMCSA | ESC - In the Matter of Bruce B. Latshaw - Motion for Final Order FMCSA-2001-10197 | In the Matter of Bruce B. Latshaw - Response to Order | Other | Response(s) | 2003-09-17T04:00:00Z | 2003 | 9 | 2003-09-17T04:00:00Z | 2003-09-26T03:59:59Z | 2024-11-12T02:20:02Z | 1 | 0 | 09000064803013d8 | |
| FMCSA-2001-10197-0003 | FMCSA | ESC - In the Matter of Bruce B. Latshaw - Motion for Final Order FMCSA-2001-10197 | In the Matter of Twenty Motor Carrier Cases - Errata | Other | Erratum | 2003-09-09T04:00:00Z | 2003 | 9 | 2003-09-09T04:00:00Z | 2003-09-16T03:59:59Z | 2024-11-12T02:20:02Z | 1 | 0 | 09000064803013d7 | |
| FMCSA-2001-10197-0002 | FMCSA | ESC - In the Matter of Bruce B. Latshaw - Motion for Final Order FMCSA-2001-10197 | In the Matter of Bruce B. Latshaw - Order | Other | Order | 2003-08-18T04:00:00Z | 2003 | 8 | 2003-08-18T04:00:00Z | 2003-08-20T03:59:59Z | 2024-11-12T02:20:02Z | 1 | 0 | 09000064803013d6 | |
| FMCSA-2001-10197-0001 | FMCSA | ESC - In the Matter of Bruce B. Latshaw - Motion for Final Order FMCSA-2001-10197 | In the Matter of Bruce B. Latshaw - Motion for Final Order | Other | Motion | 2001-07-23T04:00:00Z | 2001 | 7 | 2001-07-23T04:00:00Z | 2001-07-25T03:59:59Z | 2024-11-12T02:20:01Z | 1 | 0 | 09000064803013d1 |
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;