documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FMCSA-2013-0264" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-2013-0264-0008 | FMCSA | WSC - In the Matter of Gary Dean Stokes - Field Administrator’s Objection to Request for Formal Hearing FMCSA-2013-0264 | In the Matter of Gary Dean Stokes - RETURNED MAIL - Order Dismissing Proceeding and Closing Docket | Other | Order | 2018-04-04T04:00:00Z | 2018 | 4 | 2018-04-04T04:00:00Z | 2024-11-07T01:24:39Z | 1 | 0 | 0900006483093b60 | ||
| FMCSA-2013-0264-0007 | FMCSA | WSC - In the Matter of Gary Dean Stokes - Field Administrator’s Objection to Request for Formal Hearing FMCSA-2013-0264 | In the Matter of Gary Dean Stokes - Order Dismissing Proceeding and Closing Docket | Other | Order | 2018-03-12T04:00:00Z | 2018 | 3 | 2018-03-12T04:00:00Z | 2024-11-07T01:23:29Z | 1 | 0 | 0900006482fd8736 | ||
| FMCSA-2013-0264-0006 | FMCSA | WSC - In the Matter of Gary Dean Stokes - Field Administrator’s Objection to Request for Formal Hearing FMCSA-2013-0264 | In the Matter of Gary Dean Stokes - Motion to Dismiss | Other | Motion | 2018-02-28T05:00:00Z | 2018 | 2 | 2018-02-28T05:00:00Z | 2024-11-07T01:23:17Z | 1 | 0 | 0900006482f6d1df | ||
| FMCSA-2013-0264-0005 | FMCSA | WSC - In the Matter of Gary Dean Stokes - Field Administrator’s Objection to Request for Formal Hearing FMCSA-2013-0264 | In the Matter of Gary Dean Stokes - Notice of Appearance | Other | Adjudication Notice | 2017-07-13T04:00:00Z | 2017 | 7 | 2017-07-13T04:00:00Z | 2024-11-07T01:07:17Z | 1 | 0 | 0900006482913a64 | ||
| FMCSA-2013-0264-0004 | FMCSA | WSC - In the Matter of Gary Dean Stokes - Field Administrator’s Objection to Request for Formal Hearing FMCSA-2013-0264 | In the Matter of Gary Dean Stokes - Notice of Second Attempt of Service | Other | Supplemental Comment | 2016-12-20T05:00:00Z | 2016 | 12 | 2016-12-20T05:00:00Z | 2024-11-12T06:17:36Z | 1 | 0 | 090000648242864f | ||
| FMCSA-2013-0264-0003 | FMCSA | WSC - In the Matter of Gary Dean Stokes - Field Administrator’s Objection to Request for Formal Hearing FMCSA-2013-0264 | In the Matter of Gary Dean Stokes - Substitution of Counsel | Other | Additional Information | 2016-09-07T04:00:00Z | 2016 | 9 | 2016-09-07T04:00:00Z | 2024-11-07T23:48:14Z | 1 | 0 | 09000064821d8ae1 | ||
| FMCSA-2013-0264-0002 | FMCSA | WSC - In the Matter of Gary Dean Stokes - Field Administrator’s Objection to Request for Formal Hearing FMCSA-2013-0264 | In the Matter of Gary Dean Stokes - Notice of Correction and Request to Substitute Attachment | Other | Administrative Adjudication | 2013-10-03T04:00:00Z | 2013 | 10 | 2013-10-03T04:00:00Z | 2024-11-12T05:20:37Z | 1 | 0 | 0900006481443f14 | ||
| FMCSA-2013-0264-0001 | FMCSA | WSC - In the Matter of Gary Dean Stokes - Field Administrator’s Objection to Request for Formal Hearing FMCSA-2013-0264 | In the Matter of Gary Dean Stokes - Regional Field Administrator's Objection to Formal Hearing and Motion for Final Agency Order and Memorandum of Law | Other | Objection(s) | 2013-06-26T04:00:00Z | 2013 | 6 | 2013-06-26T04:00:00Z | 2024-11-12T05:15:41Z | 1 | 0 | 0900006481342251 |
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;