documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "FRA-2016-0028" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, 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-2016-0028-0053 | FRA | Regional Transportation District FRA-2016-0028 | November 2018 RTD-DTP Letter | Other | Action Memo or Letter | 2018-11-30T05:00:00Z | 2018 | 11 | 2018-11-30T05:00:00Z | 2018-11-30T14:51:00Z | 0 | 0 | 0900006483907ec8 | ||
| FRA-2016-0028-0052 | FRA | Regional Transportation District FRA-2016-0028 | USDOT/FRA- Response to Regional Transportation District | Other | Response(s) | 2018-11-26T05:00:00Z | 2018 | 11 | 2018-11-26T05:00:00Z | 2018-11-26T14:14:05Z | 0 | 0 | 09000064838e0649 | ||
| FRA-2016-0028-0051 | FRA | Regional Transportation District FRA-2016-0028 | Denver Transit Partners - Legal Memorandum Attachments A-O | Other | Memorandum | 2018-11-09T05:00:00Z | 2018 | 11 | 2018-11-09T05:00:00Z | 2018-11-09T14:34:31Z | 0 | 0 | 09000064838b19f6 | ||
| FRA-2016-0028-0050 | FRA | Regional Transportation District FRA-2016-0028 | Response to Inspection Report D. Mullins No. 125 | Other | Response(s) | 2018-11-09T05:00:00Z | 2018 | 11 | 2018-11-09T05:00:00Z | 2018-11-09T14:30:46Z | 0 | 0 | 09000064838ae7a9 | ||
| FRA-2016-0028-0048 | FRA | Regional Transportation District FRA-2016-0028 | Petitions for Waivers of Compliance | Notice | Waivers | 2018-09-04T04:00:00Z | 2018 | 9 | 2018-09-04T04:00:00Z | 2024-11-07T01:37:19Z | 2018-19104 | 1 | 0 | 0900006483694b78 | |
| FRA-2016-0028-0045 | FRA | Regional Transportation District FRA-2016-0028 | FRA Crossing Attendant Removal A-Line 7.17.18, and Attachments | Other | Additional Information | 2018-08-10T04:00:00Z | 2018 | 8 | 2018-08-10T04:00:00Z | 2018-08-10T15:00:36Z | 0 | 0 | 09000064835f916c | ||
| FRA-2016-0028-0047 | FRA | Regional Transportation District FRA-2016-0028 | U.S. DOT/FRA-Waiver Acknowledgement Letter August 2018 | Other | Acknowledgement Letter/Receipt | 2018-08-10T04:00:00Z | 2018 | 8 | 2018-08-10T04:00:00Z | 2018-08-10T15:05:18Z | 0 | 0 | 09000064835fb0e9 | ||
| FRA-2016-0028-0046 | FRA | Regional Transportation District FRA-2016-0028 | Denver RTD Quiet Zone Request and Attachments | Other | 2018-08-10T00:00:00Z | 2018 | 8 | 2018-12-04T16:11:50Z | 0 | 1 | 09000064835f923a | ||||
| FRA-2016-0028-0044 | FRA | Regional Transportation District FRA-2016-0028 | U.S. DOT/Attachment Universtity of Colorado A-Line - Crossing Attendant Removal Plan Final | Other | Additional Information | 2018-06-28T04:00:00Z | 2018 | 6 | 2018-06-28T04:00:00Z | 2018-06-28T15:30:47Z | 0 | 0 | 0900006483460017 | ||
| FRA-2016-0028-0043 | FRA | Regional Transportation District FRA-2016-0028 | U.S. DOT/FRA- Partial Crossing Attendant Removal Letter and attachments | Other | Action Memo or Letter | 2018-06-25T04:00:00Z | 2018 | 6 | 2018-06-25T04:00:00Z | 2018-06-25T16:29:30Z | 0 | 0 | 0900006483442ac2 | ||
| FRA-2016-0028-0042 | FRA | Regional Transportation District FRA-2016-0028 | U.S. DOT/FRA-Clarification Letter (2018) | Other | Letter(s) | 2018-04-03T04:00:00Z | 2018 | 4 | 2018-04-03T04:00:00Z | 2018-04-03T20:12:56Z | 0 | 0 | 09000064830902c9 |
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;