documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FRA-2015-0107" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, open_for_comment, 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-2015-0107-0007 | FRA | Maine Northern Railway (MNR), Eastern Maine Railway (EMR) and New Brunswick Southern Railway (NBSR) - Waiver Petition FRA-2015-0107 | US DOT/FRA- Decision Letter | Other | 2021-02-02T00:00:00Z | 2021 | 2 | 2021-11-12T12:04:56Z | 0 | 1 | 0900006484a12909 | ||||
| FRA-2015-0107-0006 | FRA | Maine Northern Railway (MNR), Eastern Maine Railway (EMR) and New Brunswick Southern Railway (NBSR) - Waiver Petition FRA-2015-0107 | US DOT/FRA Decision Letter 2021 | Other | Decision | 2021-02-01T05:00:00Z | 2021 | 2 | 2021-02-01T05:00:00Z | 2021-02-01T18:41:01Z | 0 | 0 | 0900006484a12471 | ||
| FRA-2015-0107-0005 | FRA | Maine Northern Railway (MNR), Eastern Maine Railway (EMR) and New Brunswick Southern Railway (NBSR) - Waiver Petition FRA-2015-0107 | U.S. DOT/FRA- Special Approval Acknowledgement Letter 2020 | Other | Acknowledgement Letter/Receipt | 2020-11-10T05:00:00Z | 2020 | 11 | 2020-11-10T05:00:00Z | 2020-11-10T18:48:42Z | 0 | 0 | 090000648494980a | ||
| FRA-2015-0107-0004 | FRA | Maine Northern Railway (MNR), Eastern Maine Railway (EMR) and New Brunswick Southern Railway (NBSR) - Waiver Petition FRA-2015-0107 | Incoming Special Approval Renewal Petition and Enclosure 2020 | Other | Petition(s) | 2020-11-03T05:00:00Z | 2020 | 11 | 2020-11-03T05:00:00Z | 2020-11-03T23:17:29Z | 0 | 0 | 090000648494746b | ||
| FRA-2015-0107-0003 | FRA | Maine Northern Railway (MNR), Eastern Maine Railway (EMR) and New Brunswick Southern Railway (NBSR) - Waiver Petition FRA-2015-0107 | U.S.DOT/FRA - Waiver Acknowledgement Letter | Other | Acknowledgement Letter/Receipt | 2016-01-19T05:00:00Z | 2016 | 1 | 2016-01-19T05:00:00Z | 2024-11-11T21:22:27Z | 1 | 0 | 0900006481e08ce0 | ||
| FRA-2015-0107-0002 | FRA | Maine Northern Railway (MNR), Eastern Maine Railway (EMR) and New Brunswick Southern Railway (NBSR) - Waiver Petition FRA-2015-0107 | Maine Northern Railway, Eastern Maine Railway, and New Brunswick Southern Railway - Petition | Other | Petition(s) | 2015-12-18T05:00:00Z | 2015 | 12 | 2015-12-18T05:00:00Z | 2015-12-18T20:56:14Z | 0 | 0 | 0900006481dbafc8 | ||
| FRA-2015-0107-0001 | FRA | Maine Northern Railway (MNR), Eastern Maine Railway (EMR) and New Brunswick Southern Railway (NBSR) - Waiver Petition FRA-2015-0107 | U.S. DOT/FRA - Decision | Other | Decision | 2015-12-14T05:00:00Z | 2015 | 12 | 2015-12-14T05:00:00Z | 2024-11-11T21:11:54Z | 1 | 0 | 0900006481da23c0 |
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;