documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FMCSA-2022-0227" 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-2022-0227-0009 | FMCSA | None FMCSA-2022-0227 | In the Matter of JW Hunt Transport LLC dba JW - Order Approving Settlement | Other | Order | 2023-08-29T04:00:00Z | 2023 | 8 | 2023-08-29T04:00:00Z | 2024-11-07T00:51:16Z | 1 | 0 | 0900006485f0a70e | ||
| FMCSA-2022-0227-0008 | FMCSA | None FMCSA-2022-0227 | In the Matter of JW Hunt Transport LLC dba JW - Notice of Settlement and Motion to Terminate Proceedings and Close Docket | Other | Notification of Settlement | 2023-07-18T04:00:00Z | 2023 | 7 | 2023-07-18T04:00:00Z | 2024-11-12T22:58:48Z | 1 | 0 | 0900006485cd2b67 | ||
| FMCSA-2022-0227-0007 | FMCSA | None FMCSA-2022-0227 | In the Matter of JW Hunt Transport LLC dba JW - Notice of Appearance | Other | Adjudication Notice | 2023-06-21T04:00:00Z | 2023 | 6 | 2023-06-21T04:00:00Z | 2024-11-07T01:14:26Z | 1 | 0 | 0900006485b95b58 | ||
| FMCSA-2022-0227-0006 | FMCSA | None FMCSA-2022-0227 | In the Matter of JW Hunt Transport LLC dba JW - Order Referring Matter to Binding Arbitration | Other | Order | 2023-02-09T05:00:00Z | 2023 | 2 | 2023-02-09T05:00:00Z | 2024-11-12T23:51:25Z | 1 | 0 | 0900006485647917 | ||
| FMCSA-2022-0227-0005 | FMCSA | None FMCSA-2022-0227 | In the Matter of JW Hunt Transport LLC dba JW - Regional Field Administrator's Notice of Receipt of Correspondence | Other | Acknowledgement Letter/Receipt | 2023-01-20T05:00:00Z | 2023 | 1 | 2023-01-20T05:00:00Z | 2024-11-12T23:48:54Z | 1 | 0 | 09000064855fa5b9 | ||
| FMCSA-2022-0227-0004 | FMCSA | None FMCSA-2022-0227 | In the Matter of JW Hunt Transport LLC dba JW - Notice of Appearance and Substitution of Counsel | Other | Adjudication Notice | 2023-01-20T05:00:00Z | 2023 | 1 | 2023-01-20T05:00:00Z | 2024-11-12T23:48:56Z | 1 | 0 | 09000064855fa550 | ||
| FMCSA-2022-0227-0003 | FMCSA | None FMCSA-2022-0227 | In the Matter of JW Hunt Transport LLC dba JW - Respondent's Consent to Binding Arbitration | Other | Consent | 2023-01-20T05:00:00Z | 2023 | 1 | 2023-01-20T05:00:00Z | 2024-11-12T23:48:24Z | 1 | 0 | 09000064855fa488 | ||
| FMCSA-2022-0227-0002 | FMCSA | None FMCSA-2022-0227 | In the Matter of JW Hunt Transport LLC dba JW - Interim Order on Binding Arbitration | Other | Order | 2022-12-30T05:00:00Z | 2022 | 12 | 2022-12-30T05:00:00Z | 2024-11-12T23:48:35Z | 1 | 0 | 09000064855680bf | ||
| FMCSA-2022-0227-0001 | FMCSA | None FMCSA-2022-0227 | In the Matter of JW Hunt Transport LLC dba JW - Field Administrator’s Consent to Binding Arbitration, Alternatively, Motion for Default | Other | Consent | 2022-10-31T04:00:00Z | 2022 | 10 | 2022-10-31T04:00:00Z | 2024-11-07T00:43:55Z | 1 | 0 | 0900006485475916 |
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;