documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FMCSA-2002-13628" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, comment_end_date, last_modified, posted_date (date), comment_start_date (date), comment_end_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-2002-13628-0006 | FMCSA | ESC - In the Matter of Quick Delivery Service, Inc. - Submission of Evidence FMCSA-2002-13628 | In the Matter of Quick Delivery Service - Order Granting Stay | Other | Order | 2004-10-06T04:00:00Z | 2004 | 10 | 2004-10-06T04:00:00Z | 2004-10-07T03:59:59Z | 2024-11-08T05:57:32Z | 1 | 0 | 090000648030b822 | |
| FMCSA-2002-13628-0005-0001 | FMCSA | ESC - In the Matter of Quick Delivery Service, Inc. - Submission of Evidence FMCSA-2002-13628 | In the Matter of Quick Delivery Service, Inc. - Petition for Reconsideration and Request for Stay of Enforcement | Other | Petition for Reconsideration | 2004-10-04T04:00:00Z | 2004 | 10 | 2004-10-04T04:00:00Z | 2004-10-05T03:59:59Z | 2024-11-08T05:57:31Z | 1 | 0 | 090000648030b820 | |
| FMCSA-2002-13628-0005-0002 | FMCSA | ESC - In the Matter of Quick Delivery Service, Inc. - Submission of Evidence FMCSA-2002-13628 | In the Matter of Quick Delivery Service, Inc. - Petition for Reconsideration and Request for Stay of Enforcement | Other | Petition for Reconsideration | 2004-10-04T04:00:00Z | 2004 | 10 | 2004-10-04T04:00:00Z | 2004-10-05T03:59:59Z | 2024-11-08T05:57:31Z | 1 | 0 | 090000648030b821 | |
| FMCSA-2002-13628-0007 | FMCSA | ESC - In the Matter of Quick Delivery Service, Inc. - Submission of Evidence FMCSA-2002-13628 | In the Matter of Quick Delivery Service, Inc. - Correspondence | Other | Correspondence | 2004-10-04T04:00:00Z | 2004 | 10 | 2004-10-04T04:00:00Z | 2004-10-08T03:59:59Z | 2024-11-08T05:57:32Z | 1 | 0 | 090000648030b823 | |
| FMCSA-2002-13628-0004 | FMCSA | ESC - In the Matter of Quick Delivery Service, Inc. - Submission of Evidence FMCSA-2002-13628 | In the Matter of Quick Delivery Service, Inc. - Final Order | Other | Final Order | 2004-07-07T04:00:00Z | 2004 | 7 | 2004-07-07T04:00:00Z | 2004-07-09T03:59:59Z | 2024-11-08T05:57:31Z | 1 | 0 | 090000648030b81f | |
| FMCSA-2002-13628-0003 | FMCSA | ESC - In the Matter of Quick Delivery Service, Inc. - Submission of Evidence FMCSA-2002-13628 | In the Matter of Quick Delivery Service, Inc. - Notice of Change of Address | Notice | Notice | 2003-11-05T05:00:00Z | 2003 | 11 | 2003-11-05T05:00:00Z | 2003-11-07T04:59:59Z | 2024-11-08T05:57:00Z | 1 | 0 | 090000648030b81e | |
| FMCSA-2002-13628-0002 | FMCSA | ESC - In the Matter of Quick Delivery Service, Inc. - Submission of Evidence FMCSA-2002-13628 | In the Matter of Quick Delivery Service - Amendment to Submission of Evidence | Other | Amendment | 2002-11-15T05:00:00Z | 2002 | 11 | 2002-11-15T05:00:00Z | 2002-11-16T04:59:59Z | 2024-11-08T05:57:00Z | 1 | 0 | 090000648030b81d | |
| FMCSA-2002-13628-0001 | FMCSA | ESC - In the Matter of Quick Delivery Service, Inc. - Submission of Evidence FMCSA-2002-13628 | In the Matter of Quick Delivery Service, Inc. - Field Administrator's Submission of Evidence Pursuant To 49 C.F.R. 386.14 | Other | Summary | 2002-10-23T04:00:00Z | 2002 | 10 | 2002-10-23T04:00:00Z | 2002-10-24T03:59:59Z | 2024-11-08T05:57:00Z | 1 | 0 | 090000648030b81c |
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;