documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FMCSA-2007-27935" 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-2007-27935-0008 | FMCSA | ESC - In the Matter of Maverick Aviation Consultants, Inc. - Petition for Reconsideration of Notice of Default and Final Agency Order FMCSA-2007-27935 | In the Matter of Maverick Aviation Consultants, Inc. - Final Order Adopting Hearing Officer's Report and Recommendation | Other | Final Order | 2011-07-27T04:00:00Z | 2011 | 7 | 2011-07-27T04:00:00Z | 2011-07-27T18:24:00Z | 0 | 0 | 0900006480ec9b7a | ||
| FMCSA-2007-27935-0007 | FMCSA | ESC - In the Matter of Maverick Aviation Consultants, Inc. - Petition for Reconsideration of Notice of Default and Final Agency Order FMCSA-2007-27935 | U.S.DOT/FMCSA - Hearing Officer's Report and Recommendation to Terminate Proceeding and Close Docket | Other | Report | 2011-07-14T04:00:00Z | 2011 | 7 | 2011-07-14T04:00:00Z | 2024-11-07T22:36:07Z | 1 | 0 | 0900006480ec2915 | ||
| FMCSA-2007-27935-0006 | FMCSA | ESC - In the Matter of Maverick Aviation Consultants, Inc. - Petition for Reconsideration of Notice of Default and Final Agency Order FMCSA-2007-27935 | In the Matter of Maverick Aviation Consultants, Inc. - Notice Of Reassignment | Other | Other | 2010-10-22T04:00:00Z | 2010 | 10 | 2010-10-22T04:00:00Z | 2024-11-12T04:56:57Z | 1 | 0 | 0900006480b756bc | ||
| FMCSA-2007-27935-0004 | FMCSA | ESC - In the Matter of Maverick Aviation Consultants, Inc. - Petition for Reconsideration of Notice of Default and Final Agency Order FMCSA-2007-27935 | ESC - In the Matter of Maverick Aviation Consultants, Inc. - Order Vacting Notice of Default and Final Agency Order and Appointing Hearing Officer | Other | Order | 2008-02-06T05:00:00Z | 2008 | 2 | 2008-02-06T05:00:00Z | 2008-02-06T16:35:20Z | 0 | 0 | 09000064803a95dd | ||
| FMCSA-2007-27935-0003 | FMCSA | ESC - In the Matter of Maverick Aviation Consultants, Inc. - Petition for Reconsideration of Notice of Default and Final Agency Order FMCSA-2007-27935 | In the Matter of Maverick Aviation Consultants, Inc. - Field Administrator's Response and opposition to Petition for Reconsideration | Other | Response(s) | 2008-02-06T05:00:00Z | 2008 | 2 | 2008-02-06T05:00:00Z | 2008-02-06T16:23:31Z | 0 | 0 | 09000064803a95b4 | ||
| FMCSA-2007-27935-0002 | FMCSA | ESC - In the Matter of Maverick Aviation Consultants, Inc. - Petition for Reconsideration of Notice of Default and Final Agency Order FMCSA-2007-27935 | In the Matter of Maverick Aviation Consultants, Inc. - Field Administrator's Response and opposition to Petition for Reconsideration | Other | 2008-01-16T00:00:00Z | 2008 | 1 | 2013-08-11T02:29:15Z | 0 | 1 | 090000648039c3ae | ||||
| FMCSA-2007-27935-0001 | FMCSA | ESC - In the Matter of Maverick Aviation Consultants, Inc. - Petition for Reconsideration of Notice of Default and Final Agency Order FMCSA-2007-27935 | In the Matter of Maverick Aviation Consultants, Inc. - Petition for Reconsideration of Notice of Default and Final Agency Order | Other | Petition(s) | 2007-03-27T04:00:00Z | 2007 | 3 | 2007-03-27T04:00:00Z | 2007-03-28T03:59:59Z | 2024-11-11T22:06:53Z | 1 | 0 | 09000064802ad24b |
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;