documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FMCSA-2004-17248" and document_type = "Notice" 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-2004-17248-0036 | FMCSA | WSC - In the Matter of Swift Transportation Co., Inc. - Motion for Extension of Time to Reply and Request a Hearing Pursuant to 49 C.F.R. 386.14 FMCSA-2004-17248 | In the Matter of Swift Transportation Co., Inc. - Notice of Prehearing Conference | Notice | Notice | 2007-06-06T04:00:00Z | 2007 | 6 | 2007-06-06T04:00:00Z | 2007-06-09T03:59:59Z | 2024-11-12T04:01:15Z | 1 | 0 | 0900006480358216 | |
| FMCSA-2004-17248-0064 | FMCSA | WSC - In the Matter of Swift Transportation Co., Inc. - Motion for Extension of Time to Reply and Request a Hearing Pursuant to 49 C.F.R. 386.14 FMCSA-2004-17248 | In the Matter of Swift Transportation Co., Inc. - Notice of Appearance | Notice | Notice | 2007-01-16T05:00:00Z | 2007 | 1 | 2007-01-16T05:00:00Z | 2007-06-13T03:59:59Z | 2024-11-12T04:01:25Z | 1 | 0 | 090000648035823a | |
| FMCSA-2004-17248-0058 | FMCSA | WSC - In the Matter of Swift Transportation Co., Inc. - Motion for Extension of Time to Reply and Request a Hearing Pursuant to 49 C.F.R. 386.14 FMCSA-2004-17248 | In the Matter of Swift Transportation Co., Inc. - Notice of Hearing Dates | Notice | Notice | 2006-11-14T05:00:00Z | 2006 | 11 | 2006-11-14T05:00:00Z | 2007-06-13T03:59:59Z | 2024-11-12T04:01:22Z | 1 | 0 | 0900006480358232 | |
| FMCSA-2004-17248-0049 | FMCSA | WSC - In the Matter of Swift Transportation Co., Inc. - Motion for Extension of Time to Reply and Request a Hearing Pursuant to 49 C.F.R. 386.14 FMCSA-2004-17248 | In The Matter Of Swift Transportation Co., Inc. - Notice of Dismissal of Counts | Notice | Notice | 2006-09-29T04:00:00Z | 2006 | 9 | 2006-09-29T04:00:00Z | 2007-06-08T03:59:59Z | 2024-11-12T04:01:20Z | 1 | 0 | 0900006480358227 | |
| FMCSA-2004-17248-0047 | FMCSA | WSC - In the Matter of Swift Transportation Co., Inc. - Motion for Extension of Time to Reply and Request a Hearing Pursuant to 49 C.F.R. 386.14 FMCSA-2004-17248 | In the Matter of Swift Transportation Co., Inc. - Notice Of Reassignment Of Proceeding | Notice | Notice | 2006-09-26T04:00:00Z | 2006 | 9 | 2006-09-26T04:00:00Z | 2007-06-08T03:59:59Z | 2024-11-12T04:01:19Z | 1 | 0 | 0900006480358225 | |
| FMCSA-2004-17248-0019 | FMCSA | WSC - In the Matter of Swift Transportation Co., Inc. - Motion for Extension of Time to Reply and Request a Hearing Pursuant to 49 C.F.R. 386.14 FMCSA-2004-17248 | In the Matter of Swift Transportation Co., Inc. - Copy of January 13, 2004 Notice of Claim | Notice | Notice of Claim | 2004-09-24T04:00:00Z | 2004 | 9 | 2004-09-24T04:00:00Z | 2004-10-02T03:59:59Z | 2024-11-12T04:01:08Z | 1 | 0 | 09000064803581fe | |
| FMCSA-2004-17248-0011 | FMCSA | WSC - In the Matter of Swift Transportation Co., Inc. - Motion for Extension of Time to Reply and Request a Hearing Pursuant to 49 C.F.R. 386.14 FMCSA-2004-17248 | In the Matter of Swift Transportation Co., Inc. - Notice | Notice | Notice | 2004-08-23T04:00:00Z | 2004 | 8 | 2004-08-23T04:00:00Z | 2004-08-24T03:59:59Z | 2024-11-12T04:01:06Z | 1 | 0 | 09000064803581f4 | |
| FMCSA-2004-17248-0009 | FMCSA | WSC - In the Matter of Swift Transportation Co., Inc. - Motion for Extension of Time to Reply and Request a Hearing Pursuant to 49 C.F.R. 386.14 FMCSA-2004-17248 | In the Matter of Swift Transportation Co., Inc. - Notice of Assignment of Proceeding | Notice | Notice | 2004-07-29T04:00:00Z | 2004 | 7 | 2004-07-29T04:00:00Z | 2004-07-31T03:59:59Z | 2024-11-12T04:01:29Z | 1 | 0 | 0900006480358248 |
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;