documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FMCSA-2021-0050" 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), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- FMCSA 6
| 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-2021-0050-0095 | FMCSA | None FMCSA-2021-0050 | Ex Parte Communications re: Memorandum Summarizing Meeting with Representatives of the School Bus and Transit Bus Sectors of the Passenger Carrier Industry (December 4, 2025) | Supporting & Related Material | Supplement | 2026-02-26T05:00:00Z | 2026 | 2 | 2026-02-26T23:27:22Z | 0 | 0 | 09000064b91dfec0 | |||
| FMCSA-2021-0050-0005 | FMCSA | None FMCSA-2021-0050 | Railroad Grade Crossings; Stopping Required: Exception for Railroad Grade Crossing Equipped with Active Warning Device Not in Activated State | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2025-05-30T04:00:00Z | 2025 | 5 | 2025-05-30T04:00:00Z | 2025-07-30T03:59:59Z | 2025-08-13T09:00:18Z | 2025-09716 | 0 | 0 | 09000064b8dcb237 |
| FMCSA-2021-0050-0004 | FMCSA | None FMCSA-2021-0050 | Analysis Railroad Grade Crossing Rules Report 2020-FINAL | Other | Report | 2022-01-26T05:00:00Z | 2022 | 1 | 2022-01-26T05:00:00Z | 2024-11-07T00:36:21Z | 1 | 0 | 0900006484f3b814 | ||
| FMCSA-2021-0050-0001 | FMCSA | None FMCSA-2021-0050 | Railroad Crossing Safety and Trespass Prevention | Other | Exhibit(s) | 2022-01-24T05:00:00Z | 2022 | 1 | 2022-01-24T05:00:00Z | 2022-01-24T21:56:46Z | 0 | 0 | 0900006484f35321 | ||
| FMCSA-2021-0050-0002 | FMCSA | None FMCSA-2021-0050 | Stop. Trains Can't. DOT News Release Dec 2017 | Other | Exhibit(s) | 2022-01-24T05:00:00Z | 2022 | 1 | 2022-01-24T05:00:00Z | 2024-11-12T23:35:31Z | 1 | 0 | 0900006484f35323 | ||
| FMCSA-2021-0050-0003 | FMCSA | None FMCSA-2021-0050 | Analysis of the Railroad-Highway Grade Crossing Rules | Other | Report | 2022-01-24T05:00:00Z | 2022 | 1 | 2022-01-24T05:00:00Z | 2022-01-24T22:02:38Z | 0 | 0 | 0900006484f35327 |
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;