documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "FMCSA-2015-0110" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, open_for_comment, withdrawn, 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-2015-0110-0011 | FMCSA | None FMCSA-2015-0110 | In the Matter of AMI Coaches LLC - Order Dismissing Petition for Reconsideration | Other | Order | 2018-08-31T04:00:00Z | 2018 | 8 | 2018-08-31T04:00:00Z | 2024-11-07T01:37:12Z | 1 | 0 | 0900006483687ba4 | ||
| FMCSA-2015-0110-0010 | FMCSA | None FMCSA-2015-0110 | In the Matter of AMI Coaches LLC - Notice of Appearance and Withdrawal of Prior Substitution of Counsel | Other | Adjudication Notice | 2017-07-13T04:00:00Z | 2017 | 7 | 2017-07-13T04:00:00Z | 2024-11-07T01:03:08Z | 1 | 0 | 0900006482913d1f | ||
| FMCSA-2015-0110-0009 | FMCSA | None FMCSA-2015-0110 | In the Matter of AMI Coaches - 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 | 09000064821d8b87 | ||
| FMCSA-2015-0110-0008 | FMCSA | None FMCSA-2015-0110 | In the Matter of AMI Coaches - Order Dismissing Proceeding and Closing Docket | Other | 2016-01-08T00:00:00Z | 2016 | 1 | 2024-11-11T21:20:39Z | 0 | 1 | 0900006481df35f5 | ||||
| FMCSA-2015-0110-0007 | FMCSA | None FMCSA-2015-0110 | In the Matter of AMI Coaches - Final Order On Petition for Review of Denial of Upgrade of Safety Rating | Other | Final Order | 2015-12-28T05:00:00Z | 2015 | 12 | 2015-12-28T05:00:00Z | 2024-11-11T21:19:17Z | 1 | 0 | 0900006481dc7435 | ||
| FMCSA-2015-0110-0006 | FMCSA | None FMCSA-2015-0110 | In the Matter of AMI Coaches - Request for Reconsideration | Other | Request | 2015-12-16T05:00:00Z | 2015 | 12 | 2015-12-16T05:00:00Z | 2015-12-16T20:46:15Z | 0 | 0 | 0900006481db3023 | ||
| FMCSA-2015-0110-0005 | FMCSA | None FMCSA-2015-0110 | In the Matter of AMI Coaches - Petitioner's Response to Interim Order | Other | Response(s) | 2015-05-15T04:00:00Z | 2015 | 5 | 2015-05-15T04:00:00Z | 2024-11-07T23:22:36Z | 1 | 0 | 0900006481ae14b9 | ||
| FMCSA-2015-0110-0004 | FMCSA | None FMCSA-2015-0110 | In the Matter of AMI Coaches - Regional Field Administrator's Response to Request for Administrative Review | Other | Response(s) | 2015-05-05T04:00:00Z | 2015 | 5 | 2015-05-05T04:00:00Z | 2024-11-07T23:23:12Z | 1 | 0 | 0900006481ac5666 | ||
| FMCSA-2015-0110-0003 | FMCSA | None FMCSA-2015-0110 | In the Matter of AMI Coaches - Errata | Other | Erratum | 2015-05-05T04:00:00Z | 2015 | 5 | 2015-05-05T04:00:00Z | 2024-11-07T23:20:18Z | 1 | 0 | 0900006481ac8550 | ||
| FMCSA-2015-0110-0002 | FMCSA | None FMCSA-2015-0110 | In the Matter of AMI Coaches - Response to Interim Order | Other | Response(s) | 2015-04-27T04:00:00Z | 2015 | 4 | 2015-04-27T04:00:00Z | 2024-11-12T05:35:49Z | 1 | 0 | 0900006481ab5cb9 | ||
| FMCSA-2015-0110-0001 | FMCSA | None FMCSA-2015-0110 | In the Matter of AMI Coaches - Petition for Safety Rating Review | Other | Petition(s) | 2015-03-26T04:00:00Z | 2015 | 3 | 2015-03-26T04:00:00Z | 2024-11-12T05:36:16Z | 1 | 0 | 0900006481a5f3ac |
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;