documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FMCSA-2012-0475" and posted_year = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, open_for_comment, 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-0475-0031 | FMCSA | WSC - In the Matter of Multistar Industries, Inc. dba Multifrost, Inc. - Regional Field Administrator's Objection to Request for Formal Hearing FMCSA-2012-0475 | In the Matter of Multistar Industries, Inc. dba Multifrost, Inc. - Regional Field Administrator's Post-Hearing Reply Brief | Other | Brief | 2014-03-26T04:00:00Z | 2014 | 3 | 2014-03-26T04:00:00Z | 2024-11-07T23:04:59Z | 1 | 0 | 0900006481681548 | ||
| FMCSA-2012-0475-0030 | FMCSA | WSC - In the Matter of Multistar Industries, Inc. dba Multifrost, Inc. - Regional Field Administrator's Objection to Request for Formal Hearing FMCSA-2012-0475 | In the Matter of Multistar Industries, Inc. dba Multifrost, Inc. - Respondent's Post-Hearing Brief | Other | Brief | 2014-02-28T05:00:00Z | 2014 | 2 | 2014-02-28T05:00:00Z | 2024-11-12T05:25:34Z | 1 | 0 | 09000064815ebf19 | ||
| FMCSA-2012-0475-0029 | FMCSA | WSC - In the Matter of Multistar Industries, Inc. dba Multifrost, Inc. - Regional Field Administrator's Objection to Request for Formal Hearing FMCSA-2012-0475 | In the Matter of Multistar Industries, Inc. dba Multifrost, Inc. - Amended Post Hearing Briefing Order | Other | Order | 2014-02-21T05:00:00Z | 2014 | 2 | 2014-02-21T05:00:00Z | 2014-02-21T20:54:55Z | 0 | 0 | 090000648159927a | ||
| FMCSA-2012-0475-0028 | FMCSA | WSC - In the Matter of Multistar Industries, Inc. dba Multifrost, Inc. - Regional Field Administrator's Objection to Request for Formal Hearing FMCSA-2012-0475 | U.S. DOT/OST - In the Matter of Multistar Industries, Inc. dba Multifrost, Inc. - Order Granting Motion to Extend Procedural Order | Other | Order | 2014-02-20T05:00:00Z | 2014 | 2 | 2014-02-20T05:00:00Z | 2014-02-20T17:19:29Z | 0 | 0 | 0900006481590209 | ||
| FMCSA-2012-0475-0027 | FMCSA | WSC - In the Matter of Multistar Industries, Inc. dba Multifrost, Inc. - Regional Field Administrator's Objection to Request for Formal Hearing FMCSA-2012-0475 | In the Matter of Multistar Industries, Inc. dba Multifrost, Inc. - Regional Field Administrator's Unopposed Motion to Extend Procedural Order | Other | Motion | 2014-02-18T05:00:00Z | 2014 | 2 | 2014-02-18T05:00:00Z | 2024-11-07T23:04:25Z | 1 | 0 | 0900006481568d68 | ||
| FMCSA-2012-0475-0026 | FMCSA | WSC - In the Matter of Multistar Industries, Inc. dba Multifrost, Inc. - Regional Field Administrator's Objection to Request for Formal Hearing FMCSA-2012-0475 | In the Matter of Multistar Industries, Inc. dba Multifrost, Inc. - Regional Field Administrator's Post Hearing Brief | Other | Brief | 2014-01-30T05:00:00Z | 2014 | 1 | 2014-01-30T05:00:00Z | 2024-11-07T23:03:37Z | 1 | 0 | 0900006481536295 | ||
| FMCSA-2012-0475-0025 | FMCSA | WSC - In the Matter of Multistar Industries, Inc. dba Multifrost, Inc. - Regional Field Administrator's Objection to Request for Formal Hearing FMCSA-2012-0475 | In the Matter of Multistar Industries, Inc. dba Multifrost, Inc. - Procedural Order | Other | Order | 2014-01-15T05:00:00Z | 2014 | 1 | 2014-01-15T05:00:00Z | 2024-11-07T23:02:14Z | 1 | 0 | 09000064815088dd | ||
| FMCSA-2012-0475-0024 | FMCSA | WSC - In the Matter of Multistar Industries, Inc. dba Multifrost, Inc. - Regional Field Administrator's Objection to Request for Formal Hearing FMCSA-2012-0475 | In the Matter of Multistar Industries, Inc. dba Multifrost, Inc. - Transcript | Other | Transcript(s) | 2014-01-14T05:00:00Z | 2014 | 1 | 2014-01-14T05:00:00Z | 2024-11-07T23:01:26Z | 1 | 0 | 0900006481503764 |
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;