documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FMCSA-2004-17783" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, last_modified, open_for_comment, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- FMCSA 7
| 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-17783-0007 | FMCSA | ESC - In the Matter of Rhino Leasing, Inc. - Motion for Final Order FMCSA-2004-17783 | In the Matter of Rhino Leasing, Inc. - Final Order | Other | Final Order | 2007-03-01T05:00:00Z | 2007 | 3 | 2007-03-01T05:00:00Z | 2007-03-03T04:59:59Z | 2024-11-12T04:02:53Z | 1 | 0 | 090000648038403a | |
| FMCSA-2004-17783-0006 | FMCSA | ESC - In the Matter of Rhino Leasing, Inc. - Motion for Final Order FMCSA-2004-17783 | In the Matter of Rhino Leasing, Inc. - Notice of Withdrawal of Additional Appearance | Notice | Notice | 2006-08-01T04:00:00Z | 2006 | 8 | 2006-08-01T04:00:00Z | 2006-08-02T03:59:59Z | 2024-11-11T21:51:39Z | 1 | 0 | 09000064802a9bf3 | |
| FMCSA-2004-17783-0005 | FMCSA | ESC - In the Matter of Rhino Leasing, Inc. - Motion for Final Order FMCSA-2004-17783 | In the Matter of Rhino Leasing, Inc. - Notice of Additional Appearance | Notice | Notice | 2006-05-17T04:00:00Z | 2006 | 5 | 2006-05-17T04:00:00Z | 2006-05-18T03:59:59Z | 2024-11-07T01:40:14Z | 1 | 0 | 09000064802a9bf2 | |
| FMCSA-2004-17783-0004 | FMCSA | ESC - In the Matter of Rhino Leasing, Inc. - Motion for Final Order FMCSA-2004-17783 | In the Matter of Rhino Leasing, Inc. - Supplemental Information Regarding Status of Bankruptcy Proceedings | Supporting & Related Material | Supplement | 2006-05-05T04:00:00Z | 2006 | 5 | 2024-11-12T04:02:52Z | 0 | 0 | 0900006480384038 | |||
| FMCSA-2004-17783-0003 | FMCSA | ESC - In the Matter of Rhino Leasing, Inc. - Motion for Final Order FMCSA-2004-17783 | In the Matter of Rhino Leasing, Inc. - Notice of Change of Appearance | Notice | Notice | 2006-05-05T04:00:00Z | 2006 | 5 | 2006-05-05T04:00:00Z | 2006-05-06T03:59:59Z | 2024-11-07T01:40:14Z | 1 | 0 | 09000064802a9bf1 | |
| FMCSA-2004-17783-0002 | FMCSA | ESC - In the Matter of Rhino Leasing, Inc. - Motion for Final Order FMCSA-2004-17783 | In the Matter of Rhino Leasing, Inc. - Supplemental Submission of Evidence | Supporting & Related Material | Supplement | 2004-07-06T04:00:00Z | 2004 | 7 | 2024-11-07T01:40:14Z | 0 | 0 | 09000064802a9bf0 | |||
| FMCSA-2004-17783-0001 | FMCSA | ESC - In the Matter of Rhino Leasing, Inc. - Motion for Final Order FMCSA-2004-17783 | In the Matter of Rhino Leasing, Inc. - Motion for Final Order | Other | Motion | 2004-05-13T04:00:00Z | 2004 | 5 | 2004-05-13T04:00:00Z | 2004-05-14T03:59:59Z | 2024-11-11T21:36:31Z | 1 | 0 | 09000064802a9bee |
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;