documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FRA-2022-0019" and posted_year = 2023 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_month, open_for_comment, withdrawn, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FRA-2022-0019-0031 | FRA | Dispatcher Certification FRA-2022-0019 | U.S. DOT/FRA – Clarification and Record of Public Contact for August 29, 2023 phone call from the AAR | Other | Letter(s) | 2023-09-06T04:00:00Z | 2023 | 9 | 2023-09-06T04:00:00Z | 2023-09-06T18:00:29Z | 0 | 0 | 0900006485f4c10f | ||
| FRA-2022-0019-0030 | FRA | Dispatcher Certification FRA-2022-0019 | Certification of Dispatchers | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2023-08-22T04:00:00Z | 2023 | 8 | 2023-08-22T04:00:00Z | 2023-09-15T03:59:59Z | 2024-11-11T21:31:10Z | 2023-18033 | 1 | 0 | 0900006485ed526c |
| FRA-2022-0019-0027 | FRA | Dispatcher Certification FRA-2022-0019 | American Short Line and Regional Railroad Association- Request to extend comment period | Other | Request for Extension of Time in which to file a document | 2023-08-07T04:00:00Z | 2023 | 8 | 2023-08-07T04:00:00Z | 2023-08-07T13:08:16Z | 0 | 0 | 0900006485dd7154 | ||
| FRA-2022-0019-0022 | FRA | Dispatcher Certification FRA-2022-0019 | Dispatcher Certification Supplemental Memo to RIA | Supporting & Related Material | Preliminary Regulatory Impact Anaysis (PRIA) | 2023-07-24T04:00:00Z | 2023 | 7 | 2023-07-24T13:10:37Z | 0 | 0 | 0900006485cfc74c | |||
| FRA-2022-0019-0019 | FRA | Dispatcher Certification FRA-2022-0019 | Certification of Dispatchers | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2023-07-05T04:00:00Z | 2023 | 7 | 2023-07-05T04:00:00Z | 2023-08-31T03:59:59Z | 2024-11-11T21:23:45Z | 2023-14178 | 1 | 0 | 0900006485c4f43e |
| FRA-2022-0019-0017 | FRA | Dispatcher Certification FRA-2022-0019 | American Short Line and Regional Railroad Association request to extend the comment period | Other | Request for Extension | 2023-06-20T04:00:00Z | 2023 | 6 | 2023-06-20T04:00:00Z | 2023-06-20T15:40:07Z | 0 | 0 | 0900006485b3cd38 | ||
| FRA-2022-0019-0005 | FRA | Dispatcher Certification FRA-2022-0019 | Certification of Dispatchers | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2023-05-31T04:00:00Z | 2023 | 5 | 2023-05-31T04:00:00Z | 2023-08-01T03:59:59Z | 2024-11-06T23:36:37Z | 2023-10772 | 1 | 0 | 0900006485a9510b |
| FRA-2022-0019-0003 | FRA | Dispatcher Certification FRA-2022-0019 | U.S. DOT/FRA - Regulatory Impact Analysis for the Certification of Dispatchers NPRM | Supporting & Related Material | Impact Analysis Report | 2023-05-30T04:00:00Z | 2023 | 5 | 2023-05-30T17:51:26Z | 0 | 0 | 0900006485a88991 | |||
| FRA-2022-0019-0004 | FRA | Dispatcher Certification FRA-2022-0019 | U.S. DOT/FRA - Regulatory Impact Analysis for the Certification of Signal Employees NPRM | Supporting & Related Material | 2023-05-30T00:00:00Z | 2023 | 5 | 2023-05-30T18:03:28Z | 0 | 1 | 0900006485a89011 | ||||
| FRA-2022-0019-0002 | FRA | Dispatcher Certification FRA-2022-0019 | Record of Public Contact for FRA’s March 7, 2022 meeting with the AAR and ASLRRA | Other | Minutes | 2023-05-09T04:00:00Z | 2023 | 5 | 2023-05-09T04:00:00Z | 2023-05-09T14:49:19Z | 0 | 0 | 09000064859e134a |
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;