documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FMCSA-2009-0036" and posted_year = 2012 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-2009-0036-0012 | FMCSA | WSC - In the Matter of Stewart Hay Co., Inc. - Petition for Reconsideration FMCSA-2009-0036 | In the Matter of Stewart Hay Co., Inc. - Errata | Other | Erratum | 2012-12-21T05:00:00Z | 2012 | 12 | 2012-12-21T05:00:00Z | 2024-11-12T05:10:06Z | 1 | 0 | 0900006481191532 | ||
| FMCSA-2009-0036-0011 | FMCSA | WSC - In the Matter of Stewart Hay Co., Inc. - Petition for Reconsideration FMCSA-2009-0036 | In the Matter of Stewart Hay Co., Inc. - Claimant's Motion For Summary Judgment | Other | Motion | 2012-12-13T05:00:00Z | 2012 | 12 | 2012-12-13T05:00:00Z | 2024-11-12T05:09:57Z | 1 | 0 | 09000064811865c7 | ||
| FMCSA-2009-0036-0010 | FMCSA | WSC - In the Matter of Stewart Hay Co., Inc. - Petition for Reconsideration FMCSA-2009-0036 | In the Matter of Stewart Hay Co., Inc. - Notice of Hearing Dates | Other | Adjudication Notice | 2012-11-23T05:00:00Z | 2012 | 11 | 2012-11-23T05:00:00Z | 2024-11-12T05:11:33Z | 1 | 0 | 09000064811717c9 | ||
| FMCSA-2009-0036-0009 | FMCSA | WSC - In the Matter of Stewart Hay Co., Inc. - Petition for Reconsideration FMCSA-2009-0036 | In the Matter of Stewart Hay Co., Inc. - Procedural Order | Other | Order | 2012-06-26T04:00:00Z | 2012 | 6 | 2012-06-26T04:00:00Z | 2024-11-07T22:41:33Z | 1 | 0 | 0900006481069090 | ||
| FMCSA-2009-0036-0008 | FMCSA | WSC - In the Matter of Stewart Hay Co., Inc. - Petition for Reconsideration FMCSA-2009-0036 | In the Matter of Stewart Hay Co., Inc. - Notice of Assignment of Proceeding | Other | Administrative Adjudication | 2012-06-21T04:00:00Z | 2012 | 6 | 2012-06-21T04:00:00Z | 2024-11-07T22:40:40Z | 1 | 0 | 090000648105cd92 | ||
| FMCSA-2009-0036-0007 | FMCSA | WSC - In the Matter of Stewart Hay Co., Inc. - Petition for Reconsideration FMCSA-2009-0036 | In the Matter of Stewart Hay Co., Inc. - Order Granting Petition For Reconsideration, Denying Motion To Dismiss And Motion for Final Order, And Appointing Administrative Law Judgement | Other | Order | 2012-06-19T04:00:00Z | 2012 | 6 | 2012-06-19T04:00:00Z | 2024-11-07T22:40:20Z | 1 | 0 | 0900006481051cc8 |
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;