documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FRA-2017-0082" 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), 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-2017-0082-0009 | FRA | Regional Transportation District FRA-2017-0082 | U.S. DOT/FRA- Withdrawal Confirmation Letter 2020 | Other | Withdrawal | 2020-06-30T04:00:00Z | 2020 | 6 | 2020-06-30T04:00:00Z | 2020-06-30T15:43:07Z | 0 | 0 | 090000648471662d | ||
| FRA-2017-0082-0008 | FRA | Regional Transportation District FRA-2017-0082 | U.S. DOT/FRA- Waiver Withdrawal Document | Other | Withdrawal | 2020-01-29T05:00:00Z | 2020 | 1 | 2020-01-29T05:00:00Z | 2020-01-29T15:03:09Z | 0 | 0 | 09000064842f7ad8 | ||
| FRA-2017-0082-0007 | FRA | Regional Transportation District FRA-2017-0082 | U.S. DOT/FRA - Waiver Acknowledgement Letter 2019 | Other | Acknowledgement Letter/Receipt | 2019-08-26T04:00:00Z | 2019 | 8 | 2019-08-26T04:00:00Z | 2019-08-26T17:37:55Z | 0 | 0 | 0900006483ea4bfd | ||
| FRA-2017-0082-0006 | FRA | Regional Transportation District FRA-2017-0082 | Application: Approval of Discontinuance or Modification of a Railroad Signal System | Notice | Notice of Intent | 2019-08-01T04:00:00Z | 2019 | 8 | 2019-08-01T04:00:00Z | 2024-11-12T23:04:45Z | 2019-16377 | 1 | 0 | 0900006483dddad1 | |
| FRA-2017-0082-0005 | FRA | Regional Transportation District FRA-2017-0082 | Incoming Request 2019 and Attachments | Other | Request | 2019-07-25T04:00:00Z | 2019 | 7 | 2019-07-25T04:00:00Z | 2019-07-25T15:31:38Z | 0 | 0 | 0900006483dacd98 | ||
| FRA-2017-0082-0004 | FRA | Regional Transportation District FRA-2017-0082 | U.S. DOT/FRA- RTDC Decision Letter 2018 | Other | Decision | 2018-02-08T05:00:00Z | 2018 | 2 | 2018-02-08T05:00:00Z | 2018-02-08T16:23:46Z | 0 | 0 | 0900006482ef8514 | ||
| FRA-2017-0082-0003 | FRA | Regional Transportation District FRA-2017-0082 | U.S. DOT/FRA- Waiver Acknowledgement Letter | Other | Acknowledgement Letter/Receipt | 2017-09-29T04:00:00Z | 2017 | 9 | 2017-09-29T04:00:00Z | 2017-09-29T15:20:08Z | 0 | 0 | 0900006482b76a80 | ||
| FRA-2017-0082-0002 | FRA | Regional Transportation District FRA-2017-0082 | Applications: Approval to Discontinue or Modify a Railroad Signal System | Notice | Notice of Intent | 2017-09-18T04:00:00Z | 2017 | 9 | 2017-09-18T04:00:00Z | 2024-11-07T01:11:48Z | 2017-19685 | 1 | 0 | 0900006482b47640 | |
| FRA-2017-0082-0001 | FRA | Regional Transportation District FRA-2017-0082 | Incoming Waiver Request with Amendment - Regional Transportation District (RTD) | Other | Waiver | 2017-08-28T04:00:00Z | 2017 | 8 | 2017-08-28T04:00:00Z | 2024-11-07T01:09:02Z | 1 | 0 | 0900006482adeead |
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;