documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FMCSA-2012-0316" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, 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-2012-0316-0008 | FMCSA | SSC - In the Matter of Keystops, LLC dba Key Oil Company - Field Administrator's Objection to Respondent's Hearing Request FMCSA-2012-0316 | In the Matter of Keystops, LLC dba Key Oil Company - Order Dismissing Proceeding | Other | Order | 2018-02-27T05:00:00Z | 2018 | 2 | 2018-02-27T05:00:00Z | 2024-11-07T01:22:39Z | 1 | 0 | 0900006482f6956d | ||
| FMCSA-2012-0316-0007 | FMCSA | SSC - In the Matter of Keystops, LLC dba Key Oil Company - Field Administrator's Objection to Respondent's Hearing Request FMCSA-2012-0316 | In the Matter of Keystops, LLC dba Key Oil Company - Regional Field Administrator's Notice of Payment in Full and Request to Terminate proceedings and Close Docket | Other | Adjudication Notice | 2018-02-23T05:00:00Z | 2018 | 2 | 2018-02-23T05:00:00Z | 2024-11-07T01:22:34Z | 1 | 0 | 0900006482f54400 | ||
| FMCSA-2012-0316-0006 | FMCSA | SSC - In the Matter of Keystops, LLC dba Key Oil Company - Field Administrator's Objection to Respondent's Hearing Request FMCSA-2012-0316 | In the Matter of Keystops, LLC dba Key Oil Company - Order Setting A Rule 16 Litigation Scheduling Conference, and Directing The Parties to Confer and File a Rule 26(f) Proposed Discovery Plan | Other | Order | 2018-02-22T05:00:00Z | 2018 | 2 | 2018-02-22T05:00:00Z | 2024-11-07T01:22:40Z | 1 | 0 | 0900006482f5268d | ||
| FMCSA-2012-0316-0005 | FMCSA | SSC - In the Matter of Keystops, LLC dba Key Oil Company - Field Administrator's Objection to Respondent's Hearing Request FMCSA-2012-0316 | In the Matter of Keystops, LLC dba Key Oil Company - Notice of Assignment of Proceeding | Other | Adjudication Notice | 2018-02-08T05:00:00Z | 2018 | 2 | 2018-02-08T05:00:00Z | 2024-11-07T01:22:10Z | 1 | 0 | 0900006482f0169c | ||
| FMCSA-2012-0316-0004 | FMCSA | SSC - In the Matter of Keystops, LLC dba Key Oil Company - Field Administrator's Objection to Respondent's Hearing Request FMCSA-2012-0316 | In the Matter of Keystops, LLC dba Key Oil Company - Order Appointing Administrative Law Judge | Other | Order | 2017-12-12T05:00:00Z | 2017 | 12 | 2017-12-12T05:00:00Z | 2024-11-07T01:13:04Z | 1 | 0 | 0900006482cff4c9 | ||
| FMCSA-2012-0316-0003 | FMCSA | SSC - In the Matter of Keystops, LLC dba Key Oil Company - Field Administrator's Objection to Respondent's Hearing Request FMCSA-2012-0316 | In the Matter of Keystops, LLC dba Key Oil Company - Verified Response to Field Administrator's Motion for Final Order | Other | Response(s) | 2014-08-22T04:00:00Z | 2014 | 8 | 2014-08-22T04:00:00Z | 2024-11-11T20:54:33Z | 1 | 0 | 0900006481832035 | ||
| FMCSA-2012-0316-0002 | FMCSA | SSC - In the Matter of Keystops, LLC dba Key Oil Company - Field Administrator's Objection to Respondent's Hearing Request FMCSA-2012-0316 | In the Matter of Keystops LLC dba Key Oil Company - Field Administrator's Motion for Final Order | Other | Motion | 2014-07-17T04:00:00Z | 2014 | 7 | 2014-07-17T04:00:00Z | 2024-11-12T05:27:23Z | 1 | 0 | 09000064817b7533 | ||
| FMCSA-2012-0316-0001 | FMCSA | SSC - In the Matter of Keystops, LLC dba Key Oil Company - Field Administrator's Objection to Respondent's Hearing Request FMCSA-2012-0316 | In the Matter of Keystops, LLC dba Key Oil Company - Field Administrator's Notice of Objection to Respondent's Request for Formal Hearing | Other | Objection(s) | 2012-09-11T04:00:00Z | 2012 | 9 | 2012-09-11T04:00:00Z | 2024-11-11T20:42:14Z | 1 | 0 | 090000648110f81c |
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;