documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FRA-2022-0020" and posted_year = 2024 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, last_modified, open_for_comment, posted_date (date), comment_start_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-0020-0046 | FRA | Signal Employee Certification FRA-2022-0020 | FRA Acknowledgment Letter - APTA Petition for Reconsideration - 09.30.24 | Other | Acknowledgement Letter/Receipt | 2024-10-11T04:00:00Z | 2024 | 10 | 2024-10-11T04:00:00Z | 2024-10-11T16:31:40Z | 0 | 0 | 09000064867c5434 | ||
| FRA-2022-0020-0045 | FRA | Signal Employee Certification FRA-2022-0020 | FRA-2022-0020 FRA Acknowledgment Letter - ASLRRA Petition for Reconsideration of Signal Employee Certification final rule - 08.0 | Other | Acknowledgement Letter/Receipt | 2024-10-07T04:00:00Z | 2024 | 10 | 2024-10-07T04:00:00Z | 2024-10-07T18:20:11Z | 0 | 0 | 09000064867b6468 | ||
| FRA-2022-0020-0043 | FRA | Signal Employee Certification FRA-2022-0020 | U.S. DOT/FRA - Acknowledgment Letter – Commuter Rail Coalition Petition for Reconsideration | Other | Acknowledgement Letter/Receipt | 2024-10-01T04:00:00Z | 2024 | 10 | 2024-10-01T04:00:00Z | 2024-11-12T22:47:18Z | 1 | 0 | 09000064867a2db3 | ||
| FRA-2022-0020-0044 | FRA | Signal Employee Certification FRA-2022-0020 | U.S. DOT/FRA - Acknowledgment Letter – AAR Petition for Reconsideration | Other | Petition for Reconsideration | 2024-10-01T04:00:00Z | 2024 | 10 | 2024-10-01T04:00:00Z | 2024-11-12T22:47:18Z | 1 | 0 | 09000064867a2db6 | ||
| FRA-2022-0020-0042 | FRA | Signal Employee Certification FRA-2022-0020 | ASLRRA Petition for Reconsideration | Other | Petition for Reconsideration | 2024-09-16T04:00:00Z | 2024 | 9 | 2024-09-16T04:00:00Z | 2024-09-16T11:51:36Z | 0 | 0 | 0900006486722160 | ||
| FRA-2022-0020-0041 | FRA | Signal Employee Certification FRA-2022-0020 | APTA Petition for Reconsideration | Other | Petition for Reconsideration | 2024-09-16T04:00:00Z | 2024 | 9 | 2024-09-16T04:00:00Z | 2024-09-16T11:49:42Z | 0 | 0 | 09000064867000df | ||
| FRA-2022-0020-0040 | FRA | Signal Employee Certification FRA-2022-0020 | Association of American Railroads -Petition for Reconsideration | Other | Petition for Reconsideration | 2024-08-02T04:00:00Z | 2024 | 8 | 2024-08-02T04:00:00Z | 2024-08-02T18:54:21Z | 0 | 0 | 09000064865fbc4d | ||
| FRA-2022-0020-0039 | FRA | Signal Employee Certification FRA-2022-0020 | Commuter Railroad Coalition-Petition for Reconsideration 4 | Other | Petition for Reconsideration | 2024-08-02T04:00:00Z | 2024 | 8 | 2024-08-02T04:00:00Z | 2024-08-02T18:55:39Z | 0 | 0 | 09000064865ed0d9 | ||
| FRA-2022-0020-0038 | FRA | Signal Employee Certification FRA-2022-0020 | Certification of Signal Employees | Rule | Final Rule | 2024-05-21T04:00:00Z | 2024 | 5 | 2024-05-21T04:00:00Z | 2024-05-21T13:09:35Z | 2024-09958 | 0 | 0 | 0900006486575b83 | |
| FRA-2022-0020-0037 | FRA | Signal Employee Certification FRA-2022-0020 | Regulatory Impact Analysis - Signal Employee Certification Final Rule | Supporting & Related Material | Impact Analysis Report | 2024-05-20T04:00:00Z | 2024 | 5 | 2024-05-20T18:20:05Z | 0 | 0 | 09000064865736c6 |
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;