documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "FRA-2014-0047" 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), 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-2014-0047-0011 | FRA | Chesapeake Railway Association - Waiver Petition FRA-2014-0047 | FRA-2014-0047 Incoming Extension Petition 2025 | Other | Petition(s) | 2025-11-21T05:00:00Z | 2025 | 11 | 2025-11-21T05:00:00Z | 2025-11-21T21:49:45Z | 0 | 0 | 09000064b908ddb4 | ||
| FRA-2014-0047-0010 | FRA | Chesapeake Railway Association - Waiver Petition FRA-2014-0047 | Modification Decision Letter 2021 | Other | Action Memo or Letter | 2021-02-11T05:00:00Z | 2021 | 2 | 2021-02-11T05:00:00Z | 2021-02-11T21:31:00Z | 0 | 0 | 0900006484a2ca1c | ||
| FRA-2014-0047-0009 | FRA | Chesapeake Railway Association - Waiver Petition FRA-2014-0047 | U.S. DOT- Waiver Modification Acknowledgement Letter 2020 | Other | Acknowledgement Letter/Receipt | 2020-11-18T05:00:00Z | 2020 | 11 | 2020-11-18T05:00:00Z | 2020-11-18T16:37:26Z | 0 | 0 | 09000064849649c4 | ||
| FRA-2014-0047-0008 | FRA | Chesapeake Railway Association - Waiver Petition FRA-2014-0047 | Incoming Special Approval Modification - CHRX 923 - Nov 2020 | Other | Action Memo or Letter | 2020-11-18T05:00:00Z | 2020 | 11 | 2020-11-18T05:00:00Z | 2020-11-18T16:35:35Z | 0 | 0 | 09000064849649c2 | ||
| FRA-2014-0047-0007 | FRA | Chesapeake Railway Association - Waiver Petition FRA-2014-0047 | U.S. DOT/FRA-Decision Letter | Other | Decision | 2020-03-04T05:00:00Z | 2020 | 3 | 2020-03-04T05:00:00Z | 2020-03-04T14:29:22Z | 0 | 0 | 09000064843e12e5 | ||
| FRA-2014-0047-0005 | FRA | Chesapeake Railway Association - Waiver Petition FRA-2014-0047 | Incoming Waiver | Other | Waiver | 2019-09-26T04:00:00Z | 2019 | 9 | 2019-09-26T04:00:00Z | 2019-09-26T19:21:05Z | 0 | 0 | 0900006483fc2c61 | ||
| FRA-2014-0047-0006 | FRA | Chesapeake Railway Association - Waiver Petition FRA-2014-0047 | U.S. DOT/FRA- Waiver Acknowledgement Letter | Other | Acknowledgement Letter/Receipt | 2019-09-26T04:00:00Z | 2019 | 9 | 2019-09-26T04:00:00Z | 2019-09-26T19:24:10Z | 0 | 0 | 0900006483fcdaee | ||
| FRA-2014-0047-0004 | FRA | Chesapeake Railway Association - Waiver Petition FRA-2014-0047 | U.S. DOT/FRA-Expiration Notice 2019 | Other | Action Memo or Letter | 2019-04-02T04:00:00Z | 2019 | 4 | 2019-04-02T04:00:00Z | 2019-04-02T18:47:56Z | 0 | 0 | 0900006483b59fbd | ||
| FRA-2014-0047-0003 | FRA | Chesapeake Railway Association - Waiver Petition FRA-2014-0047 | U.S. DOT/FRA - Decision Letter - (Chesapeake Railway Association - Restricted Cars) | Other | Decision | 2014-10-08T04:00:00Z | 2014 | 10 | 2014-10-08T04:00:00Z | 2024-11-07T23:11:41Z | 1 | 0 | 09000064818b377a | ||
| FRA-2014-0047-0002 | FRA | Chesapeake Railway Association - Waiver Petition FRA-2014-0047 | U.S. DOT/FRA - Acknowledgement Letter | Other | Acknowledgement Letter/Receipt | 2014-05-29T04:00:00Z | 2014 | 5 | 2014-05-29T04:00:00Z | 2024-11-11T20:52:58Z | 1 | 0 | 090000648171573f | ||
| FRA-2014-0047-0001 | FRA | Chesapeake Railway Association - Waiver Petition FRA-2014-0047 | Chesapeake Railway Association - Waiver Request | Other | Waiver | 2014-05-20T04:00:00Z | 2014 | 5 | 2014-05-20T04:00:00Z | 2024-11-12T05:26:52Z | 1 | 0 | 0900006481703ff0 |
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;