documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FRA-2021-0025" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_month, withdrawn, 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-2021-0025-0010 | FRA | Montana Rail Link (MRL) FRA-2021-0025 | FRA-2021-0025 Incoming Extension Petition 2025 | Other | Petition(s) | 2025-11-21T05:00:00Z | 2025 | 11 | 2025-11-21T05:00:00Z | 2025-11-21T22:07:01Z | 0 | 0 | 09000064b908ddaf | ||
| FRA-2021-0025-0009 | FRA | Montana Rail Link (MRL) FRA-2021-0025 | FRA-2021-0025 Decision Letter 2022 | Other | Decision | 2022-05-20T04:00:00Z | 2022 | 5 | 2022-05-20T04:00:00Z | 2022-05-20T16:08:35Z | 0 | 0 | 090000648509f34c | ||
| FRA-2021-0025-0007 | FRA | Montana Rail Link (MRL) FRA-2021-0025 | FRA-2021-0025 Letter of Enforcement Discretion Feb 2022 | Other | Letter(s) | 2022-02-08T05:00:00Z | 2022 | 2 | 2022-02-08T05:00:00Z | 2022-02-08T16:09:35Z | 0 | 0 | 0900006484f5f385 | ||
| FRA-2021-0025-0008 | FRA | Montana Rail Link (MRL) FRA-2021-0025 | ... | Other | 2022-02-08T00:00:00Z | 2022 | 2 | 2022-02-08T16:13:02Z | 0 | 1 | 0900006484f5f479 | ||||
| FRA-2021-0025-0006 | FRA | Montana Rail Link (MRL) FRA-2021-0025 | ... | Other | 2021-09-30T00:00:00Z | 2021 | 9 | 2022-03-30T17:51:39Z | 0 | 1 | 0900006484db2842 | ||||
| FRA-2021-0025-0005 | FRA | Montana Rail Link (MRL) FRA-2021-0025 | FRA-2021-0025 Incoming Special Approval Addendum Addition Request Sept 2021 | Other | Request | 2021-09-21T04:00:00Z | 2021 | 9 | 2021-09-21T04:00:00Z | 2021-09-30T14:10:33Z | 0 | 0 | 0900006484d9a55b | ||
| FRA-2021-0025-0004 | FRA | Montana Rail Link (MRL) FRA-2021-0025 | FRA-2021-0025 SA Addendum Request and Ack Aug 2021 | Other | Acknowledgement Letter/Receipt | 2021-09-09T04:00:00Z | 2021 | 9 | 2021-09-09T04:00:00Z | 2022-04-11T14:01:36Z | 0 | 0 | 0900006484d687ef | ||
| FRA-2021-0025-0003 | FRA | Montana Rail Link (MRL) FRA-2021-0025 | FRA-2021-0025 Special Approval Ack. Letter 2021 | Other | Acknowledgement Letter/Receipt | 2021-08-31T04:00:00Z | 2021 | 8 | 2021-08-31T04:00:00Z | 2021-08-31T18:09:04Z | 0 | 0 | 0900006484cc3831 | ||
| FRA-2021-0025-0002 | FRA | Montana Rail Link (MRL) FRA-2021-0025 | FRA-2021-0025 Decision Letter 2021 | Other | Decision | 2021-05-11T04:00:00Z | 2021 | 5 | 2021-05-11T04:00:00Z | 2021-05-11T13:28:47Z | 0 | 0 | 0900006484ae9030 | ||
| FRA-2021-0025-0001 | FRA | Montana Rail Link (MRL) FRA-2021-0025 | Incoming Special Approval Petition - MRL - Overage Woodchip Cars - 2021 | Other | Petition(s) | 2021-02-08T05:00:00Z | 2021 | 2 | 2021-02-18T05:00:00Z | 2021-02-18T13:09:46Z | 0 | 0 | 0900006484a2177c |
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;