documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FMCSA-2012-0099" and posted_year = 2012 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-0099-0006 | FMCSA | SSC - In the Matter of Mercer Transportation Co. - Field Administrator’s Consent to Hearing FMCSA-2012-0099 | In the Matter of Mercer Transportation Co. - Order Setting Litigation Dates and Procedures | Other | Order | 2012-12-21T05:00:00Z | 2012 | 12 | 2012-12-21T05:00:00Z | 2024-11-12T05:11:08Z | 1 | 0 | 090000648118d00b | ||
| FMCSA-2012-0099-0005 | FMCSA | SSC - In the Matter of Mercer Transportation Co. - Field Administrator’s Consent to Hearing FMCSA-2012-0099 | In the Matter of Mercer Transportaiton Co., Inc. - Rule 26(f) Report | Other | Report | 2012-12-07T05:00:00Z | 2012 | 12 | 2012-12-07T05:00:00Z | 2024-11-12T05:11:58Z | 1 | 0 | 09000064811808f3 | ||
| FMCSA-2012-0099-0004 | FMCSA | SSC - In the Matter of Mercer Transportation Co. - Field Administrator’s Consent to Hearing FMCSA-2012-0099 | In the Matter of Mercer Transportation Co. - Order Setting Rule 16 Litigation Scheduling Conference, and Directing Rule 26(f) Planning and Submission | Other | Order | 2012-10-15T04:00:00Z | 2012 | 10 | 2012-10-15T04:00:00Z | 2024-11-12T05:06:44Z | 1 | 0 | 0900006481141275 | ||
| FMCSA-2012-0099-0003 | FMCSA | SSC - In the Matter of Mercer Transportation Co. - Field Administrator’s Consent to Hearing FMCSA-2012-0099 | In the Matter of Mercer Transportation Co. - Notice of Assignment of Proceeding | Other | Adjudication Notice | 2012-10-09T04:00:00Z | 2012 | 10 | 2012-10-09T04:00:00Z | 2024-11-12T05:07:18Z | 1 | 0 | 0900006481138d87 | ||
| FMCSA-2012-0099-0002 | FMCSA | SSC - In the Matter of Mercer Transportation Co. - Field Administrator’s Consent to Hearing FMCSA-2012-0099 | In the Matter of Mercer Transportation Co. - Order Appointing Administrative Law Judge | Other | Order | 2012-10-04T04:00:00Z | 2012 | 10 | 2012-10-04T04:00:00Z | 2024-11-11T20:41:47Z | 1 | 0 | 090000648113315d | ||
| FMCSA-2012-0099-0001 | FMCSA | SSC - In the Matter of Mercer Transportation Co. - Field Administrator’s Consent to Hearing FMCSA-2012-0099 | In the Matter of Mercer Transportation Co. - Field Administrator's Consent to Hearing | Other | Consent | 2012-03-29T04:00:00Z | 2012 | 3 | 2012-03-29T04:00:00Z | 2012-03-29T17:54:08Z | 0 | 0 | 0900006480fe33cc |
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;