documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FMCSA-2011-0112" 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-2011-0112-0008 | FMCSA | MSC - In the Matter of Western Star Transportation, LLC - Field Administrator's Objection to Respondent's Request for Hearing FMCSA-2011-0112 | In the Matter of Western Star Transportation, LLC - Order of Dismissal | Other | Order | 2013-04-15T04:00:00Z | 2013 | 4 | 2013-04-15T04:00:00Z | 2024-11-11T20:45:47Z | 1 | 0 | 0900006481291ded | ||
| FMCSA-2011-0112-0007 | FMCSA | MSC - In the Matter of Western Star Transportation, LLC - Field Administrator's Objection to Respondent's Request for Hearing FMCSA-2011-0112 | In the Matter of Western Star Transportation, LLC - Notice of Settlement and Motion to Dismiss | Other | Notification of Settlement | 2013-04-15T04:00:00Z | 2013 | 4 | 2013-04-15T04:00:00Z | 2024-11-12T05:16:13Z | 1 | 0 | 0900006481290263 | ||
| FMCSA-2011-0112-0006 | FMCSA | MSC - In the Matter of Western Star Transportation, LLC - Field Administrator's Objection to Respondent's Request for Hearing FMCSA-2011-0112 | In the Matter of Western Star Transportation, LLC - Hearing Notice | Other | Adjudication Notice | 2013-02-25T05:00:00Z | 2013 | 2 | 2013-02-25T05:00:00Z | 2024-11-07T22:46:30Z | 1 | 0 | 0900006481206e73 | ||
| FMCSA-2011-0112-0005 | FMCSA | MSC - In the Matter of Western Star Transportation, LLC - Field Administrator's Objection to Respondent's Request for Hearing FMCSA-2011-0112 | In the Matter of Western Star Transportation, LLC - Procedural Order | Other | Order | 2013-01-25T05:00:00Z | 2013 | 1 | 2013-01-25T05:00:00Z | 2024-11-12T05:12:56Z | 1 | 0 | 09000064811d6b2f | ||
| FMCSA-2011-0112-0004 | FMCSA | MSC - In the Matter of Western Star Transportation, LLC - Field Administrator's Objection to Respondent's Request for Hearing FMCSA-2011-0112 | In the Matter of Western Star Transportation, LLC - Notice of Assignment of Proceeding | Other | Adjudication Notice | 2012-12-31T05:00:00Z | 2012 | 12 | 2012-12-31T05:00:00Z | 2024-11-12T05:12:04Z | 1 | 0 | 090000648119a9a4 | ||
| FMCSA-2011-0112-0003 | FMCSA | MSC - In the Matter of Western Star Transportation, LLC - Field Administrator's Objection to Respondent's Request for Hearing FMCSA-2011-0112 | In the Matter of Western Star Transportation, LLC - Order Appointing Administrative Law Judge | Other | Order | 2012-12-21T05:00:00Z | 2012 | 12 | 2012-12-21T05:00:00Z | 2024-11-12T05:09:24Z | 1 | 0 | 090000648118cfb5 | ||
| FMCSA-2011-0112-0002 | FMCSA | MSC - In the Matter of Western Star Transportation, LLC - Field Administrator's Objection to Respondent's Request for Hearing FMCSA-2011-0112 | In the Matter of Western Star Transportation, LLC - Field Administrator’s Consent to Respondent’s Request for Formal Hearing | Other | Consent | 2012-05-30T04:00:00Z | 2012 | 5 | 2012-05-30T04:00:00Z | 2024-11-07T22:29:51Z | 1 | 0 | 0900006481021397 | ||
| FMCSA-2011-0112-0001 | FMCSA | MSC - In the Matter of Western Star Transportation, LLC - Field Administrator's Objection to Respondent's Request for Hearing FMCSA-2011-0112 | In the Matter of Western Star Transportation , LLC | Other | Objection(s) | 2011-04-22T04:00:00Z | 2011 | 4 | 2011-04-22T04:00:00Z | 2013-08-11T01:41:13Z | 0 | 0 | 0900006480c354b5 |
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;