documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FMCSA-2016-0337" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, last_modified, posted_date (date), comment_start_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-2016-0337-0009 | FMCSA | None FMCSA-2016-0337 | In the Matter of H W Y Trucking, Inc. - Order Denying Petition for Reconsideration | Other | Order | 2018-08-14T04:00:00Z | 2018 | 8 | 2018-08-14T04:00:00Z | 2024-11-07T01:35:53Z | 1 | 0 | 0900006483620320 | ||
| FMCSA-2016-0337-0008 | FMCSA | None FMCSA-2016-0337 | In the Matter of H W Y Trucking, Inc. - Field Administrator's Answer and Opposition to Petition for Reconsideration of the Final Order of the Assistant Administrator | Other | Answer | 2018-02-16T05:00:00Z | 2018 | 2 | 2018-02-16T05:00:00Z | 2024-11-07T01:22:23Z | 1 | 0 | 0900006482f36cc5 | ||
| FMCSA-2016-0337-0007 | FMCSA | None FMCSA-2016-0337 | In the Matter of HWY Trucking, Inc. - Petition for Reconsideration | Other | Petition(s) | 2018-01-24T05:00:00Z | 2018 | 1 | 2018-01-24T05:00:00Z | 2024-11-07T01:20:32Z | 1 | 0 | 0900006482e53558 | ||
| FMCSA-2016-0337-0005 | FMCSA | None FMCSA-2016-0337 | In the Matter of HWY Trucking, Inc. - Final Order | Other | Final Order | 2017-12-28T05:00:00Z | 2017 | 12 | 2017-12-28T05:00:00Z | 2024-11-07T01:15:28Z | 1 | 0 | 0900006482d7ebd9 | ||
| FMCSA-2016-0337-0002 | FMCSA | None FMCSA-2016-0337 | In the Matter of HWY Trucking Inc. - Notice of Appearance and Substitution of Counsel | Other | Appearance Request | 2016-10-17T04:00:00Z | 2016 | 10 | 2016-10-17T04:00:00Z | 2024-11-07T23:51:12Z | 1 | 0 | 09000064822fdcb9 | ||
| FMCSA-2016-0337-0004 | FMCSA | None FMCSA-2016-0337 | In the Matter of HWY Trucking Inc. - Response to Respondent's Submission of Evidence | Other | Response(s) | 2016-10-17T04:00:00Z | 2016 | 10 | 2016-10-17T04:00:00Z | 2024-11-11T21:32:43Z | 1 | 0 | 09000064822fe284 | ||
| FMCSA-2016-0337-0003 | FMCSA | None FMCSA-2016-0337 | In the Matter of HWY Trucking Inc. - Notice of Appearance and Substitution of Counsel | Other | Acknowledgement Letter/Receipt | 2016-10-17T04:00:00Z | 2016 | 10 | 2016-10-17T04:00:00Z | 2024-11-11T21:32:43Z | 1 | 0 | 09000064822fdc9a | ||
| FMCSA-2016-0337-0001 | FMCSA | None FMCSA-2016-0337 | In the Matter of HWY Trucking, Inc. - Field Administrator's Submission of Evidence | Other | Submission of Evidence | 2016-09-15T04:00:00Z | 2016 | 9 | 2016-09-15T04:00:00Z | 2024-11-07T23:48:36Z | 1 | 0 | 090000648220cd84 |
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;