documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FMCSA-2015-0124" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, open_for_comment, posted_date (date), comment_start_date (date), comment_end_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-0124-0056 | FMCSA | None FMCSA-2015-0124 | Meetings: Potential Benefits and Feasibility of Voluntary Compliance, | Notice | Meeting | 2015-12-24T05:00:00Z | 2015 | 12 | 2015-12-24T05:00:00Z | 2016-02-22T14:00:30Z | 2015-32358 | 0 | 0 | 0900006481dd0631 | |
| FMCSA-2015-0124-0008 | FMCSA | None FMCSA-2015-0124 | Beyond Compliance Program | Notice | Request for Comments | 2015-04-23T04:00:00Z | 2015 | 4 | 2015-04-23T04:00:00Z | 2015-06-23T03:59:59Z | 2024-11-07T23:15:49Z | 2015-09463 | 1 | 0 | 0900006481ab5db9 |
| FMCSA-2015-0124-0006 | FMCSA | None FMCSA-2015-0124 | Overview of Truck and Bus Safety Research Needs, 2014, Transportation Research Board | Supporting & Related Material | Report | 2015-04-22T04:00:00Z | 2015 | 4 | 2015-04-22T12:56:07Z | 0 | 0 | 0900006481ab12f4 | |||
| FMCSA-2015-0124-0003 | FMCSA | None FMCSA-2015-0124 | Murray, D., S. Shackelford and A. Houser. Analysis of Benefits and Costs of Roll Stability Control Systems for the Trucking Industry. FMCSA, 2009 | Supporting & Related Material | Report | 2015-04-22T04:00:00Z | 2015 | 4 | 2015-04-22T12:29:13Z | 0 | 0 | 0900006481ab12ee | |||
| FMCSA-2015-0124-0007 | FMCSA | None FMCSA-2015-0124 | Murray, Keppler, Lueck, Fender, Assessing the Benefits of Alternative Compliance, 2011, American Transportation Research Institute | Supporting & Related Material | Report | 2015-04-22T04:00:00Z | 2015 | 4 | 2015-04-22T12:58:42Z | 0 | 0 | 0900006481ab12f6 | |||
| FMCSA-2015-0124-0002 | FMCSA | None FMCSA-2015-0124 | Smith, M., Owens, N., Stock, D., Lantz, B., Murray, D. and Sensiba, G. 2005. Driver Violation Notification Service Feasibility Study | Supporting & Related Material | Report | 2015-04-22T04:00:00Z | 2015 | 4 | 2015-04-22T12:27:04Z | 0 | 0 | 0900006481ab0397 | |||
| FMCSA-2015-0124-0001 | FMCSA | None FMCSA-2015-0124 | Technical Brief: Commercial Motor Vehicle Tire Pressure Sensors, 2005, FMCSA | Other | Report | 2015-04-22T04:00:00Z | 2015 | 4 | 2015-04-22T04:00:00Z | 2016-06-15T13:00:23Z | 0 | 0 | 0900006481ab1313 | ||
| FMCSA-2015-0124-0005 | FMCSA | None FMCSA-2015-0124 | Bergoffen, G., Short, J., Inderbitzen, B. and Daecher, C. 2007. Commercial Truck and Bus Safety Synthesis 12, Transportation Research Board | Supporting & Related Material | Report | 2015-04-22T04:00:00Z | 2015 | 4 | 2015-04-22T12:35:58Z | 0 | 0 | 0900006481ab12f2 | |||
| FMCSA-2015-0124-0004 | FMCSA | None FMCSA-2015-0124 | Murray, D., S. Shackelford and A. Houser. Analysis of Benefits and Costs of Lane Departure Warning Systems for the Trucking Industry. FMCSA, 2009. | Supporting & Related Material | Report | 2015-04-22T04:00:00Z | 2015 | 4 | 2015-04-22T12:32:31Z | 0 | 0 | 0900006481ab12f0 |
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;