documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FMCSA-2022-0148" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, open_for_comment, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- FMCSA 8
| 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-0148-0145 | FMCSA | None FMCSA-2022-0148 | Exemption Application: Commercial Driver's License; National School Transportation Association | Notice | Notice of Renewal | 2024-12-02T05:00:00Z | 2024 | 12 | 2024-12-02T05:00:00Z | 2025-12-29T10:00:08Z | 2024-28098 | 1 | 0 | 0900006486843d04 | |
| FMCSA-2022-0148-0144 | FMCSA | None FMCSA-2022-0148 | U.S. DOT/FMCSA - October 2024 Commercial Drivers License (CDL) Bi-Monthly Roundtable Meeting Summary (October 1, 2024) | Supporting & Related Material | Supplement | 2024-11-14T05:00:00Z | 2024 | 11 | 2024-11-25T18:56:36Z | 0 | 0 | 0900006486813470 | |||
| FMCSA-2022-0148-0065 | FMCSA | None FMCSA-2022-0148 | Exemption Application: Commercial Driver's License; National School Transportation Assn. | Notice | Request for Comments | 2024-05-30T04:00:00Z | 2024 | 5 | 2024-05-30T04:00:00Z | 2024-07-02T03:59:59Z | 2024-11-12T22:31:54Z | 2024-11869 | 1 | 0 | 090000648658c1b8 |
| FMCSA-2022-0148-0066 | FMCSA | None FMCSA-2022-0148 | National School Transportation Association (NSTA) - Application for Renewal of Exemption | Other | Application | 2024-05-30T04:00:00Z | 2024 | 5 | 2024-05-30T04:00:00Z | 2024-11-12T22:31:31Z | 1 | 0 | 090000648658befe | ||
| FMCSA-2022-0148-0064 | FMCSA | None FMCSA-2022-0148 | Commercial Driver's Licenses: National School Transportation Association; Exemption Application; Correction | Notice | Correction | 2022-11-02T04:00:00Z | 2022 | 11 | 2022-11-02T04:00:00Z | 2024-11-12T23:47:51Z | 2022-23830 | 1 | 0 | 090000648547b3d9 | |
| FMCSA-2022-0148-0063 | FMCSA | None FMCSA-2022-0148 | Exemption Application: Commercial Driver's License; National School Transportation Association | Notice | Notice of Intent | 2022-10-27T04:00:00Z | 2022 | 10 | 2022-10-27T04:00:00Z | 2024-11-07T00:43:39Z | 2022-23346 | 1 | 0 | 09000064854626e3 | |
| FMCSA-2022-0148-0002 | FMCSA | None FMCSA-2022-0148 | Commercial Driver's Licenses: National School Transportation Association; Exemption Application | Notice | Request for Comments | 2022-08-11T04:00:00Z | 2022 | 8 | 2022-08-11T04:00:00Z | 2022-09-13T03:59:59Z | 2024-11-12T23:44:15Z | 2022-17228 | 1 | 0 | 090000648522fd35 |
| FMCSA-2022-0148-0001 | FMCSA | None FMCSA-2022-0148 | National School Transporation Association- Petition for Exemption | Other | Petitions for Exemption | 2022-07-01T04:00:00Z | 2022 | 7 | 2022-07-01T04:00:00Z | 2022-09-17T01:01:01Z | 0 | 0 | 09000064851aef5b |
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;