documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "FRA-2013-0095" 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), comment_end_date (date), last_modified (date)
agency_id 1
- FRA 11
| 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-2013-0095-0012 | FRA | Grenada Railway, LLC - Waiver Petition FRA-2013-0095 | U.S. DOT/FRA-Grenada Decision Letter 2018 | Other | Decision | 2018-02-26T05:00:00Z | 2018 | 2 | 2018-02-26T05:00:00Z | 2018-02-26T19:06:02Z | 0 | 0 | 0900006482f621cd | ||
| FRA-2013-0095-0010 | FRA | Grenada Railway, LLC - Waiver Petition FRA-2013-0095 | Applications: Railroad Signal Systems; Discontinuances or Modifications | Notice | Notice of Intent | 2017-09-18T04:00:00Z | 2017 | 9 | 2017-09-18T04:00:00Z | 2024-11-07T01:11:46Z | 2017-19683 | 1 | 0 | 0900006482b474c5 | |
| FRA-2013-0095-0009 | FRA | Grenada Railway, LLC - Waiver Petition FRA-2013-0095 | Grenada Railroad LLC- Request for an extension | Other | Request | 2017-08-04T04:00:00Z | 2017 | 8 | 2017-08-04T04:00:00Z | 2017-08-04T19:13:02Z | 0 | 0 | 09000064829ad5a3 | ||
| FRA-2013-0095-0008 | FRA | Grenada Railway, LLC - Waiver Petition FRA-2013-0095 | U.S.DOT/FRA - Decision | Other | Decision | 2016-02-09T05:00:00Z | 2016 | 2 | 2016-02-09T05:00:00Z | 2024-11-12T06:01:03Z | 1 | 0 | 0900006481e59d7e | ||
| FRA-2013-0095-0007 | FRA | Grenada Railway, LLC - Waiver Petition FRA-2013-0095 | U.S. DOT/FRA - Acknowledgement Letter/Receipt | Other | Acknowledgement Letter/Receipt | 2015-11-19T05:00:00Z | 2015 | 11 | 2015-11-19T05:00:00Z | 2015-11-19T18:35:47Z | 0 | 0 | 0900006481d55071 | ||
| FRA-2013-0095-0006 | FRA | Grenada Railway, LLC - Waiver Petition FRA-2013-0095 | U.S.DOT/FRA- Waiver Extension Letter | Other | Request | 2015-11-03T05:00:00Z | 2015 | 11 | 2015-11-03T05:00:00Z | 2015-11-03T19:25:49Z | 0 | 0 | 0900006481d0533e | ||
| FRA-2013-0095-0005 | FRA | Grenada Railway, LLC - Waiver Petition FRA-2013-0095 | U.S.DOT/FRA - Waiver Expiration Letter | Other | Letter(s) | 2015-10-06T04:00:00Z | 2015 | 10 | 2015-10-06T04:00:00Z | 2015-10-06T17:36:20Z | 0 | 0 | 0900006481caf313 | ||
| FRA-2013-0095-0004 | FRA | Grenada Railway, LLC - Waiver Petition FRA-2013-0095 | U.S. DOT/FRA - Decision Letter - (Grenada Railway - BSAP) | Other | Decision | 2014-01-28T05:00:00Z | 2014 | 1 | 2014-01-28T05:00:00Z | 2024-11-07T23:03:09Z | 1 | 0 | 090000648152e9df | ||
| FRA-2013-0095-0003 | FRA | Grenada Railway, LLC - Waiver Petition FRA-2013-0095 | Applications for Approvals of Discontinuances or Modifications of Railroad Signal Systems | Notice | Notice of Change | 2013-09-27T04:00:00Z | 2013 | 9 | 2013-09-27T04:00:00Z | 2013-11-13T04:59:59Z | 2013-09-27T14:12:47Z | 2013-23573 | 0 | 0 | 090000648143d7f2 |
| FRA-2013-0095-0002 | FRA | Grenada Railway, LLC - Waiver Petition FRA-2013-0095 | U.S. DOT/FRA - Acknowledgement Letter | Other | Acknowledgement Letter/Receipt | 2013-08-27T04:00:00Z | 2013 | 8 | 2013-08-27T04:00:00Z | 2024-11-07T22:56:42Z | 1 | 0 | 09000064813c7ced | ||
| FRA-2013-0095-0001 | FRA | Grenada Railway, LLC - Waiver Petition FRA-2013-0095 | U.S. DOT/FRA - Grenada Railway, LLC Incoming Waiver Request | Other | Waiver | 2013-08-27T04:00:00Z | 2013 | 8 | 2013-08-27T04:00:00Z | 2024-11-07T22:56:41Z | 1 | 0 | 09000064813c7b11 |
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;