documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FRA-2020-0008" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, open_for_comment, 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-2020-0008-0013 | FRA | CSX Incoming Waiver Petition FRA-2020-0008 | FRA-2020-0008 Decision Letter 2026 | Other | Decision | 2026-01-09T05:00:00Z | 2026 | 1 | 2026-01-09T05:00:00Z | 2026-01-09T20:33:17Z | 0 | 0 | 09000064b912044d | ||
| FRA-2020-0008-0009 | FRA | CSX Incoming Waiver Petition FRA-2020-0008 | Petition for Extension of Waiver of Compliance | Notice | Request for Comments | 2025-06-05T04:00:00Z | 2025 | 6 | 2025-06-05T04:00:00Z | 2025-07-08T03:59:59Z | 2025-07-08T09:00:22Z | 2025-10206 | 0 | 0 | 09000064b8dd9826 |
| FRA-2020-0008-0008 | FRA | CSX Incoming Waiver Petition FRA-2020-0008 | FRA-2020-0008 Enforcement Discretion Letter April 2025 | Other | Letter(s) | 2025-04-21T04:00:00Z | 2025 | 4 | 2025-04-21T04:00:00Z | 2025-04-21T13:07:51Z | 0 | 0 | 0900006486aa429b | ||
| FRA-2020-0008-0007 | FRA | CSX Incoming Waiver Petition FRA-2020-0008 | FRA-2020-0008 Incoming Waiver Extension Petition 2025 | Other | Petition(s) | 2025-04-10T04:00:00Z | 2025 | 4 | 2025-04-10T04:00:00Z | 2025-04-10T17:25:16Z | 0 | 0 | 0900006486a84cdb | ||
| FRA-2020-0008-0006 | FRA | CSX Incoming Waiver Petition FRA-2020-0008 | U.S. DOT/FRA-Decision Letter 2020 | Other | Decision | 2020-04-24T04:00:00Z | 2020 | 4 | 2020-04-24T04:00:00Z | 2020-04-24T19:56:09Z | 0 | 0 | 09000064844c3262 | ||
| FRA-2020-0008-0005 | FRA | CSX Incoming Waiver Petition FRA-2020-0008 | U.S. DOT/FRA-Incoming Waiver Acknowledgement Letter | Other | Acknowledgement Letter/Receipt | 2020-04-21T04:00:00Z | 2020 | 4 | 2020-04-21T04:00:00Z | 2020-04-21T14:42:53Z | 0 | 0 | 09000064844b94bf | ||
| FRA-2020-0008-0002 | FRA | CSX Incoming Waiver Petition FRA-2020-0008 | Petition for Waiver of Compliance | Notice | Waivers | 2020-01-30T05:00:00Z | 2020 | 1 | 2020-01-30T05:00:00Z | 2024-11-12T23:16:32Z | 2020-01671 | 1 | 0 | 090000648430a2a4 | |
| FRA-2020-0008-0001 | FRA | CSX Incoming Waiver Petition FRA-2020-0008 | CSX Incoming Waiver Petition | Other | Waiver | 2020-01-22T05:00:00Z | 2020 | 1 | 2020-01-22T05:00:00Z | 2020-01-22T17:19:35Z | 0 | 0 | 09000064842a1c0e |
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;