documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FMCSA-2002-13073" 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-2002-13073-0011 | FMCSA | MSC - In the Matter of Trinity Transfer Corporation - Motion for Default Judgement FMCSA-2002-13073 | In the Matter of Trinity Transfer Corporation System, Inc. - Order of Dismissal | Other | Order | 2005-07-11T04:00:00Z | 2005 | 7 | 2005-07-11T04:00:00Z | 2005-07-13T03:59:59Z | 2024-11-12T02:27:43Z | 1 | 0 | 0900006480308308 | |
| FMCSA-2002-13073-0010 | FMCSA | MSC - In the Matter of Trinity Transfer Corporation - Motion for Default Judgement FMCSA-2002-13073 | In the Matter of Trinity Transfer Corporation Systems, Inc. - Motion to Withdraw the Notice of Claim Motion to Close the Docket | Other | Motion | 2005-07-07T04:00:00Z | 2005 | 7 | 2005-07-07T04:00:00Z | 2005-07-09T03:59:59Z | 2024-11-12T02:27:43Z | 1 | 0 | 0900006480308307 | |
| FMCSA-2002-13073-0006 | FMCSA | MSC - In the Matter of Trinity Transfer Corporation - Motion for Default Judgement FMCSA-2002-13073 | In the Matter of Trinity Transfer Corporation - Field Administrator's Response to Administrative Law Judge's Order of February 23, 2005 | Other | Response(s) | 2005-03-10T05:00:00Z | 2005 | 3 | 2005-03-10T05:00:00Z | 2005-03-11T04:59:59Z | 2024-11-12T02:27:44Z | 1 | 0 | 090000648030830d | |
| FMCSA-2002-13073-0005 | FMCSA | MSC - In the Matter of Trinity Transfer Corporation - Motion for Default Judgement FMCSA-2002-13073 | In the Matter of Trinity Transfer Corporation - Procedural Order | Other | Order | 2005-02-23T05:00:00Z | 2005 | 2 | 2005-02-23T05:00:00Z | 2005-03-04T04:59:59Z | 2024-11-12T02:27:44Z | 1 | 0 | 090000648030830c | |
| FMCSA-2002-13073-0004 | FMCSA | MSC - In the Matter of Trinity Transfer Corporation - Motion for Default Judgement FMCSA-2002-13073 | In the Matter of Trinity Transfer Corporation - Procedural Order | Other | Order | 2005-02-23T05:00:00Z | 2005 | 2 | 2005-02-23T05:00:00Z | 2005-03-03T04:59:59Z | 2024-11-12T02:27:44Z | 1 | 0 | 090000648030830b | |
| FMCSA-2002-13073-0002 | FMCSA | MSC - In the Matter of Trinity Transfer Corporation - Motion for Default Judgement FMCSA-2002-13073 | In the Matter of Trinity Transfer Corporation - Order Denying Motion for Entry of Default Judgement and Appointing Administrative Law Judge | Other | Order | 2004-12-15T05:00:00Z | 2004 | 12 | 2004-12-15T05:00:00Z | 2004-12-16T04:59:59Z | 2024-11-12T02:27:43Z | 1 | 0 | 0900006480308309 | |
| FMCSA-2002-13073-0001 | FMCSA | MSC - In the Matter of Trinity Transfer Corporation - Motion for Default Judgement FMCSA-2002-13073 | In the Matter of Trinity Transfer Corporation - Motion for Entry of Default Judgment | Other | Motion | 2002-08-08T04:00:00Z | 2002 | 8 | 2002-08-08T04:00:00Z | 2002-08-10T03:59:59Z | 2024-11-12T02:27:43Z | 1 | 0 | 0900006480308306 |
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;