documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FRA-2016-0058" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, open_for_comment, posted_date (date), comment_start_date (date), comment_end_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-2016-0058-0009 | FRA | Watco Companies LLC - Owner/Operator Grand Elk Railroad - Application FRA-2016-0058 | U.S.DOT/FRA-Watco Decision Letter 2018 | Other | Decision | 2018-03-08T05:00:00Z | 2018 | 3 | 2018-03-08T05:00:00Z | 2018-03-08T16:52:53Z | 0 | 0 | 0900006482fa930b | ||
| FRA-2016-0058-0007 | FRA | Watco Companies LLC - Owner/Operator Grand Elk Railroad - Application FRA-2016-0058 | Railroad Signal Systems: Discontinuances or Modifications; Applications for Approvals | Notice | Notice of Intent | 2017-07-27T04:00:00Z | 2017 | 7 | 2017-07-27T04:00:00Z | 2017-09-12T03:59:59Z | 2024-11-07T01:03:38Z | 2017-15789 | 1 | 0 | 09000064829768bc |
| FRA-2016-0058-0006 | FRA | Watco Companies LLC - Owner/Operator Grand Elk Railroad - Application FRA-2016-0058 | U.S. DOT/FRA- Acknowledgement Letter | Other | Acknowledgement Letter/Receipt | 2017-07-26T04:00:00Z | 2017 | 7 | 2017-07-26T04:00:00Z | 2017-07-26T18:40:09Z | 0 | 0 | 090000648296d4e7 | ||
| FRA-2016-0058-0005 | FRA | Watco Companies LLC - Owner/Operator Grand Elk Railroad - Application FRA-2016-0058 | Watco Companies LLC- Petition for Reconsideration | Other | Petition for Reconsideration | 2017-07-14T04:00:00Z | 2017 | 7 | 2017-07-14T04:00:00Z | 2017-07-14T16:54:30Z | 0 | 0 | 090000648291a309 | ||
| FRA-2016-0058-0004 | FRA | Watco Companies LLC - Owner/Operator Grand Elk Railroad - Application FRA-2016-0058 | U.S. DOT/FRA - Letter of Clarification | Other | Clarification | 2017-01-10T05:00:00Z | 2017 | 1 | 2017-01-10T05:00:00Z | 2024-11-07T23:52:51Z | 1 | 0 | 09000064824588c2 | ||
| FRA-2016-0058-0003 | FRA | Watco Companies LLC - Owner/Operator Grand Elk Railroad - Application FRA-2016-0058 | U.S.DOT/FRA - Decision | Other | Decision | 2016-11-29T05:00:00Z | 2016 | 11 | 2016-11-29T05:00:00Z | 2024-11-12T06:17:17Z | 1 | 0 | 09000064823c8960 | ||
| FRA-2016-0058-0002 | FRA | Watco Companies LLC - Owner/Operator Grand Elk Railroad - Application FRA-2016-0058 | Applications for Approval of Discontinuance or Modification of a Railroad Signal System | Notice | Notice of Intent | 2016-06-17T04:00:00Z | 2016 | 6 | 2016-06-17T04:00:00Z | 2016-08-02T03:59:59Z | 2024-11-11T21:28:25Z | 2016-14325 | 1 | 0 | 090000648204b0c4 |
| FRA-2016-0058-0001 | FRA | Watco Companies LLC - Owner/Operator Grand Elk Railroad - Application FRA-2016-0058 | Watco Companies LLC- Waiver | Other | Waiver | 2016-06-07T04:00:00Z | 2016 | 6 | 2016-06-07T04:00:00Z | 2024-11-11T21:27:47Z | 1 | 0 | 0900006482014dec |
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;