documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FMCSA-2022-0062" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- FMCSA 9
| 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-2022-0062-2098 | FMCSA | None FMCSA-2022-0062 | Commercial Vehicle Safety Alliance - Petition July 26 2010 | Supporting & Related Material | Petition | 2023-01-10T05:00:00Z | 2023 | 1 | 2023-01-10T18:54:46Z | 0 | 0 | 09000064855d57f4 | |||
| FMCSA-2022-0062-0008 | FMCSA | None FMCSA-2022-0062 | Unique Electronic Identification of Commercial Motor Vehicles | Proposed Rule | Advance Notice of Proposed Rulemaking (ANPRM) | 2022-09-23T04:00:00Z | 2022 | 9 | 2022-09-23T04:00:00Z | 2022-11-23T04:59:59Z | 2023-03-04T02:01:34Z | 2022-20643 | 0 | 0 | 090000648535ab3c |
| FMCSA-2022-0062-0007 | FMCSA | None FMCSA-2022-0062 | CVSA - Petition for Reconsideration 2015 | Supporting & Related Material | Report | 2022-08-02T04:00:00Z | 2022 | 8 | 2022-08-02T14:13:09Z | 0 | 0 | 09000064851f577d | |||
| FMCSA-2022-0062-0005 | FMCSA | None FMCSA-2022-0062 | Electronic ID Petition Grant Letter to CVSA dated November 2 2015 | Supporting & Related Material | Report | 2022-08-02T04:00:00Z | 2022 | 8 | 2022-08-02T14:12:52Z | 0 | 0 | 09000064851f575a | |||
| FMCSA-2022-0062-0004 | FMCSA | None FMCSA-2022-0062 | FMCSA Our Roads Campaign | Supporting & Related Material | Report | 2022-08-02T04:00:00Z | 2022 | 8 | 2022-08-02T14:12:43Z | 0 | 0 | 09000064851f5758 | |||
| FMCSA-2022-0062-0006 | FMCSA | None FMCSA-2022-0062 | CVSA - Petition to Require Universal ID - Denial Letter and Decision May 24 2013 | Supporting & Related Material | Report | 2022-08-02T04:00:00Z | 2022 | 8 | 2022-08-02T14:12:59Z | 0 | 0 | 09000064851f5775 | |||
| FMCSA-2022-0062-0002 | FMCSA | None FMCSA-2022-0062 | Safety Effects of Transponder and LPRs June 2020 | Supporting & Related Material | Report | 2022-08-02T04:00:00Z | 2022 | 8 | 2022-08-02T14:12:31Z | 0 | 0 | 09000064851f56d3 | |||
| FMCSA-2022-0062-0003 | FMCSA | None FMCSA-2022-0062 | FMSCA. MCSAP Grant Comprehensive policy March 2018 | Supporting & Related Material | Report | 2022-08-02T04:00:00Z | 2022 | 8 | 2022-08-02T14:12:37Z | 0 | 0 | 09000064851f5756 | |||
| FMCSA-2022-0062-0001 | FMCSA | None FMCSA-2022-0062 | Commercial Vehicle Safety Alliance - Exemption/Rulemaking | Other | Petition(s) | 2022-03-21T04:00:00Z | 2022 | 3 | 2022-03-21T04:00:00Z | 2023-02-07T02:00:15Z | 0 | 0 | 0900006484fd6779 |
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;