documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FRA-2021-0005" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, 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-0005-0006 | FRA | Red River Valley & Western Railroad Company (RRVW FRA-2021-0005 | FRA-2021-0005 Decision Letter 2025 | Other | Decision | 2025-04-25T04:00:00Z | 2025 | 4 | 2025-04-25T04:00:00Z | 2025-04-25T19:25:57Z | 0 | 0 | 0900006486abba20 | ||
| FRA-2021-0005-0005 | FRA | Red River Valley & Western Railroad Company (RRVW FRA-2021-0005 | FRA-2021-0005 Incoming Revised Special Approval Extension Petition July 2024 | Other | Petition(s) | 2024-08-13T04:00:00Z | 2024 | 8 | 2024-08-13T04:00:00Z | 2024-08-13T13:28:24Z | 0 | 0 | 09000064866299b6 | ||
| FRA-2021-0005-0004 | FRA | Red River Valley & Western Railroad Company (RRVW FRA-2021-0005 | FRA-2021-0005 Incoming Special Approval Extension Petition 2024 | Other | Petition(s) | 2024-06-11T04:00:00Z | 2024 | 6 | 2024-06-11T04:00:00Z | 2024-06-11T17:13:50Z | 0 | 0 | 09000064865ac3b6 | ||
| FRA-2021-0005-0003 | FRA | Red River Valley & Western Railroad Company (RRVW FRA-2021-0005 | FRA-2021-0005 Decision Letter 2021 | Other | Decision | 2021-11-30T05:00:00Z | 2021 | 11 | 2021-11-30T05:00:00Z | 2021-11-30T15:29:08Z | 0 | 0 | 0900006484e8c7cf | ||
| FRA-2021-0005-0002 | FRA | Red River Valley & Western Railroad Company (RRVW FRA-2021-0005 | US DOT/FRA- Acknowledgement Letter | Other | Acknowledgement Letter/Receipt | 2021-01-21T05:00:00Z | 2021 | 1 | 2021-01-21T05:00:00Z | 2021-01-21T14:26:44Z | 0 | 0 | 09000064849fac8e | ||
| FRA-2021-0005-0001 | FRA | Red River Valley & Western Railroad Company (RRVW FRA-2021-0005 | Incoming Special Approval Petition and Attachment - RRVW - Overage cars - 2021 | Other | Action Memo or Letter | 2021-01-13T05:00:00Z | 2021 | 1 | 2021-01-13T05:00:00Z | 2021-01-13T14:44:12Z | 0 | 0 | 09000064849f0f0d |
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;