documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FMCSA-2015-0251" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, 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-2015-0251-0007 | FMCSA | None FMCSA-2015-0251 | In the Matter of Guillermo Bernal; Berg Transport, Inc.; Recolca USA, Inc.; and Berg Logistics, Inc. - Final Order On petition for Administrative Review of Operation Out-of-Service and Record Consolidation Order | Other | Final Order | 2015-12-28T05:00:00Z | 2015 | 12 | 2015-12-28T05:00:00Z | 2024-11-11T21:18:27Z | 1 | 0 | 0900006481dc5e50 | ||
| FMCSA-2015-0251-0006 | FMCSA | None FMCSA-2015-0251 | In the Matter of Guillermo Bernal; Berg Transport, Inc.; Recolca USA, Inc.; and Berg Logistics, Inc. - Petition for Administrative Review to Operations - Final Order on Petition for Administrative Review of Operations Out-of-Service and Record Consolidation Order | Other | Final Order | 2015-10-26T04:00:00Z | 2015 | 10 | 2015-10-26T04:00:00Z | 2015-10-26T12:40:05Z | 0 | 0 | 0900006481ce1da3 | ||
| FMCSA-2015-0251-0005 | FMCSA | None FMCSA-2015-0251 | In the Matter of Guillermo Bernal; Berg Transport, Inc.; Recolca USA, Inc.; and Berg Logistics, Inc. - Field Administrator's Memorandum in Support of Operations Out-Of-Service and Records Consolidation Order | Other | Adjudication Notice | 2015-09-02T04:00:00Z | 2015 | 9 | 2015-09-02T04:00:00Z | 2024-11-12T05:40:32Z | 1 | 0 | 0900006481c48732 | ||
| FMCSA-2015-0251-0004 | FMCSA | None FMCSA-2015-0251 | In the Matter of Guillermo Bernal; Berg Transport, Inc.; Recolca USA, Inc.; and Berg Logistics, Inc. - Notice of Withdraw as Attorney's of Records for Respondent's | Other | Adjudication Notice | 2015-08-27T04:00:00Z | 2015 | 8 | 2015-08-27T04:00:00Z | 2024-11-11T21:05:51Z | 1 | 0 | 0900006481c355e6 | ||
| FMCSA-2015-0251-0002 | FMCSA | None FMCSA-2015-0251 | In the Matter of Guillermo Bernal; Berg Transport, Inc.; Recolca USA, Inc.; and Berg Logistics, Inc. - Respondent's Motion for Extension of Time to Supplement for Administrative Review to Operation Out-of-Service and Record Consolidation Order | Other | Motion | 2015-08-12T04:00:00Z | 2015 | 8 | 2015-08-12T04:00:00Z | 2024-11-12T05:38:48Z | 1 | 0 | 0900006481bf856e | ||
| FMCSA-2015-0251-0003 | FMCSA | None FMCSA-2015-0251 | In the Matter of Guillermo Bernal; Berg Transport, Inc.; Recolca USA, Inc.; and Berg Logistics, Inc. - Order Granting Petitioners' Request for Extension of Time | Other | Order | 2015-08-12T04:00:00Z | 2015 | 8 | 2015-08-12T04:00:00Z | 2024-11-12T05:38:30Z | 1 | 0 | 0900006481c185b9 | ||
| FMCSA-2015-0251-0001 | FMCSA | None FMCSA-2015-0251 | In the Matter of Guillermo Bernal; Berg Transport, Inc.; Recolca USA, Inc.; and Berg Logistics, Inc. - Petition for Administrative Review to Operations Out-of-Service and Record Consolidation Order | Other | Petition(s) | 2015-07-21T04:00:00Z | 2015 | 7 | 2015-07-21T04:00:00Z | 2024-11-12T05:36:58Z | 1 | 0 | 0900006481b8c077 |
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;