documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FMCSA-2006-25348" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, 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-2006-25348-0142 | FMCSA | MSC - In the Matter of Transland, Inc. - Field Administrator's Objection to Respondent's Request for Hearing FMCSA-2006-25348 | In the Matter of Transland, Inc. - Response of Transland, Inc. to the Field Adminstrator's Opposition to Transland, Inc.'s Petition for an Award of Fees and Expenses | Other | Response(s) | 2012-07-02T04:00:00Z | 2012 | 7 | 2012-07-02T04:00:00Z | 2024-11-07T22:43:46Z | 1 | 0 | 09000064810760ba | ||
| FMCSA-2006-25348-0141 | FMCSA | MSC - In the Matter of Transland, Inc. - Field Administrator's Objection to Respondent's Request for Hearing FMCSA-2006-25348 | U.S. DOT/FMCSA - Field Administrator's Answer to Application for Fees | Other | Answer | 2012-06-13T04:00:00Z | 2012 | 6 | 2012-06-13T04:00:00Z | 2024-11-07T22:40:58Z | 1 | 0 | 0900006481048240 | ||
| FMCSA-2006-25348-0140 | FMCSA | MSC - In the Matter of Transland, Inc. - Field Administrator's Objection to Respondent's Request for Hearing FMCSA-2006-25348 | In the Matter of Transland, Inc. - Notice of Assignment of Proceeding | Other | Administrative Adjudication | 2012-06-05T04:00:00Z | 2012 | 6 | 2012-06-05T04:00:00Z | 2024-11-11T20:40:56Z | 1 | 0 | 0900006481034ecd | ||
| FMCSA-2006-25348-0139 | FMCSA | MSC - In the Matter of Transland, Inc. - Field Administrator's Objection to Respondent's Request for Hearing FMCSA-2006-25348 | In the Matter of Transland, Inc. - Order of Chief Administrative Law Judge Establishing Procedures Regarding Respondent's Application for Fees and Expenses Under the Equal Access to Justice Act | Other | Order | 2012-06-05T04:00:00Z | 2012 | 6 | 2012-06-05T04:00:00Z | 2024-11-11T20:40:55Z | 1 | 0 | 0900006481034eca | ||
| FMCSA-2006-25348-0138 | FMCSA | MSC - In the Matter of Transland, Inc. - Field Administrator's Objection to Respondent's Request for Hearing FMCSA-2006-25348 | In the Matter of Transland, Inc. - Petition for an Award of Costs and Fees | Other | Petition(s) | 2012-05-17T04:00:00Z | 2012 | 5 | 2012-05-17T04:00:00Z | 2024-11-07T22:41:11Z | 1 | 0 | 09000064810132df | ||
| FMCSA-2006-25348-0137 | FMCSA | MSC - In the Matter of Transland, Inc. - Field Administrator's Objection to Respondent's Request for Hearing FMCSA-2006-25348 | In the Matter of Transland, Inc. - Final Order: Decision on Review | Other | Final Order | 2012-04-18T04:00:00Z | 2012 | 4 | 2012-04-18T04:00:00Z | 2024-11-07T22:19:19Z | 1 | 0 | 0900006480ff2a2c |
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;